DBA Data[Home] [Help]

APPS.ASG_APPLY dependencies on FND_GLOBAL

Line 2174: fnd_global.apps_initialize(l_userid, l_respid, l_appid);

2170: WHERE pr.user_name = upper(p_user_name) AND
2171: pr.pub_name = upper(curr_pub) AND
2172: ROWNUM =1;
2173:
2174: fnd_global.apps_initialize(l_userid, l_respid, l_appid);
2175: log('process_user: apps_initialize() invoked for responsibility :'
2176: || l_respid || 'and application :'||l_appid,g_stmt_level);
2177:
2178:

Line 2200: fnd_global.apps_initialize(g_conc_userid, g_conc_respid, g_conc_appid);

2196: 'Check if valid wrapper exists ' ||
2197: SQLERRM,g_err_level);
2198: x_return_status := FND_API.G_RET_STS_SUCCESS;
2199: --reset
2200: fnd_global.apps_initialize(g_conc_userid, g_conc_respid, g_conc_appid);
2201: return;
2202: END;
2203: ELSE
2204: log('No pubitems from publication: ' || curr_pub || ' to process',

Line 2208: fnd_global.apps_initialize(g_conc_userid, g_conc_respid, g_conc_appid);

2204: log('No pubitems from publication: ' || curr_pub || ' to process',
2205: g_stmt_level);
2206: END IF;
2207: --reset
2208: fnd_global.apps_initialize(g_conc_userid, g_conc_respid, g_conc_appid);
2209: END LOOP;
2210: END IF;
2211: END process_user;
2212:

Line 2277: g_conc_userid := fnd_global.user_id();

2273: g_conc_start_time:=null;
2274: select sysdate into g_conc_start_time from dual;
2275:
2276: -- Get the conc program's user id, respid and appid
2277: g_conc_userid := fnd_global.user_id();
2278: IF g_conc_userid IS NULL or g_conc_userid = -1 THEN
2279: g_conc_userid := 5;
2280: END IF;
2281: g_conc_respid := fnd_global.resp_id();

Line 2281: g_conc_respid := fnd_global.resp_id();

2277: g_conc_userid := fnd_global.user_id();
2278: IF g_conc_userid IS NULL or g_conc_userid = -1 THEN
2279: g_conc_userid := 5;
2280: END IF;
2281: g_conc_respid := fnd_global.resp_id();
2282: IF g_conc_respid IS NULL or g_conc_respid = -1 THEN
2283: g_conc_respid := 20420;
2284: END IF;
2285: g_conc_appid := fnd_global.resp_appl_id();

Line 2285: g_conc_appid := fnd_global.resp_appl_id();

2281: g_conc_respid := fnd_global.resp_id();
2282: IF g_conc_respid IS NULL or g_conc_respid = -1 THEN
2283: g_conc_respid := 20420;
2284: END IF;
2285: g_conc_appid := fnd_global.resp_appl_id();
2286: IF g_conc_appid IS NULL or g_conc_appid = -1 THEN
2287: g_conc_appid := 1;
2288: END IF;
2289: