Search Results master_container_item_id
Overview
WSH_DSNO_ITEM_DETAILS_V is a Shipping Execution (WSH) reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It is designed to present item-level details for delivery assignments in a format suitable for Distributed Shipping Order (DSNO) and outbound logistics processing. The view flattens the relationship between a delivery assignment header, the underlying delivery detail line, and its associated serial number records, exposing quantities, serial number ranges, lot and revision information, and the full set of descriptive flexfield columns inherited from WSH_DELIVERY_DETAILS. Because it is a view rather than a table, it does not store data; it provides a read-only, denormalized projection over the Shipping Execution base objects that simplifies querying and integration for downstream consumers. The view is registered as VALID in the ETRM metadata for 12.2.2.
Underlying Base Objects
The view text joins three primary sources. WSH_DELIVERY_ASSIGNMENTS (referenced via the WSH_DELIVERY_ASSIGNMENTS_V view) supplies the delivery assignment identifier and the parent delivery detail identifier used to resolve the container instance. WSH_DELIVERY_DETAILS supplies the delivery detail identifier, container item references, lot number, revision, quantity, and the descriptive flexfield attribute columns. WSH_SERIAL_NUMBERS supplies the from and to serial number ranges and the quantity that overrides the shipped quantity when present. A fourth synonym, WMS_EPC, is documented as a referenced base object, reflecting the integration between Shipping Execution and Warehouse Management EPC (Electronic Product Code) data. Where serial number data exists in WSH_SERIAL_NUMBERS, the NVL logic in the view prefers it; otherwise the delivery detail values are used.
Key Columns
- DELIVERY_ID, DELIVERY_ASSIGNMENT_ID, DELIVERY_DETAIL_ID — Core identifiers linking the assignment to its delivery and detail line.
- CONTAINER_INSTANCE_ID — Derived from WSH_DELIVERY_ASSIGNMENTS.PARENT_DELIVERY_DETAIL_ID, identifying the parent container in a nested packing hierarchy.
- MASTER_CONTAINER_ITEM_ID, DETAIL_CONTAINER_ITEM_ID — References to the master and detail container item definitions.
- LOAD_SEQUENCE_NUMBER — The load or stop ordering sequence for the detail line.
- FROM_SERIAL_NUMBER — Defined as NVL(WSN.FM_SERIAL_NUMBER, WDD.SERIAL_NUMBER), the starting serial number of the shipped range. This is the column most frequently targeted by searches for serial number ranges.
- TO_SERIAL_NUMBER — Defined as NVL(WSN.TO_SERIAL_NUMBER, WDD.TO_SERIAL_NUMBER), the ending serial number of the range.
- SHIPPED_QUANTITY — NVL(WSN.QUANTITY, WDD.SHIPPED_QUANTITY), the effective shipped quantity.
- LOT_NUMBER, REVISION, CUSTOMER_REQUESTED_LOT_FLAG — Inventory attributes carried from the delivery detail line.
- DD_ATTRIBUTE1–15 and DD_TP_ATTRIBUTE1–15 — The descriptive flexfield contexts and segments from WSH_DELIVERY_DETAILS, prefixed to distinguish them from other attribute sources.
Common Use Cases and Queries
This view is typically queried to report shipped item details and serial number ranges for a delivery, to reconcile outbound serialized inventory, and to feed downstream systems such as distributed shipping order interfaces. A representative query retrieving serial ranges for a delivery is:
SELECT delivery_id, delivery_detail_id, from_serial_number, to_serial_number, shipped_quantity, lot_number, revision FROM apps.wsh_dsno_item_details_v WHERE delivery_id = :p_delivery_id;SELECT delivery_detail_id, from_serial_number, to_serial_number FROM apps.wsh_dsno_item_details_v WHERE from_serial_number = :p_serial;SELECT dd_attribute1, dd_tp_attribute1, shipped_quantity FROM apps.wsh_dsno_item_details_v WHERE delivery_assignment_id = :p_assignment_id;
Because the view resolves serial numbers through WSH_SERIAL_NUMBERS with delivery detail fallback, it is the preferred source when both consolidated and detail-level serial tracking must be reported consistently across the Shipping Execution module.
-
View: WSH_DSNO_ITEM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEM_DETAILS_V, object_name:WSH_DSNO_ITEM_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEM_DETAILS_V ,
-
View: WSH_DSNO_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEM_DETAILS_V, object_name:WSH_DSNO_ITEM_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEM_DETAILS_V ,
-
View: WSH_DELIVERY_DETAILS_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_DETAILS_OB_GRP_V, object_name:WSH_DELIVERY_DETAILS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_DETAILS_OB_GRP_V ,
-
View: WSH_DELIVERY_DETAILS_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_DETAILS_OB_GRP_V, object_name:WSH_DELIVERY_DETAILS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_DETAILS_OB_GRP_V ,
-
View: WSH_OPSM_ASN_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ITEM_DETAILS_V, object_name:WSH_OPSM_ASN_ITEM_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_ITEM_DETAILS_V ,
-
View: WSHBV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_DETAILS, object_name:WSHBV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_DETAILS ,
-
View: WSHBV_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_DETAILS, object_name:WSHBV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_DETAILS ,
-
View: WSH_DEL_DTL_ASSGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DEL_DTL_ASSGN_V, object_name:WSH_DEL_DTL_ASSGN_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DEL_DTL_ASSGN_V ,
-
View: WSH_DEL_DTL_ASSGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DEL_DTL_ASSGN_V, object_name:WSH_DEL_DTL_ASSGN_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DEL_DTL_ASSGN_V ,
-
View: WSH_DLVY_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_DELIVERABLES_V, object_name:WSH_DLVY_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVY_DELIVERABLES_V ,
-
View: WSH_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLES_V, object_name:WSH_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLES_V ,
-
View: WSH_TRIP_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERABLES_V, object_name:WSH_TRIP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERABLES_V ,
-
View: WSH_TRIP_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERABLES_V, object_name:WSH_TRIP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERABLES_V ,
-
View: WSH_DLVY_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_DELIVERABLES_V, object_name:WSH_DLVY_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVY_DELIVERABLES_V ,
-
View: WSH_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLES_V, object_name:WSH_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLES_V ,
-
View: WSHFV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Details. , implementation_dba_data: APPS.WSHFV_DELIVERY_DETAILS ,
-
View: WSHFV_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Details. , implementation_dba_data: APPS.WSHFV_DELIVERY_DETAILS ,
-
View: WSH_STOP_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STOP_DELIVERABLES_V, object_name:WSH_STOP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STOP_DELIVERABLES_V ,
-
View: WSH_STOP_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STOP_DELIVERABLES_V, object_name:WSH_STOP_DELIVERABLES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STOP_DELIVERABLES_V ,