DBA Data[Home] [Help]

APPS.CZ_MODEL_CONVERT dependencies on FND_CONC_GLOBAL

Line 2313: IF(noofreports=0 and fnd_conc_global.request_data IS NULL ) THEN

2309: AND(migration_group_id = p_request_id OR(p_request_id IS NULL AND migration_group_id IS NOT NULL))
2310: AND export_status = 'PEN'
2311: AND server_id = 0);
2312:
2313: IF(noofreports=0 and fnd_conc_global.request_data IS NULL ) THEN
2314: log_msg('Model_Convert_CP', 0, 'No pending request with the supplied Conversion Set ID', fnd_log.level_unexpected);
2315: errbuf := 'Error in model conversion!';
2316: retcode := 2;
2317: raise ERR_PROFILE;

Line 2344: req_data := fnd_conc_global.request_data;

2340: -- null.
2341: -- Otherwise, this will be the value that we passed to
2342: -- SET_REQ_GLOBALS on the previous run.
2343: --
2344: req_data := fnd_conc_global.request_data;
2345:
2346: -- If this is the first run, well set i = 1.
2347: -- Otherwise we will set i = request_data + 1, and we will
2348: -- exit if we are done.

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

2440: END;
2441: BEGIN
2442: call_status := FND_CONCURRENT.GET_REQUEST_STATUS(r, '', '', rphase,rstatus,dphase,dstatus, message);
2443: IF dphase<>'COMPLETE' THEN
2444: fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(i));
2445: END IF;
2446: --no need to pause if child completed
2447: EXCEPTION WHEN OTHERS THEN
2448: NULL;