DBA Data[Home] [Help]

APPS.PAY_JP_ITW_REPORT_ARCHIVE dependencies on FND_CONC_GLOBAL

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

108: -- first run of the program, then this value will be null.
109: -- Otherwise, this will be the value that we passed to
110: -- SET_REQ_GLOBALS on the previous run.
111: --
112: l_request_id := fnd_number.number_to_canonical(fnd_conc_global.request_data);
113: --
114: -- Exit when REQUEST_DATA was set to "-1" in previous procedure call.
115: --
116: if l_request_id = -1 then

Line 158: fnd_conc_global.set_req_globals

154: hr_utility.trace('Child request PAYJPPRT_ARCHIVE submitted, request_id: ' || l_request_id);
155: --
156: -- Set PAYJPPRT_ARCHIVE request_id as request data.
157: --
158: fnd_conc_global.set_req_globals
159: (conc_status => 'PAUSED'
160: ,request_data => fnd_number.number_to_canonical(l_request_id));
161: end if;
162: else

Line 208: fnd_conc_global.set_req_globals

204: return;
205: else
206: hr_utility.trace('Child request PAYJPITW_ARCHIVE submitted: ' || l_request_id);
207: --
208: fnd_conc_global.set_req_globals
209: (conc_status => 'PAUSED'
210: ,request_data => fnd_number.number_to_canonical(-1)
211: );
212: end if;

Line 238: fnd_conc_global.set_req_globals

234: return;
235: else
236: hr_utility.trace('Child request PAYJPITW_ARCHIVE submitted: ' || l_request_id);
237: --
238: fnd_conc_global.set_req_globals
239: (conc_status => 'PAUSED'
240: ,request_data => fnd_number.number_to_canonical(-1)
241: );
242: end if;