Entries by Oracle ERP Apps Guide

, , ,

R12 Query/Script to find profile option value from Back-end

Background:When we run, the following SQL Query/Script will provide the profile option values set at different levels. That is Site, Application, Responsibility, User.So, this script lists ALL Users/Responsibilities/Applications set against a particular Profile optionSQL Script:Enter ‘Profile Option Name’ while running this query.Eg. FND: Debug Log Enabled, MO: Operating Unit[You can get the exact name from table fnd_profile_options_tl]    […]

, , , , ,

Developing XML Publisher Report – Using Data XML Template as Data Source

Developing XML Publisher Report – Using Data Template as Data Source Background: Developing XML Publisher Report – Using Data Template(.xml) as Data Source and Template(.rtf) as Layout.Note that, we can use .rdf file as data source. But for this demo we are using Date XML Template. Prerequisite for the below Example: 1. Create a tableCREATE TABLE […]

, , , , ,

R12 UOM Conversion of units using Function

Standard Package : INV_CONVERT Get the Conversion rate from below function easily. FUNCTION inv_um_convert (p_item_id IN NUMBER,                          p_from_uom_code IN VARCHAR2,                          p_to_uom_code IN VARCHAR2) RETURN NUMBER;  select msi.segment1,        msi.primary_uom_code,  […]