DBA Data[Home] [Help]

APPS.HR_DM_CLEANUP dependencies on HR_DM_MASTER

Line 9: -- the hr_dm_migration_requests table (via hr_dm_master.insert_request).

5: /*--------------------------- PRIVATE ROUTINES ---------------------------*/
6:
7: -- ------------------------- spawn_cleanup ------------------------
8: -- Description: The requested loader is spawned and details are entered into
9: -- the hr_dm_migration_requests table (via hr_dm_master.insert_request).
10: --
11: --
12: -- Input Parameters
13: -- p_migration - migration id

Line 143: hr_dm_master.insert_request(p_phase => 'C',

139:
140:
141:
142: -- update table hr_dm_migration_requests
143: hr_dm_master.insert_request(p_phase => 'C',
144: p_request_id => l_request_id,
145: p_master_slave => 'S',
146: p_migration_id => p_migration_id,
147: p_phase_id => p_phase_id,

Line 156: hr_dm_master.report_error('C', p_migration_id, l_fatal_error_message,

152:
153: hr_dm_utility.message('INFO','Slave request ID#' || l_request_id, 15);
154: IF (l_request_id = 0) THEN
155: l_fatal_error_message := 'Unable to start slave process';
156: hr_dm_master.report_error('C', p_migration_id, l_fatal_error_message,
157: 'P');
158: RAISE e_fatal_error;
159: END IF;
160:

Line 174: hr_dm_master.report_error('C', p_migration_id,

170: EXCEPTION
171: WHEN e_fatal_error THEN
172: hr_dm_utility.error(SQLCODE,'hr_dm_cleanup.spawn_cleanup',
173: l_fatal_error_message,'R');
174: hr_dm_master.report_error('C', p_migration_id,
175: 'Error in hr_dm_cleanup.spawn_cleanup', 'P');
176: RAISE;
177: WHEN OTHERS THEN
178: hr_dm_utility.error(SQLCODE,'hr_dm_cleanup.spawn_cleanup','(none)','R');

Line 179: hr_dm_master.report_error('C', p_migration_id,

175: 'Error in hr_dm_cleanup.spawn_cleanup', 'P');
176: RAISE;
177: WHEN OTHERS THEN
178: hr_dm_utility.error(SQLCODE,'hr_dm_cleanup.spawn_cleanup','(none)','R');
179: hr_dm_master.report_error('C', p_migration_id,
180: 'Untrapped error in hr_dm_cleanup.spawn_cleanup',
181: 'P');
182: RAISE;
183: