Search Results packed_quantity
Overview
WSHBV_CONTAINERS is an APPS-owned, read-only database view in the Oracle E-Business Suite WSH (Shipping Execution) product. It is a Business View (hence the "BV" prefix) designed to expose container-level packing information for deliveries. In Oracle Shipping Execution, a container is a logical or physical unit used to group packed items—such as a carton, pallet, or LPN—that has been associated with a delivery detail of type container. WSHBV_CONTAINERS presents one row per container, combining attributes from the container's delivery detail record with its parent delivery assignment, item master, and locator information.
The view is frequently referenced in shipping reports, packing lists, and integration extracts where consumers need to query packed contents and container hierarchies without navigating the full WSH_DELIVERY_DETAILS model. It is important to note that the view is defined WITH READ ONLY, so it is intended purely for selection; inserts, updates, and deletes are not supported.
Underlying Base Objects
WSHBV_CONTAINERS is defined over four documented base objects, all referenced through APPS synonyms in the ETRM 12.2.2 metadata:
- WSH_DELIVERY_DETAILS (alias WDD) — the driving table, filtered by
CONTAINER_FLAG = 'Y'andNVL(LINE_DIRECTION, 'O') IN ('O','IO'). - WSH_DELIVERY_ASSIGNMENTS (alias WDA) — joined on
DELIVERY_DETAIL_IDto obtain the parent delivery and container linkage. - MTL_SYSTEM_ITEMS (alias MSI) — outer-joined on inventory item and organization to supply the container item description.
- MTL_ITEM_LOCATIONS (alias MIL) — outer-joined on locator and organization to supply locator context.
A security predicate (_SEC:WDD.ORGANIZATION_ID IS NOT NULL) and two key flexfield descriptors (_KF:INV:MTLL:MIL and _KF:INV:MSTK:MSI) are embedded in the view text, enforcing organization-level security and exposing descriptive flexfield contexts for the locator and item segments.
Key Columns
The view returns 27 columns. Significant columns include:
- CONTAINER_ID — derived from
WDD.DELIVERY_DETAIL_ID; the unique identifier of the container record. - DELIVERY_ID — the parent delivery to which the container belongs.
- PACKED_QUANTITY — aliased from
WDD.REQUESTED_QUANTITY; the quantity packed into the container. This is the column most commonly searched for and is central to packing verification and manifest reporting. - PARENT_CONTAINER_ID — from
WDA.PARENT_DELIVERY_DETAIL_ID; establishes container nesting (for example, item inside carton inside pallet). - VOLUME, VOLUME_UOM_CODE, NET_WEIGHT, GROSS_WEIGHT, WEIGHT_UOM_CODE, FILL_PERCENT — physical characteristics used in load planning and freight rating.
- CONTAINER_NAME, CONTAINER_TYPE_CODE, CONTAINER_DESCRIPTION — human-readable identification of the container.
- ORGANIZATION_ID, INVENTORY_ITEM_ID — inventory and item context; also drive the secured flexfield columns referenced as
_KF:INV_LOCATOR_IDand_KF:INV_ITEM_NUMBER. - SUBINVENTORY, LOCATOR_ID, REVISION, LOT_NUMBER, SERIAL_NUMBER, MASTER_SERIAL_NUMBER — material control attributes for the packed content.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include packing list generation, container hierarchy reporting, and integration extracts into WMS or freight systems. A common query retrieving packed quantities by delivery:
SELECT container_id, delivery_id, packed_quantity, container_name, fill_percent FROM apps.wshbv_containers WHERE delivery_id = :p_delivery_id;SELECT container_id, parent_container_id, container_type_code FROM apps.wshbv_containers WHERE organization_id = :p_org_id ORDER BY parent_container_id;SELECT c.container_id, c.packed_quantity, c.lot_number, c.serial_number FROM apps.wshbv_containers c WHERE c.container_id = :p_container_id;
Because the view exposes PACKED_QUANTITY directly from REQUESTED_QUANTITY, it is a convenient reporting layer for validating that packed contents reconcile with shipped quantities, without requiring joins back to WSH_DELIVERY_DETAILS. Organizations should apply the appropriate ORG_ID bind to respect the view's embedded security predicate.
-
View: WSHBV_CONTAINERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_CONTAINERS, object_name:WSHBV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_CONTAINERS ,
-
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: WSHBV_CONTAINER_CONTENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_CONTAINER_CONTENTS, object_name:WSHBV_CONTAINER_CONTENTS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_CONTAINER_CONTENTS ,
-
View: WSHBV_CONTAINER_CONTENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_CONTAINER_CONTENTS, object_name:WSHBV_CONTAINER_CONTENTS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_CONTAINER_CONTENTS ,
-
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: WSHFV_CONTAINER_CONTENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_CONTAINER_CONTENTS, object_name:WSHFV_CONTAINER_CONTENTS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Contents of the Containers. , implementation_dba_data: APPS.WSHFV_CONTAINER_CONTENTS ,
-
View: WSHFV_CONTAINER_CONTENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_CONTAINER_CONTENTS, object_name:WSHFV_CONTAINER_CONTENTS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Contents of the Containers. , implementation_dba_data: APPS.WSHFV_CONTAINER_CONTENTS ,
-
View: WSHBV_CONTAINERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_CONTAINERS, object_name:WSHBV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_CONTAINERS ,
-
View: WSHFV_CONTAINERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_CONTAINERS, object_name:WSHFV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Containers , implementation_dba_data: APPS.WSHFV_CONTAINERS ,
-
View: WSHFV_CONTAINERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_CONTAINERS, object_name:WSHFV_CONTAINERS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Containers , implementation_dba_data: APPS.WSHFV_CONTAINERS ,
-
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 ,
-
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: WSH_DSNO_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_V, object_name:WSH_DSNO_ITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_V ,
-
View: WSH_DSNO_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_V, object_name:WSH_DSNO_ITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_V ,