Search Results key_date_new
Overview
APPS.MSC_SUP_DEM_HISTORY_V is a reporting view in the Oracle E-Business Suite Advanced Supply Chain Planning (ASCP) module, owned by the APPS schema. It presents a filtered and column-aliased projection of supplier and demand scheduling history records used during the planning cycle. Its primary role is to expose order scheduling detail — purchase orders, purchase requisitions, and related supply/demand commitments — in a form suitable for supplier collaboration, demand history analysis, and planning report generation across Oracle EBS 12.1.1 and 12.2.2 environments.
The view is significant because it restricts the underlying history data to a specific planning context (PLAN_ID = -1, which represents the unplanned or "live" planning run set) and to three publisher order types (1, 2, 3), thereby isolating the scheduling-relevant master and transactional data from the broader history repository. This makes it a targeted integration and reporting surface for supplier scheduling and item-level demand visibility.
Underlying Base Objects
The view is defined over a single documented base object:
- MSC_SUP_DEM_HISTORY (referenced through a synonym) — the core supplier/demand history table in the ASCP schema that stores snapshots of scheduling history, item information, party details, and date attributes.
The view does not join additional tables; instead, it applies inline DECODE expressions and column aliases, and filters rows through the WHERE clause. Because it depends only on MSC_SUP_DEM_HISTORY, its data freshness and behavior are entirely governed by the population and maintenance of that base table during planning runs and collections.
Key Columns
The view exposes a broad set of supplier, customer, item, and scheduling attributes. Notable columns include:
- HISTORY_ID — Surrogate identifier for each history record.
- FROMCOMPORG / TOCOMPORG — Both are generated via DECODE(1,1,...) to yield PUBLISHER_NAME concatenated with PUBLISHER_SITE_NAME in the form "PUBLISHER(SITE)".
- SUPPLIER_NAME, SUPPLIER_SITE_NAME, SUPPLIER_ITEM_NAME, SUPPLIER_ITEM_DESC — Supplier party, site, and the supplier's item identifier/description. The user's search term "supplier_item_name" maps directly to the SUPPLIER_ITEM_NAME column.
- CUSTOMER_NAME, CUSTOMER_SITE_NAME, CUSTOMER_ITEM_NAME, CUSTOMER_ITEM_DESC — Customer-side organization, site, and item data.
- ITEM_NAME, ITEM_DESC, OWNER_ITEM_NAME, OWNER_ITEM_DESC — Internal inventory and owner item identifiers and descriptions.
- PUBLISHER_ORDER_TYPE, PUBLISHER_ORDER_TYPE_DESC — Classification of the publishing order (restricted to types 1, 2, and 3).
- DESIGNATOR, VERSION — Aliases of DESIGNATOR_NEW and VERSION_NEW, representing scheduling designator and version.
- QUANTITY_NEW, KEY_DATE_NEW, SHIP_DATE_NEW, RECEIPT_DATE_NEW, NEW_SCHEDULE_DATE_NEW — Quantities and the key scheduling dates.
- LAST_UPDATE_DATE — Audit timestamp of the most recent modification.
Common Use Cases and Queries
Typical scenarios include supplier scheduling reports, demand history analysis, and reconciliation of newly published schedules. A representative query filtering by supplier item:
- SELECT supplier_name, supplier_item_name, item_name, quantity_new, key_date_new FROM apps.msc_sup_dem_history_v WHERE supplier_item_name = :item;
- SELECT history_id, item_name, publisher_order_type_desc, ship_date_new, receipt_date_new FROM apps.msc_sup_dem_history_v WHERE publisher_order_type IN (1,2,3) ORDER BY key_date_new;
Because the view enforces PLAN_ID = -1 and requires KEY_DATE_NEW to be non-null, consumers receive only the most current scheduling history, avoiding stale or unkeyed rows.
-
VIEW: APPS.MSC_SUP_DEM_HISTORY_V
12.1.1
-
View: MSC_SUP_DEM_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SUP_DEM_HISTORY_V, object_name:MSC_SUP_DEM_HISTORY_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_SUP_DEM_HISTORY_V ,
-
VIEW: APPS.MSC_SUP_DEM_HISTORY_V
12.2.2
-
VIEW: APPS.MSC_SUP_DEM_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SUP_DEM_HISTORY_V, object_name:MSC_SUP_DEM_HISTORY_V, status:VALID,
-
View: MSC_SUP_DEM_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SUP_DEM_HISTORY_V, object_name:MSC_SUP_DEM_HISTORY_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_SUP_DEM_HISTORY_V ,
-
TRIGGER: APPS.MSC_TRG_AUDIT
12.1.1
-
VIEW: MSC.MSC_SUP_DEM_HISTORY#
12.2.2
-
PACKAGE BODY: APPS.MSC_X_PURGE_SUPDEM_HISTORY_PKG
12.1.1
-
TRIGGER: APPS.MSC_TRG_AUDIT
12.2.2
-
VIEW: MSC.MSC_SUP_DEM_HISTORY#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_SUP_DEM_HISTORY#, status:VALID,
-
TABLE: MSC.MSC_SUP_DEM_HISTORY
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SUP_DEM_HISTORY, object_name:MSC_SUP_DEM_HISTORY, status:VALID,
-
VIEW: APPS.MSC_SUP_DEM_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SUP_DEM_HISTORY_V, object_name:MSC_SUP_DEM_HISTORY_V, status:VALID,
-
PACKAGE BODY: APPS.MSC_X_PURGE_SUPDEM_HISTORY_PKG
12.2.2
-
TABLE: MSC.MSC_SUP_DEM_HISTORY
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_SUP_DEM_HISTORY, object_name:MSC_SUP_DEM_HISTORY, status:VALID,
-
APPS.MSC_X_NETTING4_PKG SQL Statements
12.1.1
-
APPS.MSC_X_NETTING4_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.MSC_X_NETTING4_PKG
12.1.1
-
PACKAGE BODY: APPS.MSC_X_NETTING4_PKG
12.2.2
-
APPS.MSC_X_NETTING4_PKG dependencies on MSC_SUP_DEM_HISTORY
12.1.1
-
APPS.MSC_X_NETTING4_PKG dependencies on MSC_SUP_DEM_HISTORY
12.2.2
-
APPS.MSC_X_NETTING4_PKG dependencies on MSC_SUP_DEM_ENTRIES
12.2.2
-
APPS.MSC_X_NETTING4_PKG dependencies on MSC_SUP_DEM_ENTRIES
12.1.1
-
eTRM - MSC Tables and Views
12.1.1
description: This table contains the mapping between user-defined zone and included regions ,
-
APPS.MSC_X_NETTING4_PKG dependencies on MSC_X_NETTING_PKG
12.1.1
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,
-
APPS.MSC_X_NETTING4_PKG dependencies on MSC_X_NETTING_PKG
12.2.2