DBA Data[Home] [Help]

APPS.HR_DM_UPLOAD dependencies on HR_DM_MASTER

Line 43: hr_dm_master.insert_request(p_phase => p_current_phase,

39: argument2 => 'N' );
40:
41:
42: -- update table hr_dm_migration_requests
43: hr_dm_master.insert_request(p_phase => p_current_phase,
44: p_request_id => l_request_id,
45: p_master_slave => 'S',
46: p_migration_id => p_migration_id,
47: p_phase_id => p_phase_id,

Line 55: hr_dm_master.report_error(p_current_phase, p_migration_id, l_fatal_error_message, 'P');

51: COMMIT;
52: hr_dm_utility.message('INFO','Slave request ID#' || l_request_id, 15);
53: IF (l_request_id = 0) THEN
54: l_fatal_error_message := 'Unable to start slave process';
55: hr_dm_master.report_error(p_current_phase, p_migration_id, l_fatal_error_message, 'P');
56: RAISE e_fatal_error;
57: END IF;
58:
59:

Line 70: hr_dm_master.report_error(p_current_phase, p_migration_id,

66: -- error handling
67: EXCEPTION
68: WHEN e_fatal_error THEN
69: hr_dm_utility.error(SQLCODE,'hr_dm_upload.spawn_slave',l_fatal_error_message,'R');
70: hr_dm_master.report_error(p_current_phase, p_migration_id,
71: 'Error in hr_dm_upload.spawn_slave', 'P');
72: RAISE;
73: WHEN OTHERS THEN
74: hr_dm_utility.error(SQLCODE,'hr_dm_upload.spawn_slave','(none)','R');

Line 75: hr_dm_master.report_error(p_current_phase, p_migration_id,

71: 'Error in hr_dm_upload.spawn_slave', 'P');
72: RAISE;
73: WHEN OTHERS THEN
74: hr_dm_utility.error(SQLCODE,'hr_dm_upload.spawn_slave','(none)','R');
75: hr_dm_master.report_error(p_current_phase, p_migration_id,
76: 'Untrapped error in hr_dm_upload.spawn_slave', 'P');
77: RAISE;
78: --
79: END spawn_slave;