DBA Data[Home] [Help]

APPS.PAY_JP_IWHT_REPORT_ARCH_PKG dependencies on FND_CONC_GLOBAL

Line 102: l_request_id := fnd_number.number_to_canonical(fnd_conc_global.request_data);

98: -- first run of the program, then this value will be null.
99: -- Otherwise, this will be the value that we passed to
100: -- SET_REQ_GLOBALS on the previous run.
101: --
102: l_request_id := fnd_number.number_to_canonical(fnd_conc_global.request_data);
103: --
104: -- Exit when REQUEST_DATA was set to "-1" in previous procedure call.
105: --
106: if l_request_id = -1 then

Line 149: fnd_conc_global.set_req_globals

145: hr_utility.trace('Child request PAYJPPRT_ARCHIVE submitted, request_id: ' || l_request_id);
146: --
147: -- Set PAYJPPRT_ARCHIVE request_id as request data.
148: --
149: fnd_conc_global.set_req_globals
150: (conc_status => 'PAUSED'
151: ,request_data => fnd_number.number_to_canonical(l_request_id));
152: end if;
153: else

Line 199: fnd_conc_global.set_req_globals

195: return;
196: else
197: hr_utility.trace('Child request PAYJPITW_ARCHIVE submitted: ' || l_request_id);
198: --
199: fnd_conc_global.set_req_globals
200: (conc_status => 'PAUSED'
201: ,request_data => fnd_number.number_to_canonical(-1)
202: );
203: end if;

Line 229: fnd_conc_global.set_req_globals

225: return;
226: else
227: hr_utility.trace('Child request PAYJPIWHT_ARCHIVE submitted: ' || l_request_id);
228: --
229: fnd_conc_global.set_req_globals
230: (conc_status => 'PAUSED'
231: ,request_data => fnd_number.number_to_canonical(-1)
232: );
233: end if;