DBA Data[Home] [Help]

APPS.HR_DM_MASTER dependencies on HR_DM_PHASE_RULES

Line 1022: -- The next phase to be process is found using the hr_dm_phase_rules table

1018: --
1019: -- The initialization code is called to set up various details (see the
1020: -- controller_init procedure).
1021: --
1022: -- The next phase to be process is found using the hr_dm_phase_rules table
1023: -- and the appropriate single or multi-threaded code is called.
1024: --
1025: -- If a multi-threaded process has spawned slaves then the main controller
1026: -- exits (to enable it to be awoken later). Otherwise it runs the next

Line 1063: FROM hr_dm_phase_rules

1059:
1060:
1061: CURSOR csr_phase_rule IS
1062: SELECT phase_name, next_phase, database_location
1063: FROM hr_dm_phase_rules
1064: WHERE ((migration_type = r_migration_data.migration_type)
1065: AND (previous_phase = l_search_phase));
1066:
1067: CURSOR csr_paused_phase_rule IS

Line 1069: FROM hr_dm_phase_rules

1065: AND (previous_phase = l_search_phase));
1066:
1067: CURSOR csr_paused_phase_rule IS
1068: SELECT previous_phase, next_phase
1069: FROM hr_dm_phase_rules
1070: WHERE ((migration_type = r_migration_data.migration_type)
1071: AND (phase_name = l_request_data));
1072:
1073: CURSOR csr_mig_status IS