Search Results net_weight
Overview
APPS.WSH_LOAD_TENDER_CARGO_V is a Shipping Execution (WSH) view in Oracle E-Business Suite 12.1.1 and 12.2.2 that presents delivery cargo information in a denormalized, container-oriented structure suitable for load tendering and shipment reporting. The view flattens the relationship between a delivery, its assigned container instances, and the individual items packed within those containers into a single row per cargo combination. This design supports outbound integration with transportation management systems, carrier load-tender messages, and ad hoc reporting where the container-to-item hierarchy must be exposed without navigating the underlying assignment tables directly. The view is owned by the APPS schema and holds VALID status in the ETRM metadata. A distinctive feature is the computed CARGO_PK column, which concatenates the delivery identifier, container name, and item delivery detail identifier to produce a synthetic primary key for cargo records. The user search term item_serial_number maps directly to a column exposed by this view, making it a common entry point for serial-number-driven shipment queries.
Underlying Base Objects
The view is defined over three documented base objects, all referenced as synonyms in the APPS schema:
- WSH_NEW_DELIVERIES (WND) — supplies the delivery header, keyed by
DELIVERY_ID. - WSH_DELIVERY_ASSIGNMENTS (WDA) — links the delivery to its delivery details, joining
DELIVERY_IDandDELIVERY_DETAIL_ID. - WSH_DELIVERY_DETAILS (WDD1 and WDD2) — the same table is joined twice: once as WDD1 representing the container-level detail, and once as WDD2 representing the item-level detail.
Both joins to WSH_DELIVERY_DETAILS are outer joins ((+)), so deliveries without an assigned container or item detail still appear in the result set. The container alias WDD1 provides container attributes such as CONTAINER_NAME, SEAL_CODE, SERIAL_NUMBER, and weight/volume figures, while WDD2 provides item attributes including SERIAL_NUMBER (aliased as ITEM_SERIAL_NUMBER), ITEM_DESCRIPTION, hazard classification, and shipped/delivered quantities.
Key Columns
- CARGO_PK — synthetic key formed from delivery ID, container name, and item delivery detail ID.
- DELIVERY_ID — the delivery header identifier.
- CONTAINER_INSTANCE_ID / CONTAINER_NUMBER — the container's delivery detail ID and its human-readable name.
- SEAL_NUMBER / SERIAL_NUMBER — seal code and the container's own serial number.
- CONTAINER_TYPE / CONTAINER_DESCRIPTION / CONTAINER_QUANTITY / CONTAINER_QUANTITY_UOM — container classification, description, and shipped quantity with unit of measure.
- CONTAINER_GROSS_WEIGHT / CONTAINER_NET_WEIGHT / CONTAINER_UOM_WEIGHT_CODE — container weight measures and their UOM.
- ITEM_DETAIL_ID / ITEM_DESCRIPTION — the item-level delivery detail identifier and description.
- ITEM_SERIAL_NUMBER — the serial number of the packed item; this is the column returned by the user's
item_serial_numbersearch. - ITEM_SHIPPED_QUANTITY / ITEM_DELIVERED_QUANTITY / ITEM_SHIP_QUANTITY_UOM — item quantities and UOM.
- ITEM_HAZARD_CODE / ITEM_CLASSIFICATION / ITEM_COUNTRY_OF_ORIGIN — regulatory and classification attributes.
- ITEM_CUST_PO_NUMBER — customer purchase order reference at item level.
Common Use Cases and Queries
The view is typically queried to report container contents, trace serially controlled items within shipments, and feed load-tender interfaces. A representative query retrieving items by serial number is:
SELECT cargo_pk, delivery_id, container_number, item_detail_id, item_serial_number, item_shipped_quantity FROM wsh_load_tender_cargo_v WHERE item_serial_number = :serial_number;SELECT delivery_id, container_number, item_description, item_shipped_quantity FROM wsh_load_tender_cargo_v WHERE delivery_id = :delivery_id ORDER BY container_number;SELECT container_number, item_hazard_code, item_country_of_origin FROM wsh_load_tender_cargo_v WHERE delivery_id = :delivery_id AND item_hazard_code IS NOT NULL;
Because the view applies outer joins, queries should account for NULL container or item columns when a delivery has not yet been fully packed. Filtering on ITEM_SERIAL_NUMBER is the most direct way to locate a specific serially controlled unit across all deliveries and containers.
-
View: WSH_LOAD_TENDER_CARGO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_LOAD_TENDER_CARGO_V, object_name:WSH_LOAD_TENDER_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_LOAD_TENDER_CARGO_V ,
-
View: WSH_POD_CARGO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_POD_CARGO_V, object_name:WSH_POD_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_POD_CARGO_V ,
-
View: WSH_POD_CARGO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_POD_CARGO_V, object_name:WSH_POD_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_POD_CARGO_V ,
-
View: WSHBV_DELIVERIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERIES, object_name:WSHBV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERIES ,
-
View: WSH_LOAD_TENDER_CARGO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_LOAD_TENDER_CARGO_V, object_name:WSH_LOAD_TENDER_CARGO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_LOAD_TENDER_CARGO_V ,
-
View: WSHBV_DELIVERIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERIES, object_name:WSHBV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERIES ,
-
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_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPMENT_V ,
-
View: WSH_STND_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_SHIPMENT_V, object_name:WSH_STND_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_SHIPMENT_V ,
-
View: WSH_SS_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPMENT_V ,
-
View: WSH_DELIVERY_LEGS_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_LEGS_OB_GRP_V, object_name:WSH_DELIVERY_LEGS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_LEGS_OB_GRP_V ,
-
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_ITM_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_SHIPMENT_V ,
-
View: WSH_DELIVERY_LEGS_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_LEGS_OB_GRP_V, object_name:WSH_DELIVERY_LEGS_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_LEGS_OB_GRP_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_ITM_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_SHIPMENT_V ,
-
View: WSH_SS_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPITEMS_V, object_name:WSH_SS_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPITEMS_V ,
-
View: WSHBV_DELIVERY_LEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_LEGS, object_name:WSHBV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_LEGS ,
-
View: WSH_NEW_DELIVERIES_OB_GRP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_OB_GRP_V, object_name:WSH_NEW_DELIVERIES_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_DELIVERIES_OB_GRP_V ,
-
View: WSH_NEW_DELIVERIES_OB_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_OB_GRP_V, object_name:WSH_NEW_DELIVERIES_OB_GRP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_DELIVERIES_OB_GRP_V ,
-
View: WSHBV_DELIVERY_LEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHBV_DELIVERY_LEGS, object_name:WSHBV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSHBV_DELIVERY_LEGS ,
-
View: WSH_SS_SHIPITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPITEMS_V, object_name:WSH_SS_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPITEMS_V ,
-
View: WSH_STND_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_SHIPITEMS_V, object_name:WSH_STND_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_SHIPITEMS_V ,
-
View: WSH_ITM_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPITEMS_V, object_name:WSH_ITM_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_SHIPITEMS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_SHIPITEMS_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 ,
-
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_ITM_SHIPITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPITEMS_V, object_name:WSH_ITM_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_SHIPITEMS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_SHIPITEMS_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: 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: 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: WSHFV_DELIVERY_LEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_LEGS, object_name:WSHFV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Legs , implementation_dba_data: APPS.WSHFV_DELIVERY_LEGS ,
-
View: WSHFV_DELIVERY_LEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_LEGS, object_name:WSHFV_DELIVERY_LEGS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Legs , implementation_dba_data: APPS.WSHFV_DELIVERY_LEGS ,
-
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: 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: 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_DELIVERIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERIES, object_name:WSHFV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Deliveries. , implementation_dba_data: APPS.WSHFV_DELIVERIES ,
-
View: WSHFV_DELIVERIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERIES, object_name:WSHFV_DELIVERIES, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Deliveries. , implementation_dba_data: APPS.WSHFV_DELIVERIES ,
-
View: WSH_BOLS_DB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_BOLS_DB_V, object_name:WSH_BOLS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_BOLS_DB_V ,
-
View: WSH_BOLS_DB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_BOLS_DB_V, object_name:WSH_BOLS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_BOLS_DB_V ,
-
View: WSH_OPSM_ASN_ITEMS_COMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ITEMS_COMM_V, object_name:WSH_OPSM_ASN_ITEMS_COMM_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_ITEMS_COMM_V ,
-
View: WSH_DLVB_DLVY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_DLVY_V, object_name:WSH_DLVB_DLVY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVB_DLVY_V ,
-
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_TRIP_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERIES_V, object_name:WSH_TRIP_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERIES_V ,
-
View: WSH_TRIP_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_TRIP_DELIVERIES_V, object_name:WSH_TRIP_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_TRIP_DELIVERIES_V ,
-
View: WSH_NEW_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_V, object_name:WSH_NEW_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_DELIVERIES_V ,
-
View: WSH_BOLS_RD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_BOLS_RD_V, object_name:WSH_BOLS_RD_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_BOLS_RD_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: WSH_DLVB_DLVY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_DLVY_V, object_name:WSH_DLVB_DLVY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVB_DLVY_V ,
-
View: WSH_NEW_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_NEW_DELIVERIES_V, object_name:WSH_NEW_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_NEW_DELIVERIES_V ,
-
View: WSH_BOLS_RD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_BOLS_RD_V, object_name:WSH_BOLS_RD_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_BOLS_RD_V ,