DBA Data[Home] [Help]

APPS.PSA_FUNDS_CHECKER_PKG dependencies on FND_GLOBAL

Line 254: /* Global Stack by invoking FND_GLOBAL, prior to calling Funds Checker */

250: /* */
251: /* When invoked from a Concurrent Process, the calling process has to */
252: /* initialize values for User ID, User Responsibility ID, Calling */
253: /* Application ID and Login ID. These values should be initialized, in the */
254: /* Global Stack by invoking FND_GLOBAL, prior to calling Funds Checker */
255: /* */
256: /* External Packages which are being invoked include : */
257: /* */
258: /* FND_GLOBAL */

Line 258: /* FND_GLOBAL */

254: /* Global Stack by invoking FND_GLOBAL, prior to calling Funds Checker */
255: /* */
256: /* External Packages which are being invoked include : */
257: /* */
258: /* FND_GLOBAL */
259: /* FND_PROFILE */
260: /* FND_INSTALLATION */
261: /* FND_MESSAGE */
262: /* FND_FLEX_EXT */

Line 893: g_user_id := FND_GLOBAL.USER_ID;

889: if ((g_override_flag) and
890: (p_user_id is not null)) then
891: g_user_id := p_user_id;
892: else
893: g_user_id := FND_GLOBAL.USER_ID;
894: end if;
895:
896: -- =========================== FND LOG ===========================
897: psa_utils.debug_other_string(g_state_level,l_full_path, ' g_user_id -> ' || g_user_id);

Line 914: g_resp_appl_id := FND_GLOBAL.resp_appl_id;

910: /*==============================+
911: | Get Calling Application ID |
912: +==============================*/
913:
914: g_resp_appl_id := FND_GLOBAL.resp_appl_id;
915:
916: if g_resp_appl_id = -1 then
917: g_resp_appl_id := 101;
918: end if;

Line 932: g_user_resp_id := FND_GLOBAL.RESP_ID;

928: if ((g_override_flag) and
929: (p_user_resp_id is not null)) then
930: g_user_resp_id := p_user_resp_id;
931: else
932: g_user_resp_id := FND_GLOBAL.RESP_ID;
933: end if;
934:
935: -- =========================== FND LOG ===========================
936: psa_utils.debug_other_string(g_state_level,l_full_path, ' g_user_resp_id -> ' || g_user_resp_id);

Line 4574: 'FND_GLOBAL.USER_ID, FND_GLOBAL.RESP_ID, '||

4570: 'BEGIN '||
4571: ' GMS_UTILITY.GMS_UTIL_PC_FCK('||
4572: ':g_ledger_id, :g_packet_id, :g_fcmode, '||
4573: '''N'', :g_partial_resv_flag, '||
4574: 'FND_GLOBAL.USER_ID, FND_GLOBAL.RESP_ID, '||
4575: '''N'', :gms_retcode); '||
4576: 'END;';
4577:
4578: -- =========================== FND LOG ===========================

Line 7930: l_resp_id := FND_GLOBAL.resp_id;

7926: -- ========================= FND LOG =============================
7927: END;
7928:
7929: l_appl_id := 101;
7930: l_resp_id := FND_GLOBAL.resp_id;
7931: l_user_id := FND_GLOBAL.user_id;
7932:
7933: -- =========================== FND LOG ===========================
7934: fnd_file.put_line(fnd_file.log, 'Funds C/R: p_autopost_set_id -> '||p_autopost_set_id);

Line 7931: l_user_id := FND_GLOBAL.user_id;

7927: END;
7928:
7929: l_appl_id := 101;
7930: l_resp_id := FND_GLOBAL.resp_id;
7931: l_user_id := FND_GLOBAL.user_id;
7932:
7933: -- =========================== FND LOG ===========================
7934: fnd_file.put_line(fnd_file.log, 'Funds C/R: p_autopost_set_id -> '||p_autopost_set_id);
7935: fnd_file.put_line(fnd_file.log, 'Funds C/R: l_autopost_set_name -> '||l_autopost_set_name);