DBA Data[Home] [Help]

APPS.HR_DM_MASTER dependencies on FND_CONC_GLOBAL

Line 825: l_request_data := fnd_conc_global.request_data;

821: -- see if this is the first run? (l_request_data = NULL or '?')
822: -- or
823: -- is it a restart after slaves have finished? (l_request_data =
824: -- paused phase code)
825: l_request_data := fnd_conc_global.request_data;
826:
827: hr_dm_utility.message('INFO','l_request_data ' || l_request_data, 11);
828: IF (NVL(l_request_data, '?') = '?') THEN
829: -- first run processing...

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

895: spawn_slaves(p_current_phase, r_migration_data);
896:
897: -- pause master whilst slaves process data...
898: -- set request data to indicate paused phase
899: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
900: request_data => p_current_phase);
901:
902: END IF;
903:

Line 913: fnd_conc_global.set_req_globals(request_data => '?');

909: ELSE
910: -- processing after being woken up
911: hr_dm_utility.message('INFO','Unpaused processing', 13);
912: -- set request data to indicate un-paused phase
913: fnd_conc_global.set_req_globals(request_data => '?');
914:
915:
916: -- first force check for all required work
917: l_dummy := work_required(p_current_phase, r_migration_data);

Line 1095: l_request_data := fnd_conc_global.request_data;

1091: -- see if this is a migration run (l_request_data = NULL)
1092: -- OR
1093: -- is it a restart after slaves have finished? (l_request_data =
1094: -- paused phase code)
1095: l_request_data := fnd_conc_global.request_data;
1096: hr_dm_utility.message('INFO','Request data - ' || l_request_data, 12);
1097:
1098: -- initialize main controller data
1099: controller_init(p_migration_id,

Line 1184: l_request_data := fnd_conc_global.request_data;

1180: END IF;
1181:
1182: -- have we paused the main controller?
1183: -- if so, exit loop
1184: l_request_data := fnd_conc_global.request_data;
1185: EXIT WHEN NVL(l_request_data, '?') <> '?';
1186:
1187: -- did it complete? if not then update status and raise an error
1188: IF (hr_dm_utility.get_phase_status(l_phase_name, p_migration_id)