Search Results item_country_of_origin
Overview
APPS.WSH_POD_CARGO_V is a shipping execution view in Oracle E-Business Suite, owned by the APPS schema and registered under FND Design Data as WSH.WSH_POD_CARGO_V. It presents a consolidated, denormalized picture of cargo associated with outbound deliveries in the Warehouse Management and Shipping Execution (WSH) module. The view bridges container-level information (containers, seals, gross and net weights, volumes) with item-level shipment detail, including shipped quantities, delivered quantities, and units of measure. Its status is VALID at both the 12.1.1 and 12.2.2 releases, though the exact column set may vary slightly between releases; the 12.2.2 metadata is the reference used here.
Because it exposes a single, flat row containing both container and item attributes, the view is most commonly used for proof-of-delivery (POD) reporting, carrier documentation, and packing list generation. The naming prefix WSH_POD indicates its association with proof-of-delivery and cargo reporting rather than transactional workflow. The user's search term, item_shipped_quantity, maps directly to the ITEM_SHIPPED_QUANTITY column, one of the primary quantitative measures exposed by the view.
Underlying Base Objects
The view is defined over five WSH synonyms:
- WSH_NEW_DELIVERIES — the delivery header table, supplying delivery identity and BILL_OF_LADING_NUMBER, which is derived from the delivery/leg attributes (e.g., the waybill or bill of lading).
- WSH_DELIVERY_ASSIGNMENTS — links delivery details to their parent delivery, establishing the join between delivery header and detail rows.
- WSH_DELIVERY_DETAILS — the delivery line/detail table, providing item-level attributes such as shipped quantity, delivered quantity, unit of measure, serial number, and item-level tolerances.
- WSH_DELIVERY_LEGS — the delivery leg table, contributing routing/leg information, and typically the source of the bill of lading number when the leg is a shipment leg.
- WSH_DOCUMENT_INSTANCES — holds document instance data such as container/cargo identifiers, container numbers, seal numbers, and container instance IDs.
The primary key exposed by the view is CARGO_PK, a concatenated VARCHAR2(120) surrogate key derived from the underlying container and item identifiers. CONTAINER_INSTANCE_ID and ITEM_DETAIL_ID provide the natural foreign-key references back to the container instance and delivery detail records respectively.
Key Columns
The view exposes approximately thirty-two columns organized into container-level and item-level groups.
- CARGO_PK — synthetic key identifying the cargo row.
- CONTAINER_INSTANCE_ID, ITEM_CONTAINER_ID — identifiers linking to container instances.
- BILL_OF_LADING_NUMBER, DELIVERY_ID, CONTAINER_NUMBER, SEAL_NUMBER, SERIAL_NUMBER — shipment and container identification.
- CONTAINER_TYPE, CONTAINER_DESCRIPTION, CONTAINER_QUANTITY, CONTAINER_QUANTITY_UOM, CONTAINER_GROSS_WEIGHT, CONTAINER_NET_WEIGHT, CONTAINER_UOM_WEIGHT_CODE, CONTAINER_VOLUME, CONTAINER_UOM_VOLUME_CODE — container physical attributes and measures.
- ITEM_DETAIL_ID — foreign key to the delivery detail.
- ITEM_DESCRIPTION, ITEM_HAZARD_CODE, ITEM_COUNTRY_OF_ORIGIN, ITEM_CLASSIFICATION — item attributes relevant to shipping, customs, and dangerous-goods handling.
- ITEM_SHIP_TOLERANCE_ABOVE, ITEM_SHIP_TOLERANCE_BELOW — over/under shipment tolerances.
- ITEM_SHIPPED_QUANTITY, ITEM_SHIP_QUANTITY_UOM — the quantity actually shipped and its unit of measure; this is the column returned by the user's search term.
- ITEM_DELIVERED_QUANTITY — the quantity confirmed as delivered, distinct from shipped quantity.
- ITEM_SERIAL_NUMBER — serialized item tracking at line level.
- ITEM_NET_WEIGHT, ITEM_WEIGHT_UOM_CODE, ITEM_VOLUME, ITEM_VOLUME_UOM — item-level weight and volume measures.
- ITEM_CUST_PO_NUMBER — the customer's purchase order reference for the item.
Common Use Cases and Queries
Typical uses include POD reconciliation (comparing ITEM_SHIPPED_QUANTITY against ITEM_DELIVERED_QUANTITY), packing list and bill-of-lading reporting, and integration feeds to carriers or third-party logistics systems.
Example 1 — retrieve shipped quantity for a delivery:
SELECT delivery_id, item_detail_id, item_shipped_quantity, item_ship_quantity_uom FROM apps.wsh_pod_cargo_v WHERE delivery_id = :p_delivery_id;
Example 2 — container and item summary by bill of lading:
SELECT bill_of_lading_number, container_number, item_description,
item_shipped_quantity, item_delivered_quantity
FROM apps.wsh_pod_cargo_v
WHERE bill_of_lading_number = :p_bol;
Example 3 — shipment variance analysis:
SELECT cargo_pk, item_shipped_quantity - item_delivered_quantity AS variance FROM apps.wsh_pod_cargo_v WHERE item_shipped_quantity <> item_delivered_quantity;
Because the view draws on multiple WSH tables, queries are usually restricted by DELIVERY_ID or BILL_OF_LADING_NUMBER to limit scan cost. Data is presented for reporting and integration; direct DML against the view is not supported.
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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: APPS.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,
-
VIEW: APPS.WSH_LOAD_TENDER_CARGO_V
12.1.1
-
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: APPS.WSH_POD_CARGO_V
12.1.1
-
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: APPS.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,
-
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: APPS.WSH_LOAD_TENDER_CARGO_V
12.2.2
-
VIEW: APPS.WSH_POD_CARGO_V
12.2.2
-
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. ,