DBA Data[Home] [Help]

APPS.MSD_DEM_COMMON_UTILITIES dependencies on FND_GLOBAL

Line 19: fnd_global.apps_initialize(p_user_id, p_resp_id, p_appl_id);

15: p_appl_id in number
16: ) IS
17: PRAGMA AUTONOMOUS_TRANSACTION;
18: BEGIN
19: fnd_global.apps_initialize(p_user_id, p_resp_id, p_appl_id);
20: commit;
21: END APPS_INITIALIZE;
22:
23: PROCEDURE msd_uom_conversion (from_unit varchar2,

Line 2921: IF (fnd_global.user_id = -1) THEN

2917: x_resp_id number := null;
2918: x_appl_id number := null;
2919:
2920: BEGIN
2921: IF (fnd_global.user_id = -1) THEN
2922: BEGIN
2923: select user_id into x_user_id from fnd_user where user_name = p_user_name;
2924: select responsibility_id into x_resp_id from fnd_responsibility_vl where responsibility_name = p_resp_name;
2925: select application_id into x_appl_id from fnd_application_vl where application_name = p_appl_name;