DBA Data[Home] [Help]

APPS.IEM_CONCURRENT_MDT_PVT dependencies on FND_CONC_GLOBAL

Line 60: req_data := fnd_conc_global.request_data;

56: -- first run of the program, then this value will be null.
57: -- Otherwise, this will be the value that we passed to
58: -- SET_REQ_GLOBALS on the previous run.
59: --
60: req_data := fnd_conc_global.request_data;
61:
62: --
63: -- If this is the first run, we'll set i = 1. and update iem_comp_rt_stats
64: -- and set it to T

Line 148: fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(i)) ;

144: retcode := 2;
145: else
146: -- Here we set the globals to put the program into the
147: -- PAUSED status on exit, and to save the state in request_data.
148: fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(i)) ;
149: errbuf := 'Sub-Request #' || to_char(i) || ' submitted!';
150: retcode := 0 ;
151: --sleep here
152: dbms_lock.sleep(p_period_to_wake_up*60);