Setting Org Context in Oracle Apps
Setting the Multi Org Context : METHOD 1: begin MO_GLOBAL.SET_POLICY_CONTEXT(ACCESS_MODE,ORG_ID);end; Example: begin MO_GLOBAL.SET_POLICY_CONTEXT(‘S’,101);end; S – Denotes that the current session will work for Single Org_id (101) M – Denotes that the current session will work for Multiple Org_id METHOD 2: beginmo_global.init (<APPLICATION SHORT NAME>);end; Example : beginmo_global.init (‘AR’);end; Query : select Application_short_name , application_namefrom […]
Recent Comments