[Home] [Help]
109: -- first run of the program, then this value will be null.
110: -- Otherwise, this will be the value that we passed to
111: -- SET_REQ_GLOBALS on the previous run.
112: --
113: l_request_id := fnd_number.number_to_canonical(fnd_conc_global.request_data);
114: --
115: -- Exit when REQUEST_DATA was set to "-1" in previous procedure call.
116: --
117: if l_request_id = -1 then
156: hr_utility.trace('Child request PAYJPPRT_ARCHIVE submitted, request_id: ' || l_request_id);
157: --
158: -- Set PAYJPPRT_ARCHIVE request_id as request data.
159: --
160: fnd_conc_global.set_req_globals
161: (conc_status => 'PAUSED'
162: ,request_data => fnd_number.number_to_canonical(l_request_id));
163: end if;
164: else
206: return;
207: else
208: hr_utility.trace('Child request PAYJPITW_ARCHIVE submitted: ' || l_request_id);
209: --
210: fnd_conc_global.set_req_globals
211: (conc_status => 'PAUSED'
212: ,request_data => fnd_number.number_to_canonical(-1)
213: );
214: end if;
236: return;
237: else
238: hr_utility.trace('Child request PAYJPITW_ARCHIVE submitted: ' || l_request_id);
239: --
240: fnd_conc_global.set_req_globals
241: (conc_status => 'PAUSED'
242: ,request_data => fnd_number.number_to_canonical(-1)
243: );
244: end if;