Search Results wsh_ss_containers_v
Overview
WSH_SS_CONTAINERS_V is a Shipping Execution (WSH) reporting view owned by the APPS schema and defined with VALID status in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents container and packing information associated with outbound delivery details, exposing container identifiers, seal codes, container type codes, weights, volumes, dimensions, and descriptive item attributes in a single denormalized result set. The view is intended primarily for reporting, label printing, and inbound integration queries where container-level shipment data must be retrieved without navigating the full normalized delivery detail model.
Because the view joins delivery assignments to delivery details and enriches the result with item, location, category, and hazard information, it is frequently used to answer operational questions such as which containers are assigned to a delivery, what their declared gross and net weights are, and how the container contents are categorized. Note that the view does not expose a FILL_PERCENT column; users searching for "fill_percent" will not find that attribute here. Fill percentage is derived at the application layer from volume or weight capacity versus actual loaded quantity rather than being stored on the container record itself.
Underlying Base Objects
The view is defined over the following documented base objects:
- WSH_DELIVERY_DETAILS (SYNONYM) — supplies the primary container-level columns including CONTAINER_NAME, SEAL_CODE, CONTAINER_TYPE_CODE, ITEM_DESCRIPTION, GROSS_WEIGHT, NET_WEIGHT, VOLUME, LOT_NUMBER, SERIAL and tracking numbers, and the ATTRIBUTE1 through ATTRIBUTE15 flex columns aliased as CONTAINER_ATTRIBUTEn.
- WSH_DELIVERY_ASSIGNMENTS_V (VIEW) — provides PARENT_DELIVERY_DETAIL_ID and DELIVERY_ID linkage.
- MTL_SYSTEM_ITEMS_KFV (SYNONYM) — supplies CONCATENATED_SEGMENTS (aliased ITEM_NUMBER) plus UNIT_HEIGHT, UNIT_LENGTH, UNIT_WIDTH, and DIMENSION_UOM_CODE.
- MTL_CATEGORY_SETS_VL (VIEW) — supplies CATEGORY_SET_NAME.
- PO_HAZARD_CLASSES_VL (VIEW) — supplies HAZARD_CLASS.
- HR_LOCATIONS_ALL_TL (SYNONYM) — supplies LOCATION_CODE, aliased SHIP_FROM_LOCATION.
- WSH_LOCATIONS (SYNONYM) — provides location context for the shipment.
The DISTINCT clause in the view text indicates that the join path can produce duplicate rows through assignment or category relationships, and the view suppresses those duplicates.
Key Columns
- CONTAINER_NAME, SEAL_CODE, CONTAINER_TYPE_CODE — container identity and type classification.
- ITEM_NUMBER, ITEM_DESCRIPTION — the item packed into the container.
- DELIVERY_DETAIL_ID, PARENT_DELIVERY_DETAIL_ID, DELIVERY_ID — the delivery hierarchy keys.
- GROSS_WEIGHT, NET_WEIGHT, WEIGHT_UOM_CODE — declared weights for the container.
- VOLUME, VOLUME_UOM_CODE — declared container volume; combined with ITEM dimensions, these are the inputs from which fill percentage is typically computed externally.
- UNIT_HEIGHT, UNIT_LENGTH, UNIT_WIDTH, DIMENSION_UOM_CODE — item dimension attributes from the item master.
- LOT_NUMBER, REVISION, FROM_SERIAL_NUMBER, TO_SERIAL_NUMBER — lot and serial traceability.
- SHIP_FROM_LOCATION, DELIVER_TO_LOCATION_ID, ORG_ID, CUSTOMER_ID — organizational and location context.
- CATEGORY_SET_NAME, HAZARD_CLASS — classification and dangerous-goods information.
- CONTAINER_ATTRIBUTE1 … CONTAINER_ATTRIBUTE15 — descriptive flexfield columns.
Common Use Cases and Queries
Typical uses include container label generation, freight documentation, load planning reports, and inbound extracts into a warehouse or transportation system. A representative query filtering by delivery and calculating an approximate fill ratio from volume follows:
SELECT container_name, item_number, gross_weight, net_weight, volume, volume_uom_code, unit_length, unit_width, unit_height FROM apps.wsh_ss_containers_v WHERE delivery_id = :p_delivery_id ORDER BY container_name;SELECT container_name, item_number, lot_number, from_serial_number, to_serial_number, seal_code FROM apps.wsh_ss_containers_v WHERE org_id = :p_org AND ship_from_location = :p_loc;SELECT container_name, item_number, volume, hazard_class, category_set_name FROM apps.wsh_ss_containers_v WHERE customer_id = :p_customer AND container_type_code = :p_type;
Because FILL_PERCENT is not a column in this view, any report requiring fill percentage must derive it — for example, by comparing packed volume against the container item's unit dimensions or a capacity attribute — rather than selecting it directly from WSH_SS_CONTAINERS_V.
-
View: WSH_SS_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_CONTAINERS_V, object_name:WSH_SS_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_CONTAINERS_V ,
-
View: WSH_SS_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_CONTAINERS_V, object_name:WSH_SS_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_CONTAINERS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.WSH_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WSH_LOCATIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.WSH_SS_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_CONTAINERS_V, object_name:WSH_SS_CONTAINERS_V, status:VALID,
-
VIEW: APPS.WSH_SS_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_CONTAINERS_V, object_name:WSH_SS_CONTAINERS_V, status:VALID,
-
VIEW: APPS.MTL_CATEGORY_SETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CATEGORY_SETS_VL, object_name:MTL_CATEGORY_SETS_VL, status:VALID,
-
SYNONYM: APPS.WSH_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WSH_LOCATIONS, status:VALID,
-
VIEW: APPS.PO_HAZARD_CLASSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HAZARD_CLASSES_VL, object_name:PO_HAZARD_CLASSES_VL, status:VALID,
-
View: WSH_ITM_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_CONTAINERS_V, object_name:WSH_ITM_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_CONTAINERS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_CONTAINERS_V ,
-
VIEW: APPS.MTL_CATEGORY_SETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CATEGORY_SETS_VL, object_name:MTL_CATEGORY_SETS_VL, status:VALID,
-
VIEW: APPS.PO_HAZARD_CLASSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HAZARD_CLASSES_VL, object_name:PO_HAZARD_CLASSES_VL, status:VALID,
-
View: WSH_ITM_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_CONTAINERS_V, object_name:WSH_ITM_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_CONTAINERS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_CONTAINERS_V ,
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, 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,
-
VIEW: APPS.WSH_DELIVERY_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:WSH_DELIVERY_ASSIGNMENTS_V, status:VALID,
-
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,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
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 - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
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. ,
-
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 - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,