Search Results msc_undo_details
Overview
MSC_UNDO_DETAILS is a table owned by the MSC schema within Oracle Advanced Supply Chain Planning (ASCP), a module of Oracle E-Business Suite available in releases 12.1.1 and 12.2.2. As stated in the ETRM documentation, the table "describes the details of changes made to plan output." It functions as the change-log layer of the ASCP undo framework: when a planner edits a plan — for example, rescheduling a supply, firming a planned order, or adjusting a quantity — the plan engine records a summary header in MSC_UNDO_SUMMARY and stores the column-level delta for each affected field in MSC_UNDO_DETAILS. This enables targeted rollback of manual planning changes without regenerating the entire plan.
From a Data Vault modeling perspective, the mined FK structure classifies this object as satellite-leaning. Its foreign key to MSC_UNDO_SUMMARY positions it as a dependent, descriptive child of a parent transaction record rather than an independent hub or a many-to-many link. The UNDO_ID column carries that parent reference, making this table the detail satellite of the undo header.
Key Information Stored
The documented schema for 12.2.2 contains 14 columns. The most significant are:
- UNDO_ID — Foreign key to MSC_UNDO_SUMMARY; identifies the parent undo transaction this detail row belongs to.
- COLUMN_CHANGED — The technical name of the plan column that was modified. Along with UNDO_ID, this forms the unique business key MSC_UNDO_DETAILS_U1.
- COLUMN_CHANGED_TEXT — A user-facing label for the changed column, suitable for display in reporting.
- COLUMN_TYPE — Classifies the nature or data type of the changed attribute.
- OLD_VALUE / OLD_VALUE_ID — The pre-change value, stored both as display text and as an internal identifier.
- NEW_VALUE / NEW_VALUE_ID — The post-change value, likewise stored in text and ID form.
- PLAN_ID — Identifies the plan whose output was modified, supporting plan-scoped auditing.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard EBS audit columns who/when trail for the record itself.
The unique index MSC_UNDO_DETAILS_U1 on (UNDO_ID, COLUMN_CHANGED) is the primary business-key candidate, enforcing one delta row per changed column per undo transaction. The surrogate key is not separately documented beyond this composite.
Common Use Cases and Queries
The principal use case is auditing and reversing manual plan edits. Planners and supply chain analysts query this table to determine exactly which fields were changed on a plan and to reconstruct prior values. A typical join retrieves the header context for each change:
- Change audit for a plan: SELECT d.UNDO_ID, d.COLUMN_CHANGED_TEXT, d.OLD_VALUE, d.NEW_VALUE, d.CREATED_BY, d.CREATION_DATE FROM MSC_UNDO_DETAILS d JOIN MSC_UNDO_SUMMARY s ON s.UNDO_ID = d.UNDO_ID WHERE d.PLAN_ID = :plan_id ORDER BY d.CREATION_DATE DESC.
- Reverse-lookup of a specific field: filter on COLUMN_CHANGED to trace every modification to a given attribute across undo transactions.
- User activity reporting: group by CREATED_BY and truncate CREATION_DATE to profile which planners are modifying plan output and how frequently.
- Rollback verification: before or after an undo operation, compare OLD_VALUE_ID and NEW_VALUE_ID to confirm the intended restoration.
Because the table can grow quickly in high-volume planning environments, queries should always constrain on UNDO_ID or PLAN_ID rather than scanning the full history.
Related Objects
The FK metadata identifies MSC_UNDO_SUMMARY as the direct parent, joined on MSC_UNDO_DETAILS.UNDO_ID = MSC_UNDO_SUMMARY.UNDO_ID; this is the mandatory companion table, supplying the transaction-level context (plan, user, and timestamp) for each detail row. Because MSC_UNDO_DETAILS stores only change deltas rather than full plan records, reporting almost always requires joining back to MSC_UNDO_SUMMARY. In practice, the plan entities whose columns are captured in COLUMN_CHANGED — such as MSC_PLAN_ORDERS and related ASCP plan output tables — provide the operational context, while PLAN_ID links the change history to a specific plan definition. Together, MSC_UNDO_SUMMARY and MSC_UNDO_DETAILS form the complete ASCP undo audit model, with the summary serving as the header and this table as its detail satellite.
-
Table: MSC_UNDO_DETAILS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_UNDO_DETAILS, object_name:MSC_UNDO_DETAILS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table describes the details of changes made to plan output. , implementation_dba_data: MSC.MSC_UNDO_DETAILS ,
-
Table: MSC_UNDO_DETAILS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_UNDO_DETAILS, object_name:MSC_UNDO_DETAILS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table describes the details of changes made to plan output. , implementation_dba_data: MSC.MSC_UNDO_DETAILS ,
-
VIEW: MSC.MSC_UNDO_DETAILS#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_UNDO_DETAILS#, status:VALID,
-
VIEW: MSC.MSC_UNDO_DETAILS#
12.2.2
-
SYNONYM: APPS.MSC_UNDO_DETAILS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_UNDO_DETAILS, status:VALID,
-
Lookup Type: MSC_PDSONLY_TABLE
12.1.1
product: MSC - Advanced Supply Chain Planning , meaning: MSC_PDSONLY_TABLE , description: MSC_PDSONLY_TABLE ,
-
Lookup Type: MSC_PDSONLY_TABLE
12.2.2
product: MSC - Advanced Supply Chain Planning , meaning: MSC_PDSONLY_TABLE , description: MSC_PDSONLY_TABLE ,
-
SYNONYM: APPS.MSC_UNDO_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_UNDO_DETAILS, status:VALID,
-
TABLE: MSC.MSC_UNDO_DETAILS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_UNDO_DETAILS, object_name:MSC_UNDO_DETAILS, status:VALID,
-
TABLE: MSC.MSC_UNDO_DETAILS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_UNDO_DETAILS, object_name:MSC_UNDO_DETAILS, status:VALID,
-
APPS.MSC_UNDO SQL Statements
12.2.2
-
APPS.MSC_UNDO SQL Statements
12.1.1
-
Table: MSC_UNDO_SUMMARY
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_UNDO_SUMMARY, object_name:MSC_UNDO_SUMMARY, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table describes the summary of changes made to plan output. , implementation_dba_data: MSC.MSC_UNDO_SUMMARY ,
-
Table: MSC_UNDO_SUMMARY
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_UNDO_SUMMARY, object_name:MSC_UNDO_SUMMARY, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table describes the summary of changes made to plan output. , implementation_dba_data: MSC.MSC_UNDO_SUMMARY ,
-
PACKAGE BODY: APPS.MSC_UNDO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_UNDO, status:VALID,
-
PACKAGE BODY: APPS.MSC_UNDO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSC_UNDO, status:VALID,
-
VIEW: APPS.MSC_UNDO_DETAILS_V
12.2.2
-
VIEW: APPS.MSC_UNDO_DETAILS_V
12.1.1
-
VIEW: APPS.MSC_UNDO_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_UNDO_DETAILS_V, object_name:MSC_UNDO_DETAILS_V, status:VALID,
-
VIEW: APPS.MSC_UNDO_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_UNDO_DETAILS_V, object_name:MSC_UNDO_DETAILS_V, status:VALID,
-
View: MSC_UNDO_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_UNDO_DETAILS_V, object_name:MSC_UNDO_DETAILS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the changes made to the plan output , implementation_dba_data: APPS.MSC_UNDO_DETAILS_V ,
-
View: MSC_UNDO_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_UNDO_DETAILS_V, object_name:MSC_UNDO_DETAILS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the changes made to the plan output , implementation_dba_data: APPS.MSC_UNDO_DETAILS_V ,
-
PACKAGE BODY: APPS.MSC_UNDO
12.2.2
-
PACKAGE BODY: APPS.MSC_UNDO
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA 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
-
APPS.MSC_UNDO dependencies on MSC_UNDO_DETAILS
12.2.2
-
APPS.MSC_UNDO dependencies on MSC_UNDO_DETAILS
12.1.1
-
APPS.MSC_UNDO dependencies on MSC_UNDO
12.2.2
-
APPS.MSC_UNDO dependencies on MSC_UNDO
12.1.1
-
APPS.MSC_UNDO dependencies on MSC_UNDO_SUMMARY
12.1.1
-
APPS.MSC_UNDO dependencies on MSC_UNDO_SUMMARY
12.2.2
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,