Search Results msd_shipment_data_v
Overview
MSD_SHIPMENT_DATA_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the MSD (Demand Planning) product family. In EBS 12.1.1 and 12.2.2 it exposes shipment fact records that reside in the planning server and, critically, is not restricted by a demand plan. This distinguishes it from plan-scoped fact extracts: the view returns shipment history across the planning instance rather than for a single named plan. As the ETRM description notes, where the planning server is used for only one demand plan, consumption can occur directly against the underlying fact table (MSD_SHIPMENT_DATA) or this view; where multiple plans exist, the view provides the unrestricted, plan-independent shipment data set required for cross-plan analytics and downstream integration.
Underlying Base Objects
The view is defined over two documented base objects, both referenced through synonyms in the APPS schema:
- MSD_SHIPMENT_DATA (synonym) — the shipment fact table holding measures such as QTY_SHIPPED and AMOUNT together with the surrogate key columns (INSTANCE, SR_*_PK) and the date facts.
- MSD_LEVEL_VALUES (synonym) — the level/attribute dimension used to resolve surrogate keys into human-readable level values. The view joins this object five times, once for each dimension role.
Each of the five joins pairs on INSTANCE and the corresponding SR_LEVEL_PK, and is filtered to a specific LEVEL_ID: organization (7), item (1), sales channel (27), sales representative (18), and ship-to location (11). This design resolves the sparse surrogate keys in the fact table into the descriptive level values exposed as view columns, while simultaneously constraining each join to a single dimension so that unrelated level rows cannot leak into the result set.
Key Columns
The view projects a mixture of resolved level values, their surrogate keys, descriptive user-defined attributes, dates, and measures. The user's search term qty_shipped maps to the QTY_SHIPPED measure (documented as QTY in the column listing), which holds the shipped quantity for each fact row.
- INV_ORG / INV_ORG_PK — inventory organization level value and its surrogate key (LEVEL_ID 7).
- ITEM / ITEM_PK — item level value and surrogate key (LEVEL_ID 1).
- SALES_CHANNEL / SALES_CHANNEL_PK — sales channel (LEVEL_ID 27).
- SALES_REP / SALES_REP_PK — sales representative (LEVEL_ID 18).
- SHIP_TO_LOC / SHIP_TO_LOC_PK — ship-to location (LEVEL_ID 11).
- USER_DEFINED1 / USER_DEFINED2 — user-defined attributes; their PK counterparts are returned as NULL.
- BOOKED_DATE, REQUESTED_DATE, PROMISED_DATE, SHIPPED_DATE — shipment lifecycle dates used for time-phased demand and history analysis.
- AMOUNT — shipped monetary value.
- QTY_SHIPPED (QTY) — shipped quantity, the primary measure for shipment-history reporting.
Common Use Cases and Queries
Typical uses include shipment-history extraction for demand planning, reconciliation of shipped quantities by organization, item, channel, or representative, and feeding shipment facts into custom data marts. A representative query selecting shipped quantity with dimension values follows:
SELECT INV_ORG, ITEM, SALES_CHANNEL, SALES_REP, SHIP_TO_LOC, SHIPPED_DATE, QTY_SHIPPED, AMOUNT FROM APPS.MSD_SHIPMENT_DATA_V;- Filtering by shipped date range:
SELECT ITEM, INV_ORG, SUM(QTY_SHIPPED) FROM APPS.MSD_SHIPMENT_DATA_V WHERE SHIPPED_DATE BETWEEN :start_date AND :end_date GROUP BY ITEM, INV_ORG; - Aggregating amount and quantity by sales channel:
SELECT SALES_CHANNEL, SUM(QTY_SHIPPED), SUM(AMOUNT) FROM APPS.MSD_SHIPMENT_DATA_V GROUP BY SALES_CHANNEL;
Because the view is unrestricted by demand plan, results represent the full shipment history available in the planning server and can be joined to other MSD fact views, such as forecast or booking data, to assemble comparative demand-versus-shipment reports.
-
View: MSD_SHIPMENT_DATA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SHIPMENT_DATA_V, object_name:MSD_SHIPMENT_DATA_V, status:VALID, product: MSD - Demand Planning , description: This view provides the shipment Data in the planning server and is not restricted by a demand plan. If the Planning Server is used for only one demand plan then we can go directly out of the fact table or this view. However if the planning , implementation_dba_data: APPS.MSD_SHIPMENT_DATA_V ,
-
View: MSD_SHIPMENT_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SHIPMENT_DATA_V, object_name:MSD_SHIPMENT_DATA_V, status:VALID, product: MSD - Demand Planning , description: This view provides the shipment Data in the planning server and is not restricted by a demand plan. If the Planning Server is used for only one demand plan then we can go directly out of the fact table or this view. However if the planning , implementation_dba_data: APPS.MSD_SHIPMENT_DATA_V ,
-
SYNONYM: APPS.MSD_SHIPMENT_DATA
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_SHIPMENT_DATA, status:VALID,
-
PACKAGE BODY: APPS.MSD_COMPOSITE_GROUPING
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_COMPOSITE_GROUPING, status:VALID,
-
SYNONYM: APPS.MSD_SHIPMENT_DATA
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_SHIPMENT_DATA, status:VALID,
-
PACKAGE BODY: APPS.MSD_COMPOSITE_GROUPING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_COMPOSITE_GROUPING, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.MSD_LEVEL_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVEL_VALUES, status:VALID,
-
SYNONYM: APPS.MSD_LEVEL_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVEL_VALUES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.MSD_SHIPMENT_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SHIPMENT_DATA_V, object_name:MSD_SHIPMENT_DATA_V, status:VALID,
-
VIEW: APPS.MSD_SHIPMENT_DATA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SHIPMENT_DATA_V, object_name:MSD_SHIPMENT_DATA_V, status:VALID,
-
APPS.MSD_COMPOSITE_GROUPING dependencies on MSD_SHIPMENT_DATA_V
12.2.2
-
APPS.MSD_COMPOSITE_GROUPING SQL Statements
12.2.2
-
APPS.MSD_COMPOSITE_GROUPING SQL Statements
12.1.1
-
APPS.MSD_COMPOSITE_GROUPING dependencies on MSD_SHIPMENT_DATA_V
12.1.1
-
APPS.MSD_COMPOSITE_GROUPING dependencies on MSD_SHIPMENT_DATA
12.1.1
-
APPS.MSD_COMPOSITE_GROUPING dependencies on MSD_SHIPMENT_DATA
12.2.2
-
PACKAGE BODY: APPS.MSD_COMPOSITE_GROUPING
12.1.1
-
PACKAGE BODY: APPS.MSD_COMPOSITE_GROUPING
12.2.2
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,