Search Results wsh_dsno_packed_quantity_v
Overview
The view WSH_DSNO_PACKED_QUANTITY_V is an APPS-owned database view within the Oracle E-Business Suite Shipping Execution (WSH) module. Its name reflects its purpose: it exposes the "packed quantity" associated with outbound delivery details, aggregated per delivery, container, inventory item, and source document reference. The "DSNO" segment of the name associates it with delivery/shipping number and outbound processing logic used across WSH reporting and integration. The view is documented with a status of VALID in both Oracle EBS 12.1.1 and 12.2.2 and is defined in the APPS schema.
As a reporting and integration object, the view provides a normalized, pre-aggregated representation of shipped quantities for delivery details that are not themselves containers. This makes it suitable for downstream queries, concurrent programs, and interface extracts that require authoritative packed quantity values without reconstructing the aggregation logic from base tables.
Underlying Base Objects
According to the documented ETRM metadata, the view is defined over the following base objects:
- WSH_DELIVERY_ASSIGNMENTS (referenced in the view text; the ETRM metadata lists the related view WSH_DELIVERY_ASSIGNMENTS_V) — supplies the delivery-to-detail assignment and the parent/container relationship via PARENT_DELIVERY_DETAIL_ID.
- WSH_DELIVERY_DETAILS (SYNONYM) — supplies the inventory item, source document references, and shipped quantity values.
The join is driven by WDA.DELIVERY_DETAIL_ID = WDD.DELIVERY_DETAIL_ID. The view filters to rows where WDD.CONTAINER_FLAG = 'N' and NVL(WDD.SHIPPED_QUANTITY, 0) > 0, excluding container records and zero-quantity lines. Results are then grouped by delivery, parent delivery detail, item, and source identifiers.
Key Columns
- DELIVERY_ID — identifier of the delivery header to which the assignment belongs.
- CONTAINER_ID — the parent delivery detail identifier representing the container (NULL when the detail is not packed into a container).
- INVENTORY_ITEM_ID — inventory item for the shipped detail.
- SOURCE_CODE — code identifying the originating document type (for example, order or transfer).
- SOURCE_HEADER_ID / SOURCE_LINE_ID — header and line identifiers of the source document.
- PACKED_QUANTITY — SUM of SHIPPED_QUANTITY across qualifying details, returning 0 when CONTAINER_ID is NULL.
- PACKED_QUANTITY2 — the same aggregation applied to SHIPPED_QUANTITY2, the secondary unit of measure.
Common Use Cases and Queries
Typical scenarios include reporting packed quantities per delivery and item, reconciling shipped versus packed quantities, and extracting data for shipping documentation or interfaces. A representative query:
- Retrieve packed totals for a delivery:
SELECT DELIVERY_ID, INVENTORY_ITEM_ID, SOURCE_CODE, PACKED_QUANTITY, PACKED_QUANTITY2 FROM APPS.WSH_DSNO_PACKED_QUANTITY_V WHERE DELIVERY_ID = :p_delivery_id; - Aggregate packed quantity by item across deliveries:
SELECT INVENTORY_ITEM_ID, SUM(PACKED_QUANTITY) FROM APPS.WSH_DSNO_PACKED_QUANTITY_V GROUP BY INVENTORY_ITEM_ID; - Reconcile against source lines: join on SOURCE_HEADER_ID and SOURCE_LINE_ID to compare ordered versus packed quantities.
Because the view applies aggregation and filtering internally, consumers should not re-apply container or zero-quantity filters, and should treat PACKED_QUANTITY as already summarized at the documented grouping grain.
-
View: WSH_DSNO_PACKED_QUANTITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_PACKED_QUANTITY_V, object_name:WSH_DSNO_PACKED_QUANTITY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_PACKED_QUANTITY_V ,
-
View: WSH_DSNO_PACKED_QUANTITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_PACKED_QUANTITY_V, object_name:WSH_DSNO_PACKED_QUANTITY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_PACKED_QUANTITY_V ,
-
VIEW: APPS.CLN_XML_ITEMS2_V
12.2.2
-
VIEW: APPS.CLN_XML_ITEMS2_V
12.1.1
-
VIEW: APPS.CLN_XML_ITEMS_V
12.2.2
-
VIEW: APPS.CLN_XML_ITEMS_V
12.1.1
-
VIEW: APPS.WSH_DSNO_PACKED_QUANTITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_PACKED_QUANTITY_V, object_name:WSH_DSNO_PACKED_QUANTITY_V, status:VALID,
-
VIEW: APPS.WSH_DSNO_PACKED_QUANTITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_PACKED_QUANTITY_V, object_name:WSH_DSNO_PACKED_QUANTITY_V, status:VALID,
-
View: CLN_XML_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS_V, object_name:CLN_XML_ITEMS_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPITEM items section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_ITEMS_V ,
-
View: CLN_XML_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS_V, object_name:CLN_XML_ITEMS_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPITEM items section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_ITEMS_V ,
-
View: CLN_XML_ITEMS2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS2_V, object_name:CLN_XML_ITEMS2_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPITEM items section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_ITEMS2_V ,
-
VIEW: APPS.WSH_DSNO_ITEMS_COMM_V
12.2.2
-
VIEW: APPS.WSH_DSNO_ITEMS_COMM_V
12.1.1
-
View: CLN_XML_ITEMS2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS2_V, object_name:CLN_XML_ITEMS2_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for SHIPITEM items section in OAG SHOW_SHIPMENT_005 XML payload , implementation_dba_data: APPS.CLN_XML_ITEMS2_V ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
View: WSH_DSNO_ITEMS_COMM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_COMM_V, object_name:WSH_DSNO_ITEMS_COMM_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_COMM_V ,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CLN_XML_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS_V, object_name:CLN_XML_ITEMS_V, status:VALID,
-
VIEW: APPS.CLN_XML_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS_V, object_name:CLN_XML_ITEMS_V, status:VALID,
-
View: WSH_DSNO_ITEMS_COMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_COMM_V, object_name:WSH_DSNO_ITEMS_COMM_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_COMM_V ,
-
VIEW: APPS.WSH_DSNO_ITEMS_COMM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_COMM_V, object_name:WSH_DSNO_ITEMS_COMM_V, status:VALID,
-
VIEW: APPS.WSH_DSNO_ITEMS_COMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_COMM_V, object_name:WSH_DSNO_ITEMS_COMM_V, status:VALID,
-
VIEW: APPS.CLN_XML_ITEMS2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS2_V, object_name:CLN_XML_ITEMS2_V, status:VALID,
-
VIEW: APPS.CLN_XML_ITEMS2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_XML_ITEMS2_V, object_name:CLN_XML_ITEMS2_V, status:VALID,
-
VIEW: APPS.WSH_DELIVERY_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:WSH_DELIVERY_ASSIGNMENTS_V, status:VALID,
-
VIEW: APPS.WSH_DELIVERY_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_ASSIGNMENTS_V, object_name:WSH_DELIVERY_ASSIGNMENTS_V, status:VALID,
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
SYNONYM: APPS.WSH_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WSH_DELIVERY_DETAILS, status:VALID,
-
SYNONYM: APPS.WSH_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WSH_DELIVERY_DETAILS, status:VALID,
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,