DBA Data[Home] [Help]

APPS.FND_OAM_COLLECTION dependencies on FND_GLOBAL

Line 59: select fnd_global.conc_request_id into v_conc_req_id from dual;

55: v_conc_req_id fnd_concurrent_requests.request_id%TYPE;
56: v_retu boolean := false;
57: BEGIN
58: -- check if its concurrent request
59: select fnd_global.conc_request_id into v_conc_req_id from dual;
60: if v_conc_req_id > 0 then
61: v_retu := true;
62: end if;
63: return v_retu;

Line 75: select fnd_global.conc_request_id into v_conc_req_id from dual;

71: v_userid number;
72: v_conc_req_id number;
73: BEGIN
74: -- check if its concurrent request
75: select fnd_global.conc_request_id into v_conc_req_id from dual;
76: if v_conc_req_id > 0 then
77: select fcr.requested_by into v_userid
78: from fnd_concurrent_requests fcr
79: where fcr.request_id = v_conc_req_id;

Line 81: select fnd_global.user_id into v_userid from dual;

77: select fcr.requested_by into v_userid
78: from fnd_concurrent_requests fcr
79: where fcr.request_id = v_conc_req_id;
80: else
81: select fnd_global.user_id into v_userid from dual;
82: if (v_userid < 0 or v_userid is null) then
83: v_userid := 0; -- default
84: end if;
85: end if;

Line 2187: fnd_global.apps_initialize(user_id, resp_id, appl_id);

2183: from fnd_user
2184: where user_name = 'SYSADMIN';
2185:
2186: -- Now initialize the environment for SYSADMIN
2187: fnd_global.apps_initialize(user_id, resp_id, appl_id);
2188:
2189: -- Set the repeat options
2190: retval := fnd_request.set_repeat_options(repeat_interval => 10,
2191: repeat_unit => 'MINUTES',