DBA Data[Home] [Help]

APPS.HR_DM_CLEANUP dependencies on FND_CONC_GLOBAL

Line 319: l_request_data := fnd_conc_global.request_data;

315: -- see if this is the first run? (l_request_data = NULL or '?')
316: -- or
317: -- is it a restart after a slave has finished? (l_request_data = paused phase
318: -- item code)
319: l_request_data := fnd_conc_global.request_data;
320: hr_dm_utility.message('INFO','l_request_data ' || l_request_data, 11);
321: IF (NVL(l_request_data, '?') IS NOT NULL) THEN
322: -- unpaused processing...
323:

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

384:
385:
386: -- pause master whilst slaves process data...
387: -- set request data to indicate paused phase
388: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
389: request_data => l_phase_item_id);
390:
391: errbuf := 'No errors - examine logfiles for detailed reports.';
392: END IF;