DBA Data[Home] [Help]

APPS.JGRX_FAREG_MULTIREPTS dependencies on FND_CONC_GLOBAL

Line 37: req_data := FND_CONC_GLOBAL.request_data;

33: -- first run of the program, THEN this value will be null.
34: -- OtherwISe, this will be the value that we passed to
35: -- SET_REQ_GLOBALS on the previous run.
36: --
37: req_data := FND_CONC_GLOBAL.request_data;
38: IF (req_data IS NOT NULL) THEN
39: errbuf := 'Done!';
40: retcode := 0 ;
41: return;

Line 197: FND_CONC_GLOBAL.set_req_globals(conc_status => 'PAUSED',

193: -- Here we set the globals to put the program into the
194: -- PAUSED status on exit, and to save the state in
195: -- request_data.
196: --
197: FND_CONC_GLOBAL.set_req_globals(conc_status => 'PAUSED',
198: request_data => to_char(i)) ;
199: errbuf := 'Sub-Request submitted!';
200: retcode := 0 ;
201: