DBA Data[Home] [Help]

APPS.OKL_K_LINE_FIN_EXT_MASTER_PVT dependencies on FND_CONC_GLOBAL

Line 149: l_req_data := fnd_conc_global.request_data;

145:
146:
147: -- The following block is added to control the sub-request program
148: -- submission. It ensures that this program is not executed recurrsively.
149: l_req_data := fnd_conc_global.request_data;
150: -- If l_req_data has a value within this session, the program is attempting to
151: -- run again, therefore break out of the loop.
152:
153:

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

255: retcode := 2;
256: else
257: write_to_log('Report Sub-Request submitted, putting master into PAUSED mode');
258: --Set the globals to put the master into PAUSED mode
259: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
260: request_data => to_char(2));
261: errbuf := 'Sub-Request submitted!';
262: retcode := 0;
263: end if;

Line 512: l_req_data := fnd_conc_global.request_data;

508: write_to_log('OKL_PARALLEL_PROCESSES Updated with worker assignment');
509:
510: FOR j in 1..l_max_worker_used LOOP
511:
512: l_req_data := fnd_conc_global.request_data;
513:
514:
515: if (l_req_data is not null) then
516: l_req_counter := l_req_counter + to_number(l_req_data);

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

571: retcode := 2;
572: else
573: write_to_log('Sub-Request submitted, putting master into PAUSED mode');
574: -- Set the globals to put the master into PAUSED mode
575: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
576: request_data => to_char(1));
577: errbuf := 'Sub-Request submitted!';
578: retcode := 0;
579: end if;