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

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

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

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