DBA Data[Home] [Help]

APPS.OKL_CNTRCT_FIN_EXT_MASTER_PVT dependencies on FND_CONC_GLOBAL

Line 157: l_req_data := fnd_conc_global.request_data;

153:
154:
155: -- The following block is added to control the sub-request program
156: -- submission. It ensures that this program is not executed recurrsively.
157: l_req_data := fnd_conc_global.request_data;
158: -- If l_req_data has a value within this session, the program is attempting to
159: -- run again, therefore break out of the loop.
160:
161:

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

493: write_to_log('OKL_PARALLEL_PROCESSES Updated with worker assignment');
494:
495: FOR j in 1..l_max_worker_used LOOP
496:
497: l_req_data := fnd_conc_global.request_data;
498:
499:
500: if (l_req_data is not null) then
501: l_req_counter := l_req_counter + to_number(l_req_data);

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

559: retcode := 2;
560: else
561: write_to_log('Sub-Request submitted, putting master into PAUSED mode');
562: -- Set the globals to put the master into PAUSED mode
563: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
564: request_data => to_char(1));
565: errbuf := 'Sub-Request submitted!';
566: retcode := 0;
567: end if;