Search Results hr_dm_status
Overview
APPS.HR_DM_PHASES_V is a reporting and integration view in Oracle E-Business Suite that exposes phase-level detail for Human Resources Data Migration (HR_DM) activity. It is defined over the HR_DM_PHASES base table and joins to the HR_GENERAL package to resolve encoded lookup values into their business meanings. In EBS 12.1.1 and 12.2.2 this view is typically consumed by technical users, migration tools, and diagnostic queries that track the progress of HR data migration or replication jobs across defined phases. Because it is owned by APPS, it inherits the standard APPS synonym and grant model, and is safe to query from SQL*Plus, Oracle Forms-based concurrent programs, BI Publisher reports, and integration interfaces that need to know the state of an HR migration run.
Underlying Base Objects
The ETRM metadata documents two referenced objects for this view:
- HR_DM_PHASES (SYNONYM) — the primary base table (aliased as H1) that stores each migration phase row, including identifiers, timestamps, audit columns, and status codes.
- HR_GENERAL (PACKAGE) — invoked via
HR_GENERAL.DECODE_LOOKUPto translate the stored lookup codes into user-facing descriptions.
The view is therefore a straightforward projection with two lookup translations; it introduces no aggregation, joins to other transactional tables, or filtering predicates in the defined text. The relationship to HR_DM_PHASES is one row in the view per row in the base table.
Key Columns
The view exposes the following columns, each mirroring the base table attribute and adding decoded meanings where relevant:
- PHASE_ID — unique identifier for the migration phase row.
- MIGRATION_ID — identifier of the parent migration run that the phase belongs to; used to group phases by migration.
- PHASE_NAME — internal code for the migration phase, decoded through the
HR_DM_MIGRATION_PHASElookup into PHASE_NAME_MEANING. - STATUS — numeric/coded status of the phase, decoded through the
HR_DM_STATUSlookup into STATUS_MEANING. This is the column most relevant to searches such as "hr_dm_status". - START_TIME / END_TIME — when the phase began and completed; END_TIME is null while a phase is still running.
- LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE — standard Who-column audit attributes for change tracking.
Common Use Cases and Queries
The view is most useful for monitoring HR migration progress, identifying stalled or failed phases, and joining phase status to a migration-level summary. A simple status report by migration run:
SELECT migration_id,
phase_name,
phase_name_meaning,
status,
status_meaning,
start_time,
end_time
FROM apps.hr_dm_phases_v
ORDER BY migration_id, start_time;
To find phases that are currently running or have not yet completed:
SELECT phase_id, migration_id, phase_name_meaning, status_meaning, start_time FROM apps.hr_dm_phases_v WHERE end_time IS NULL;
To filter on the decoded status meaning rather than the raw code:
SELECT migration_id, phase_name_meaning, status_meaning FROM apps.hr_dm_phases_v WHERE status_meaning = 'Completed';
Note that the actual decode values for both HR_DM_STATUS and HR_DM_MIGRATION_PHASE are controlled by lookup configuration and may vary by instance; querying FND_LOOKUP_VALUES for the relevant lookup types confirms the available meanings. For migration dashboards, integrate this view with a join on MIGRATION_ID to any migration-level table to present overall run health alongside per-phase detail.
-
Lookup Type: HR_DM_STATUS
12.1.1
product: PER - Human Resources , meaning: HR Data Migrator status , description: HR Data Migrator status ,
-
Lookup Type: HR_DM_STATUS
12.2.2
product: PER - Human Resources , meaning: HR Data Migrator status , description: HR Data Migrator status ,
-
VIEW: APPS.HR_DM_PHASES_V
12.1.1
-
VIEW: APPS.HR_DM_PHASES_V
12.2.2
-
VIEW: APPS.HR_DM_MIGRATION_RANGES_V
12.1.1
-
VIEW: APPS.HR_DM_MIGRATION_RANGES_V
12.2.2
-
VIEW: APPS.HR_DM_PHASE_ITEMS_V
12.1.1
-
VIEW: APPS.HR_DM_PHASE_ITEMS_V
12.2.2
-
View: HR_DM_PHASES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_PHASES_V, object_name:HR_DM_PHASES_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_phases , implementation_dba_data: APPS.HR_DM_PHASES_V ,
-
View: HR_DM_MIGRATION_RANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_MIGRATION_RANGES_V, object_name:HR_DM_MIGRATION_RANGES_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_migration_ranges , implementation_dba_data: APPS.HR_DM_MIGRATION_RANGES_V ,
-
View: HR_DM_PHASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_PHASE_ITEMS_V, object_name:HR_DM_PHASE_ITEMS_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_phase_items , implementation_dba_data: APPS.HR_DM_PHASE_ITEMS_V ,
-
View: HR_DM_PHASES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_PHASES_V, object_name:HR_DM_PHASES_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_phases , implementation_dba_data: APPS.HR_DM_PHASES_V ,
-
View: HR_DM_MIGRATION_RANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_MIGRATION_RANGES_V, object_name:HR_DM_MIGRATION_RANGES_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_migration_ranges , implementation_dba_data: APPS.HR_DM_MIGRATION_RANGES_V ,
-
View: HR_DM_PHASE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_PHASE_ITEMS_V, object_name:HR_DM_PHASE_ITEMS_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_phase_items , implementation_dba_data: APPS.HR_DM_PHASE_ITEMS_V ,
-
TABLE: BEN.BEN_DM_PHASES
12.2.2
owner:BEN, object_type:TABLE, object_name:BEN_DM_PHASES, status:VALID,
-
TABLE: BEN.BEN_DM_PHASE_ITEMS
12.1.1
owner:BEN, object_type:TABLE, object_name:BEN_DM_PHASE_ITEMS, status:VALID,
-
TABLE: BEN.BEN_DM_PHASES
12.1.1
owner:BEN, object_type:TABLE, object_name:BEN_DM_PHASES, status:VALID,
-
TABLE: BEN.BEN_DM_PHASE_ITEMS
12.2.2
owner:BEN, object_type:TABLE, object_name:BEN_DM_PHASE_ITEMS, status:VALID,
-
TABLE: HR.HR_DM_PHASES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_PHASES, object_name:HR_DM_PHASES, status:VALID,
-
TABLE: HR.HR_DM_PHASES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_PHASES, object_name:HR_DM_PHASES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,