DBA Data[Home] [Help]

APPS.HRI_BPL_PYUGEN_WRAPPER dependencies on FND_CONC_GLOBAL

Line 302: -- Used to store the return value of fnd_conc_global.request_data. If

298: ,p_attribute2 IN VARCHAR2 DEFAULT TO_CHAR(NULL)
299: )
300: IS
301: --
302: -- Used to store the return value of fnd_conc_global.request_data. If
303: -- it is non null then this indicates that the process has returned
304: -- from a paused state.
305: --
306: l_request_data VARCHAR2(240);

Line 334: -- Call fnd_conc_global.request_data, to see if this program is re-entering

330: -- Profile HRI:DBI Force Foundation HR Processes
331: --
332: BEGIN
333: --
334: -- Call fnd_conc_global.request_data, to see if this program is re-entering
335: -- after being paused, while the PYUGEN master process completes.
336: --
337: l_request_data := fnd_conc_global.request_data;
338: --

Line 337: l_request_data := fnd_conc_global.request_data;

333: --
334: -- Call fnd_conc_global.request_data, to see if this program is re-entering
335: -- after being paused, while the PYUGEN master process completes.
336: --
337: l_request_data := fnd_conc_global.request_data;
338: --
339: -- NOTE!!! THE FOLLOWING CODE WITHIN THE CONDITION:
340: -- 'IF l_request_data IS NOT NULL', is only run after re-entering the
341: -- package when sub processes have completed.

Line 497: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',

493: dbg('Telling concurrent manage to wait for sub processes to complete.');
494: --
495: -- Tell the process to pause awaiting sub process completion.
496: --
497: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
498: request_data=> TO_CHAR(l_request_id));
499: --
500: dbg('Waiting for sub processes to complete.');
501: --

Line 558: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',

554: --
555: --
556: -- Tell the process to pause awaiting sub process completion.
557: --
558: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
559: request_data=> TO_CHAR(l_request_id));
560: --
561: RETURN;
562: --