Search Results eng_change_propagation_maps
Overview
ENG_CHANGE_PROPAGATION_MAPS is an Engineering (ENG) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores the change propagation mapping between source and destination entities. When an engineering change order (ECO) is released, affected items, bills of material, and routing structures must be propagated to downstream organizations and manufacturing entities. This table captures the linkage between the original revised item context and the resulting target records, allowing the application to track which destination records were generated by, or associated with, a given change propagation event.
The table resides in the ENG schema and is documented as VALID in the ETRM 12.2.2 physical schema with 28 columns. From a heuristic Data Vault modeling perspective, the FK structure indicates this object behaves as a standalone structure, meaning it functions primarily as a detail or mapping table rather than a classic multi-parent link. A single foreign key references ENG_REVISED_ITEMS via REVISED_ITEM_SEQUENCE_ID, anchoring each propagation mapping row to a specific revised item sequence within an engineering change.
Key Information Stored
The surrogate primary key is CHANGE_PROPAGATION_MAP_ID, enforced by the unique index ENG_CHANGE_PROPAGATION_MAPS_U1. This identifier uniquely distinguishes each propagation mapping record and serves as the principal business-key candidate documented for the table.
- CHANGE_ID — Identifies the engineering change order driving the propagation event.
- REVISED_ITEM_SEQUENCE_ID — Foreign key to ENG_REVISED_ITEMS; ties the mapping to the source revised item sequence.
- REVISED_LINE_TYPE — Indicates the type of revised line (for example, component or operation context) being propagated.
- REVISED_LINE_ID1 through REVISED_LINE_ID5 — Generic reference columns holding the source-side entity identifiers associated with the revised line.
- LOCAL_ORGANIZATION_ID — The destination organization to which the change is propagated.
- LOCAL_CHANGE_ID — The change identifier in the destination (local) context.
- LOCAL_REVISED_ITEM_SEQUENCE_ID — The destination-side revised item sequence matching the source sequence.
- LOCAL_REVISED_LINE_ID1 through LOCAL_REVISED_LINE_ID5 — Destination-side counterpart identifiers mirroring the source revised line columns.
- ENTITY_NAME — Names the destination entity type involved in the propagation.
- ENTITY_ACTION_STATUS — Tracks the processing status of the propagated entity action.
- PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE, REQUEST_ID — Standard concurrent program audit columns recording which request generated or last updated the row.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard WHO audit columns.
Common Use Cases and Queries
Typical usage centers on diagnostics and reconciliation of ECO propagation. Engineers and support analysts query the table to confirm that a released change propagated to all intended organizations, and to identify rows where ENTITY_ACTION_STATUS indicates an incomplete or failed action. A representative query joins the mapping to its parent revised item:
SELECT m.CHANGE_PROPAGATION_MAP_ID, m.CHANGE_ID, m.LOCAL_ORGANIZATION_ID, m.ENTITY_NAME, m.ENTITY_ACTION_STATUS
FROM ENG.ENG_CHANGE_PROPAGATION_MAPS m
WHERE m.REVISED_ITEM_SEQUENCE_ID = :sequence_id;
Another common pattern isolates failed or pending propagations for a specific change: filtering on CHANGE_ID and ENTITY_ACTION_STATUS. Reporting use cases include auditing which destination organizations received a given change, tracing the LOCAL_REVISED_LINE_ID values back to their destination entities, and reconciling concurrent request output through REQUEST_ID.
Related Objects
- ENG_REVISED_ITEMS — Parent table referenced through REVISED_ITEM_SEQUENCE_ID; the primary documented FK relationship.
- ENG_ENGINEERING_CHANGES — Related through CHANGE_ID and LOCAL_CHANGE_ID, supplying change order context.
- ENG_REVISED_COMPONENTS — Frequently associated with REVISED_LINE_TYPE and revised line identifiers.
- ENG_REVISED_OPERATIONS — Related to propagated routing line actions.
- ENG_CHANGE_ORDER_REVISED_ITEMS — Links the ECO revision context to propagation records.
- MTL_SYSTEM_ITEMS_B — Destination item definitions referenced through local entity identifiers.
- FND_CONCURRENT_REQUESTS — Joinable through REQUEST_ID for program and phase status reporting.
- ENG_CHANGE_PROPAGATION_MAPS public APIs and concurrent programs in the Engineering module generate and update these rows during ECO release processing.
-
Table: ENG_CHANGE_PROPAGATION_MAPS
12.1.1
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_CHANGE_PROPAGATION_MAPS, object_name:ENG_CHANGE_PROPAGATION_MAPS, status:VALID, product: ENG - Engineering , description: This table is used to store Change propagation mapping betwen source and destination entities , implementation_dba_data: ENG.ENG_CHANGE_PROPAGATION_MAPS ,
-
Table: ENG_CHANGE_PROPAGATION_MAPS
12.2.2
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_CHANGE_PROPAGATION_MAPS, object_name:ENG_CHANGE_PROPAGATION_MAPS, status:VALID, product: ENG - Engineering , description: This table is used to store Change propagation mapping betwen source and destination entities , implementation_dba_data: ENG.ENG_CHANGE_PROPAGATION_MAPS ,
-
VIEW: ENG.ENG_CHANGE_PROPAGATION_MAPS#
12.2.2
owner:ENG, object_type:VIEW, object_name:ENG_CHANGE_PROPAGATION_MAPS#, status:VALID,
-
SYNONYM: APPS.ENG_CHANGE_PROPAGATION_MAPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ENG_CHANGE_PROPAGATION_MAPS, status:VALID,
-
SYNONYM: APPS.ENG_CHANGE_PROPAGATION_MAPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ENG_CHANGE_PROPAGATION_MAPS, status:VALID,
-
APPS.ENG_PROPAGATION_LOG_UTIL SQL Statements
12.1.1
-
APPS.ENG_PROPAGATION_LOG_UTIL SQL Statements
12.2.2
-
VIEW: ENG.ENG_CHANGE_PROPAGATION_MAPS#
12.2.2
-
PACKAGE: APPS.ENG_PROPAGATION_LOG_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ENG_PROPAGATION_LOG_UTIL, status:VALID,
-
TABLE: ENG.ENG_CHANGE_PROPAGATION_MAPS
12.2.2
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_CHANGE_PROPAGATION_MAPS, object_name:ENG_CHANGE_PROPAGATION_MAPS, status:VALID,
-
PACKAGE: APPS.ENG_PROPAGATION_LOG_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ENG_PROPAGATION_LOG_UTIL, status:VALID,
-
TABLE: ENG.ENG_CHANGE_PROPAGATION_MAPS
12.1.1
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_CHANGE_PROPAGATION_MAPS, object_name:ENG_CHANGE_PROPAGATION_MAPS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.ENG_PROPAGATION_LOG_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_PROPAGATION_LOG_UTIL, status:VALID,
-
PACKAGE BODY: APPS.ENG_PROPAGATION_LOG_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_PROPAGATION_LOG_UTIL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.ENGECOBO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ENGECOBO, status:VALID,
-
PACKAGE BODY: APPS.ENGECOBO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ENGECOBO, status:VALID,
-
APPS.ENGECOBO SQL Statements
12.1.1
-
APPS.ENGECOBO SQL Statements
12.2.2
-
PACKAGE BODY: APPS.ENG_PROPAGATION_LOG_UTIL
12.1.1
-
PACKAGE BODY: APPS.ENG_PROPAGATION_LOG_UTIL
12.2.2
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_CHANGE_PROPAGATION_MAPS
12.1.1
-
APPS.ENGECOBO dependencies on ENG_CHANGE_PROPAGATION_MAPS
12.2.2
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_CHANGE_PROPAGATION_MAPS
12.2.2
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_CHANGE_PROPAGATION_MAPS
12.2.2
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_CHANGE_PROPAGATION_MAPS
12.1.1
-
APPS.ENGECOBO dependencies on ENG_CHANGE_PROPAGATION_MAPS
12.1.1
-
eTRM - ENG Tables and Views
12.2.2
description: Change type organization properties ,
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_CHANGE_PROPAGATION_MAPS_S
12.2.2
-
PACKAGE BODY: APPS.ENGECOBO
12.1.1
-
APPS.ENGECOBO dependencies on ENG_CHANGE_PROPAGATION_MAPS_S
12.2.2
-
APPS.ENGECOBO dependencies on MTL_PARAMETERS
12.2.2
-
APPS.ENGECOBO dependencies on MTL_PARAMETERS
12.1.1
-
PACKAGE BODY: APPS.ENGECOBO
12.2.2
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_CHANGE_PROPAGATION_MAPS_S
12.1.1
-
APPS.ENGECOBO dependencies on ENG_CHANGE_PROPAGATION_MAPS_S
12.1.1
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_REVISED_ITEMS
12.2.2
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ENG_REVISED_ITEMS
12.1.1
-
APPS.ENGECOBO dependencies on BOM_COMPONENTS_B
12.2.2
-
APPS.ENG_PROPAGATION_LOG_UTIL dependencies on DUAL
12.2.2
-
eTRM - ENG Tables and Views
12.1.1
description: Change type organization properties ,