DBA Data[Home] [Help]

APPS.ASG_APPLY dependencies on FND_GLOBAL

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

1981: WHERE pr.user_name = upper(p_user_name) AND
1982: pr.pub_name = upper(curr_pub) AND
1983: ROWNUM =1;
1984:
1985: fnd_global.apps_initialize(l_userid, l_respid, l_appid);
1986: log('process_user: apps_initialize() invoked for responsibility :'
1987: || l_respid || 'and application :'||l_appid,g_stmt_level);
1988:
1989:

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

2007: 'Check if valid wrapper exists ' ||
2008: SQLERRM,g_err_level);
2009: x_return_status := FND_API.G_RET_STS_SUCCESS;
2010: --reset
2011: fnd_global.apps_initialize(g_conc_userid, g_conc_respid, g_conc_appid);
2012: return;
2013: END;
2014: ELSE
2015: log('No pubitems from publication: ' || curr_pub || ' to process',

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

2015: log('No pubitems from publication: ' || curr_pub || ' to process',
2016: g_stmt_level);
2017: END IF;
2018: --reset
2019: fnd_global.apps_initialize(g_conc_userid, g_conc_respid, g_conc_appid);
2020: END LOOP;
2021: END IF;
2022: END process_user;
2023:

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

2045: g_conc_start_time:=null;
2046: select sysdate into g_conc_start_time from dual;
2047:
2048: -- Get the conc program's user id, respid and appid
2049: g_conc_userid := fnd_global.user_id();
2050: IF g_conc_userid IS NULL or g_conc_userid = -1 THEN
2051: g_conc_userid := 5;
2052: END IF;
2053: g_conc_respid := fnd_global.resp_id();

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

2049: g_conc_userid := fnd_global.user_id();
2050: IF g_conc_userid IS NULL or g_conc_userid = -1 THEN
2051: g_conc_userid := 5;
2052: END IF;
2053: g_conc_respid := fnd_global.resp_id();
2054: IF g_conc_respid IS NULL or g_conc_respid = -1 THEN
2055: g_conc_respid := 20420;
2056: END IF;
2057: g_conc_appid := fnd_global.resp_appl_id();

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

2053: g_conc_respid := fnd_global.resp_id();
2054: IF g_conc_respid IS NULL or g_conc_respid = -1 THEN
2055: g_conc_respid := 20420;
2056: END IF;
2057: g_conc_appid := fnd_global.resp_appl_id();
2058: IF g_conc_appid IS NULL or g_conc_appid = -1 THEN
2059: g_conc_appid := 1;
2060: END IF;
2061: