Monday, July 28, 2014

Complete Oracle P2P cycle

Lets do a complete P2P Cycle Step 1) Create Item Step 2) Create Requisition and Approve it Step 3) Auto Create RFQ Step 4) Create Quotation Step 5) Auto Create PO and Approve it Step 6) Receipt Step...

Tuesday, July 22, 2014

SQL Query to find out Parameters and Value Sets associated with a Concurrent Program

SELECT fcpl.user_concurrent_program_name "Concurrent Program Name", fcp.concurrent_program_name "Short Name", fdfcuv.column_seq_num "Column Seq Number", fdfcuv.end_user_column_name "Parameter Name", fdfcuv.form_left_prompt...

Monday, July 21, 2014

How to make a Oracle form 'Query Only'

There are many ways in which we can make a form Query only. We are going to discuss two 1) Using parameter QUERY_ONLY=YES 2) using Form Personalization Method 1: Using parameter QUERY_ONLY=YES Lets...

Important WF tables

WF_USER_ROLE_ASSIGNMENTS stores information about the direct and inherited assignments of users to roles in Oracle . WF_USER_ROLES stores associations of users with the roles of which they are members. WF_ROLES...

Friday, July 18, 2014

R12 SQL Query to differentiate Customer and Suppliers Data

select * from ( select hp.party_number,hp.party_name,hp.status,decode(nvl(hpu.party_usage_code,hp.party_type),'ORGANIZATION','CUSTOMER',nvl(hpu.party_usage_code,hp.party_type)) party_type  from...

Important HRMS Tables

per_all_people_f  This table is used to store employee related data. per_all_assignments_f This table store employee assignment related information and connected to per_all_people_f...

Tuesday, July 15, 2014

Responsibilites and their associated Menus

SELECT DISTINCT frt.responsibility_name, fmt.user_menu_name  FROM apps.fnd_responsibility_tl frt,       apps.fnd_responsibility fr,      ...

Request Group assigned to Responsibilty

SELECT    responsibility_name responsibility,request_group_name,frg.description FROM       fnd_request_groups frg, fnd_responsibility_vl frv WHERE    ...

Responsibility Assigned to Users

SELECT  DISTINCT             u.user_id ,SUBSTR (u.user_name, 1, 30)  user_name           ...

List of Responsibilities in an Instance

SELECT (SELECT application_short_name FROM   fnd_application fa WHERE fa.application_id = frt.application_id) application,           frt.responsibility_id, frt.responsibility_name FROM...

Monday, July 14, 2014

How to determine Oracle Database And OS version

You can use following two queries to find out the Apps/Database/OS version select * from v$version; select * from product_component_version; Thanks Mande...

Thursday, July 10, 2014

Session Timeout in Oracle Apps

This post is about how to increase your session time out for oracle application. Sometime its very annoying that session time out is set at very low value. You can increase it for your login by setting...

Interface Trip Stop Functionality

There are typically four interface program get triggered at the time of ship confirm. They are  Interface Trip stop Packing Slip Report Bill of Lading Invoice Interface Trip Stop is one...

Wednesday, July 9, 2014

Shipping Parameters Quick Reference

Lets see Oracle Order Management Shipping parameter setups. Please note shipping parameters are inventory org specific where as Global parameters are not. 1) General Tab #Weight...

Monday, July 7, 2014

Copy Inventory Organization

Copy Inventory Organization in Oracle Apps is used to create a new inventory organization from exiting model organization. You can create multiple Inventory organizations with very little effort which...

Disclaimer

All content provided on this blog is for informational purposes only. The owners of this blog makes no representations as to the accuracy or completeness of any information on this site or found by following any link on this site. All trademarks, trade names, service marks, copyrighted work and logos referenced here - belong to their respective owners.If you want to report any content that is violating copyright law and you want us to remove it, please contact us.

Featured Post

Complete Oracle P2P cycle