Search Results hr_dm_migration_type
Overview
APPS.HR_DM_MIGRATIONS_V is a reporting and inquiry view exposed in the APPS schema of Oracle E-Business Suite 12.1.1 and 12.2.2. It presents the header-level records of the Human Resources Data Migration (HR_DM) framework, which is used to move data extract definitions, business group content, and related configuration between source and destination database instances during implementation, cloning, consolidation, or upgrade activities. The view consolidates migration metadata maintained in the base migration tables with descriptive lookup meanings and the latest concurrent request information, allowing administrators and integrators to track migration activities without joining multiple objects manually.
The identifier most commonly used to query this view is migration_id, which uniquely identifies a single migration event and serves as the primary correlation key across the view and its underlying objects. The view is especially relevant to functional consultants and technical teams performing business group data migration in multi-organization HRMS deployments.
Underlying Base Objects
The ETRM metadata documents four referenced base objects:
- HR_DM_MIGRATIONS (SYNONYM) — the primary driving table, aliased h1, supplying migration header attributes such as source and destination instance, migration type, business group, status, dates, and audit columns.
- HR_DM_MIGRATION_REQUESTS (SYNONYM) — aliased h2, providing the concurrent request_id associated with the migration. It is outer-joined to the header on migration_id, filtered to the master record (master_slave = 'M'), and further restricted to the maximum request_id for each migration via a correlated subquery.
- FND_APPLICATION_VL (VIEW) — aliased f1, supplying the application_name for the application_id recorded on the migration header.
- HR_GENERAL (PACKAGE) — invoked through HR_GENERAL.DECODE_LOOKUP to translate the status and migration_type codes into descriptive meanings.
The outer join and MAX(request_id) logic ensure that exactly one row is returned per migration, reflecting the most recent master request rather than every historical submission.
Key Columns
- MIGRATION_ID — the unique migration identifier and the primary search key.
- SOURCE_DATABASE_INSTANCE / DESTINATION_DATABASE_INSTANCE — the originating and target instance names for the migration.
- MIGRATION_TYPE and MIGRATION_TYPE_MEANING — the coded type and its decoded value from the HR_DM_MIGRATION_TYPE lookup.
- BUSINESS_GROUP_ID / BUSINESS_GROUP_NAME — the HR business group affected by the migration.
- STATUS and STATUS_MEANING — the internal status code and its decoded value from the HR_DM_MIGRATION_STATUS lookup.
- MIGRATION_START_DATE / MIGRATION_END_DATE — the run window; MIGRATION_COUNT and EFFECTIVE_DATE summarize scope and currency of the data.
- SELECTIVE_MIGRATION_CRITERIA — the filter applied when a subset of records is migrated.
- APPLICATION_ID / APPLICATION_NAME — the owning application of the migration.
- REQUEST_ID — the latest master concurrent request for the migration.
- Audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) — standard who-column tracking.
Common Use Cases and Queries
Typical scenarios include auditing migration history for a business group, monitoring in-progress migrations, and retrieving the request_id for concurrent program troubleshooting.
- Inspect a specific migration:
SELECT migration_id, source_database_instance, destination_database_instance, status_meaning, migration_start_date, migration_end_date FROM apps.hr_dm_migrations_v WHERE migration_id = :migration_id; - List migrations by business group and status:
SELECT migration_id, business_group_name, migration_type_meaning, status_meaning FROM apps.hr_dm_migrations_v WHERE business_group_id = :p_bg_id AND status <> 'COMPLETE' ORDER BY creation_date DESC; - Obtain the latest concurrent request for reporting:
SELECT migration_id, request_id, application_name FROM apps.hr_dm_migrations_v WHERE migration_id = :migration_id; - Audit recent activity:
SELECT migration_id, created_by, creation_date, status_meaning FROM apps.hr_dm_migrations_v WHERE creation_date > SYSDATE - 30;
Because the view resolves lookup meanings and the latest master request internally, it is well suited to custom reports, BLOCK-based forms, and integration extracts that require a single-row-per-migration representation without direct joins to HR_DM_MIGRATION_REQUESTS.
-
Lookup Type: HR_DM_MIGRATION_TYPE
12.2.2
product: PER - Human Resources , meaning: HR Data Migrator migration types , description: HR Data Migrator migration types ,
-
Lookup Type: HR_DM_MIGRATION_TYPE
12.1.1
product: PER - Human Resources , meaning: HR Data Migrator migration types , description: HR Data Migrator migration types ,
-
VIEW: APPS.HR_DM_MIGRATIONS_V
12.2.2
-
VIEW: APPS.HR_DM_MIGRATIONS_V
12.1.1
-
View: HR_DM_MIGRATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_MIGRATIONS_V, object_name:HR_DM_MIGRATIONS_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_migrations , implementation_dba_data: APPS.HR_DM_MIGRATIONS_V ,
-
View: HR_DM_MIGRATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_MIGRATIONS_V, object_name:HR_DM_MIGRATIONS_V, status:VALID, product: PER - Human Resources , description: View to support DM UI - hr_dm_migrations , implementation_dba_data: APPS.HR_DM_MIGRATIONS_V ,
-
TABLE: HR.HR_DM_APPLICATION_GROUPS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_APPLICATION_GROUPS, object_name:HR_DM_APPLICATION_GROUPS, status:VALID,
-
TABLE: HR.HR_DM_PHASE_RULES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_PHASE_RULES, object_name:HR_DM_PHASE_RULES, status:VALID,
-
TABLE: HR.HR_DM_PHASE_RULES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_PHASE_RULES, object_name:HR_DM_PHASE_RULES, status:VALID,
-
TABLE: HR.HR_DM_APPLICATION_GROUPS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_APPLICATION_GROUPS, object_name:HR_DM_APPLICATION_GROUPS, status:VALID,
-
APPS.HR_DM_AOL_UP SQL Statements
12.1.1
-
APPS.HR_DM_AOL_UP SQL Statements
12.2.2
-
TABLE: HR.HR_DM_MIGRATIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_MIGRATIONS, object_name:HR_DM_MIGRATIONS, status:VALID,
-
TABLE: HR.HR_DM_MIGRATIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DM_MIGRATIONS, object_name:HR_DM_MIGRATIONS, status:VALID,
-
APPS.HR_DM_COPY SQL Statements
12.1.1
-
APPS.HR_DM_COPY SQL Statements
12.2.2
-
APPS.HR_DM_AOL_UP dependencies on HR_GENERAL
12.1.1
-
APPS.HR_DM_AOL_UP dependencies on HR_GENERAL
12.2.2
-
APPS.HR_DM_COPY dependencies on HR_GENERAL
12.1.1
-
APPS.HR_DM_COPY dependencies on HR_GENERAL
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.HR_DM_AOL_UP
12.2.2
-
PACKAGE BODY: APPS.HR_DM_AOL_UP
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.HR_DM_COPY dependencies on HR_DM_EXP_MIGRATIONS_V
12.2.2
-
APPS.HR_DM_COPY dependencies on HR_DM_EXP_MIGRATIONS_V
12.1.1
-
PACKAGE BODY: APPS.HR_DM_COPY
12.2.2
-
PACKAGE BODY: APPS.HR_DM_COPY
12.1.1
-
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 ,