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 513: l_req_data := fnd_conc_global.request_data;

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

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

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