Search Results dimension_uom_code
Overview
The APPS.WSH_STND_CONTAINERS_V view is a Shipping Execution (WSH) reporting object that exposes standardized container and delivery detail information for packed shipments in Oracle E-Business Suite 12.1.1 and 12.2.2. It is defined as a database view owned by the APPS schema and carries a VALID status. The view consolidates container-level attributes—such as container name, seal code, container type, weights, volumes, and tracking numbers—with item and dimensional data sourced from inventory and shipping tables. Its primary role is to provide a denormalized, read-only projection that supports container manifesting, packing slip reporting, freight documentation, and integration extracts without requiring consumers to join the underlying transaction tables directly.
The view is particularly relevant when dimension and unit-of-measure attributes are required, since it exposes DIMENSION_UOM_CODE alongside UNIT_HEIGHT, UNIT_LENGTH, and UNIT_WIDTH. Users searching for dimension_uom_code can retrieve the unit of measure in which container dimensions are expressed directly from this view.
Underlying Base Objects
The documented base objects underlying WSH_STND_CONTAINERS_V span several EBS modules:
- WSH_DELIVERY_DETAILS (synonym) and WSH_DELIVERY_ASSIGNMENTS_V (view) — supply the core container and delivery detail rows, including weights, volumes, tracking numbers, and the parent/child delivery detail hierarchy.
- MTL_SYSTEM_ITEMS_KFV (synonym) — provides the concatenated item number (CONCATENATED_SEGMENTS) used in the ITEM_NUMBER derivation.
- FND_ID_FLEX_STRUCTURES_VL (view) — supplies the segment delimiter used to trim the concatenated item number when a client identifier is present.
- HR_LOCATIONS_ALL_TL (synonym) and WSH_LOCATIONS (synonym) — resolve the ship-from location code.
- MTL_CATEGORY_SETS_VL (view) — provides the category set name.
- PO_HAZARD_CLASSES_VL (view) — supplies the hazard class for hazardous materials handling.
The ITEM_NUMBER column applies a DECODE against CLIENT_ID and uses SUBSTR/INSTR logic with the concatenated segment delimiter, reflecting the flexible key flexfield structure of the item identifier.
Key Columns
The view exposes container identity, physical, and logistics attributes:
- CONTAINER_NAME, SEAL_CODE, CONTAINER_TYPE_CODE — identify and classify the container.
- ITEM_NUMBER, ITEM_DESCRIPTION — the packed item reference and description.
- DELIVERY_DETAIL_ID, PARENT_DELIVERY_DETAIL_ID, DELIVERY_ID — relational keys linking container to delivery and parent detail.
- GROSS_WEIGHT, NET_WEIGHT, WEIGHT_UOM_CODE — weight measures and their unit of measure.
- VOLUME, VOLUME_UOM_CODE — volume measure and unit of measure.
- UNIT_HEIGHT, UNIT_LENGTH, UNIT_WIDTH, DIMENSION_UOM_CODE — physical dimensions and the unit of measure in which they are expressed.
- TRACKING_NUMBER, DATE_SCHEDULED, SHIP_METHOD_CODE, FREIGHT_TERMS_CODE, FOB_CODE — shipment logistics attributes.
- SHIP_FROM_LOCATION, CATEGORY_SET_NAME, HAZARD_CLASS — location, categorization, and hazard data.
- FILL_PERCENT, FILLED_VOLUME — container utilization metrics.
- CONTAINER_ATTRIBUTE_CATEGORY and CONTAINER_ATTRIBUTE1 through CONTAINER_ATTRIBUTE15 — descriptive flexfield columns.
Common Use Cases and Queries
Typical scenarios include container manifesting reports, packing slip generation, dimensional weight calculations, and shipping integration extracts. A representative query retrieving container dimensions and their UOM:
SELECT container_name, item_number, unit_height, unit_length, unit_width, dimension_uom_code, gross_weight, weight_uom_code FROM wsh_stnd_containers_v WHERE delivery_id = :p_delivery_id;SELECT container_name, tracking_number, ship_from_location, hazard_class FROM wsh_stnd_containers_v WHERE track_number IS NOT NULL;SELECT container_type_code, fill_percent, filled_volume, volume_uom_code FROM wsh_stnd_containers_v WHERE fill_percent < 100;
Because the view joins several module objects, queries should filter on indexed keys such as DELIVERY_ID or DELIVERY_DETAIL_ID to avoid full scans. All access is read-only, and the view is suitable for both concurrent program reporting and external integration interfaces.
-
View: WSH_STND_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_CONTAINERS_V, object_name:WSH_STND_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_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 ,
-
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_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: 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 ,