DBA Data[Home] [Help]

APPS.PSA_FUNDS_CHECKER_PKG dependencies on FND_GLOBAL

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

261: /* */
262: /* When invoked from a Concurrent Process, the calling process has to */
263: /* initialize values for User ID, User Responsibility ID, Calling */
264: /* Application ID and Login ID. These values should be initialized, in the */
265: /* Global Stack by invoking FND_GLOBAL, prior to calling Funds Checker */
266: /* */
267: /* External Packages which are being invoked include : */
268: /* */
269: /* FND_GLOBAL */

Line 269: /* FND_GLOBAL */

265: /* Global Stack by invoking FND_GLOBAL, prior to calling Funds Checker */
266: /* */
267: /* External Packages which are being invoked include : */
268: /* */
269: /* FND_GLOBAL */
270: /* FND_PROFILE */
271: /* FND_INSTALLATION */
272: /* FND_MESSAGE */
273: /* FND_FLEX_EXT */

Line 904: g_user_id := FND_GLOBAL.USER_ID;

900: if ((g_override_flag) and
901: (p_user_id is not null)) then
902: g_user_id := p_user_id;
903: else
904: g_user_id := FND_GLOBAL.USER_ID;
905: end if;
906:
907: -- =========================== FND LOG ===========================
908: psa_utils.debug_other_string(g_state_level,l_full_path, ' g_user_id -> ' || g_user_id);

Line 925: g_resp_appl_id := FND_GLOBAL.resp_appl_id;

921: /*==============================+
922: | Get Calling Application ID |
923: +==============================*/
924:
925: g_resp_appl_id := FND_GLOBAL.resp_appl_id;
926:
927: if g_resp_appl_id = -1 then
928: g_resp_appl_id := 101;
929: end if;

Line 943: g_user_resp_id := FND_GLOBAL.RESP_ID;

939: if ((g_override_flag) and
940: (p_user_resp_id is not null)) then
941: g_user_resp_id := p_user_resp_id;
942: else
943: g_user_resp_id := FND_GLOBAL.RESP_ID;
944: end if;
945:
946: -- =========================== FND LOG ===========================
947: psa_utils.debug_other_string(g_state_level,l_full_path, ' g_user_resp_id -> ' || g_user_resp_id);

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

4645: 'BEGIN '||
4646: ' GMS_UTILITY.GMS_UTIL_PC_FCK('||
4647: ':g_ledger_id, :g_packet_id, :g_fcmode, '||
4648: '''N'', :g_partial_resv_flag, '||
4649: 'FND_GLOBAL.USER_ID, FND_GLOBAL.RESP_ID, '||
4650: '''N'', :gms_retcode); '||
4651: 'END;';
4652:
4653: -- =========================== FND LOG ===========================

Line 8116: l_resp_id := FND_GLOBAL.resp_id;

8112: -- ========================= FND LOG =============================
8113: END;
8114:
8115: l_appl_id := 101;
8116: l_resp_id := FND_GLOBAL.resp_id;
8117: l_user_id := FND_GLOBAL.user_id;
8118:
8119: -- =========================== FND LOG ===========================
8120: fnd_file.put_line(fnd_file.log, 'Funds C/R: p_autopost_set_id -> '||p_autopost_set_id);

Line 8117: l_user_id := FND_GLOBAL.user_id;

8113: END;
8114:
8115: l_appl_id := 101;
8116: l_resp_id := FND_GLOBAL.resp_id;
8117: l_user_id := FND_GLOBAL.user_id;
8118:
8119: -- =========================== FND LOG ===========================
8120: fnd_file.put_line(fnd_file.log, 'Funds C/R: p_autopost_set_id -> '||p_autopost_set_id);
8121: fnd_file.put_line(fnd_file.log, 'Funds C/R: l_autopost_set_name -> '||l_autopost_set_name);