Search Results wsh_new_deliveries
Overview
WSH.WSH_NEW_DELIVERIES is the central master table for delivery header information in the Oracle E-Business Suite Shipping Execution module (WSH). In both 12.1.1 and 12.2.2, this table stores one row per delivery, capturing the full lifecycle of an outbound shipment — from planned pickup through confirmed dispatch, advance ship notice (ASN) transmission, and final drop-off. It is the anchor point for the entire delivery data model, holding header-level attributes that govern freight terms, carrier selection, weight and volume, routing, workflow progress, and Transportation Management (TMS) integration.
The table carries 157 documented columns against primary key WSH_DELIVERIES_PK (DELIVERY_ID), and unique index WSH_NEW_DELIVERIES_U2 (NAME) establishes the delivery name as the business-key candidate. From a Data Vault modeling perspective, the heuristic classification mined from the foreign-key structure is hub: WSH_NEW_DELIVERIES is referenced by many dependent tables via DELIVERY_ID, making it a natural business-key anchor around which link and satellite constructs would be built. This classification is a modeling suggestion rather than a physical implementation.
Key Information Stored
The most significant columns include:
- DELIVERY_ID — numeric surrogate primary key, system-generated and referenced by every child table.
- NAME — the user-visible delivery number; enforced as a unique business key via WSH_NEW_DELIVERIES_U2.
- STATUS_CODE — current delivery lifecycle state (open, picked, shipped, confirmed, closed).
- PLANNED_FLAG / CONFIRM_DATE / DELIVERED_DATE — planning status and the confirmation and delivery milestone timestamps.
- CUSTOMER_ID / PARTY_ID — ship-to customer and the associated trading partner party; PARTY_ID has a documented foreign key to HZ_PARTIES.
- INTMED_SHIP_TO_LOCATION_ID / ULTIMATE_DROPOFF_LOCATION_ID / INITIAL_PICKUP_LOCATION_ID — intermediate, drop-off, and pickup locations.
- CARRIER_ID / SHIP_METHOD_CODE / FREIGHT_TERMS_CODE / SERVICE_LEVEL / MODE_OF_TRANSPORT — carrier and freight characteristics.
- WAYBILL / ASN_STATUS_CODE / ASN_DATE_SENT / ASN_SEQ_NUMBER — carrier waybill and ASN transmission state.
- GROSS_WEIGHT / NET_WEIGHT / VOLUME / WEIGHT_UOM_CODE / VOLUME_UOM_CODE — shipment measurement attributes.
- ORGANIZATION_ID — owning shipping organization (multi-org key).
- SHIPMENT_DIRECTION — distinguishes outbound from inbound or internal deliveries.
- DELIVERY_TYPE / SOURCE_HEADER_ID — classification and originating source document.
- TP_ATTRIBUTE1–15, ATTRIBUTE1–15, GLOBAL_ATTRIBUTE1–20 — flexfield and descriptive attribute segments.
- CREATION_DATE / CREATED_BY / LAST_UPDATE_DATE / LAST_UPDATED_BY — standard WHO audit columns.
Common Use Cases and Queries
Typical reporting scenarios include open-delivery dashboards, on-time shipment analysis, ASN reconciliation, and carrier performance measurement. A common query lists deliveries by status and customer:
SELECT d.delivery_id, d.name, d.status_code, d.confirm_date, c.customer_name FROM wsh_new_deliveries d, ra_customers c WHERE d.customer_id = c.customer_id AND d.status_code = 'CLOSED' AND d.organization_id = :org_id;- Joining delivery headers to their detail lines via
WSH_DELIVERY_ASSIGNMENTS.DELIVERY_IDto trace delivery lines and inventory transactions. - Aggregating
WSH_FREIGHT_COSTSby delivery for landed-cost and freight accrual reporting. - Filtering
SHIPMENT_DIRECTIONto isolate inbound (RCV) versus outbound deliveries for logistics KPIs. - Exposing custom
ATTRIBUTEcolumns through the DFF for customer-specific reporting.
Related Objects
- HZ_PARTIES — referenced by WSH_NEW_DELIVERIES.PARTY_ID; supplies trading partner identity.
- WSH_DELIVERY_ASSIGNMENTS — links deliveries to delivery lines and, through PARENT_DELIVERY_ID, supports consolidated or parent-child delivery structures.
- WSH_DELIVERY_LEGS — holds individual transportation legs for each DELIVERY_ID.
- WSH_FREIGHT_COSTS — charge lines associated with a delivery.
- WSH_EXCEPTIONS — documents shipping exceptions keyed by DELIVERY_ID.
- WSH_PICKING_BATCHES — groups deliveries for picking activities.
- WSH_NEW_DEL_INTERFACE / WSH_DEL_ASSGN_INTERFACE — interface tables used for delivery import and consolidation.
- OE_INVOICE_NUMBERS — links deliveries to invoicing via DELIVERY_ID.
- WMS_SHIPPING_TRANSACTION_TEMP — warehouse management staging reference.
The most commonly used public APIs against this data are the Shipping Execution delivery APIs and the Delivery Workflow (DELIVERY_WF_PROCESS), which drive status transitions recorded directly on this table.
-
Table: WSH_NEW_DELIVERIES
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_NEW_DELIVERIES, object_name:WSH_NEW_DELIVERIES, status:VALID, product: WSH - Shipping Execution , description: Deliveries , implementation_dba_data: WSH.WSH_NEW_DELIVERIES ,
-
Table: WSH_NEW_DELIVERIES
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_NEW_DELIVERIES, object_name:WSH_NEW_DELIVERIES, status:VALID, product: WSH - Shipping Execution , description: Deliveries , implementation_dba_data: WSH.WSH_NEW_DELIVERIES ,
-
APPS.WSH_WF_INTERFACE SQL Statements
12.2.2
-
APPS.WSH_WF_INTERFACE SQL Statements
12.1.1
-
APPS.WSH_WF_STD SQL Statements
12.2.2
-
APPS.WSH_WF_STD SQL Statements
12.1.1
-
APPS.WSH_DELIVERY_UTIL SQL Statements
12.2.2
-
APPS.WSH_DELIVERY_UTIL SQL Statements
12.1.1
-
VIEW: APPS.WSH_PACK_SLIP_V
12.1.1
-
VIEW: APPS.WSH_PACK_SLIP_V
12.2.2
-
VIEW: APPS.WSH_PACKING_SLIPS_DB_V
12.1.1
-
VIEW: APPS.WSH_PACKING_SLIPS_DB_V
12.2.2
-
APPS.WSH_PACKING_SLIPS_PVT SQL Statements
12.1.1
-
APPS.WSH_PACKING_SLIPS_PVT SQL Statements
12.2.2
-
VIEW: APPS.WSH_NEW_DELIVERIES_DFV
12.1.1
-
APPS.WSH_NEW_DELIVERY_ACTIONS SQL Statements
12.2.2
-
APPS.OE_AR_ACCEPTANCE_GRP SQL Statements
12.2.2
-
APPS.WSH_NEW_DELIVERY_ACTIONS SQL Statements
12.1.1
-
APPS.WSH_TRIP_STOPS_ACTIONS SQL Statements
12.1.1
-
VIEW: APPS.WSH_NEW_DELIVERIES_DFV
12.2.2
-
APPS.WSH_DELIVERY_VALIDATIONS SQL Statements
12.1.1
-
APPS.WSH_DELIVERY_VALIDATIONS SQL Statements
12.2.2
-
APPS.OE_AR_ACCEPTANCE_GRP SQL Statements
12.1.1
-
APPS.WSH_RLM_INTERFACE SQL Statements
12.2.2
-
Table: WSH_DELIVERY_ASSIGNMENTS
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_DELIVERY_ASSIGNMENTS, object_name:WSH_DELIVERY_ASSIGNMENTS, status:VALID, product: WSH - Shipping Execution , description: Delivery Assignments , implementation_dba_data: WSH.WSH_DELIVERY_ASSIGNMENTS ,
-
APPS.WSH_RLM_INTERFACE SQL Statements
12.1.1
-
APPS.WSH_TRIP_STOPS_ACTIONS SQL Statements
12.2.2
-
Table: WSH_DELIVERY_ASSIGNMENTS
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_DELIVERY_ASSIGNMENTS, object_name:WSH_DELIVERY_ASSIGNMENTS, status:VALID, product: WSH - Shipping Execution , description: Delivery Assignments , implementation_dba_data: WSH.WSH_DELIVERY_ASSIGNMENTS ,
-
View: WSH_PACK_SLIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACK_SLIP_V, object_name:WSH_PACK_SLIP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACK_SLIP_V ,
-
VIEW: APPS.WSH_DELIVERIES_BOL_RDF_V
12.2.2
-
VIEW: APPS.WSH_CMSTPW_ORDERS_V
12.2.2
-
APPS.FTE_MLS_UTIL SQL Statements
12.2.2
-
VIEW: APPS.WSH_DELIVERIES_BOL_RDF_V
12.1.1
-
APPS.WSH_ROUTING_RESPONSE_PKG SQL Statements
12.2.2
-
APPS.WSH_ROUTING_RESPONSE_PKG SQL Statements
12.1.1
-
APPS.WSH_DELIVERY_AUTOCREATE SQL Statements
12.2.2
-
View: WSH_PACK_SLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACK_SLIP_V, object_name:WSH_PACK_SLIP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACK_SLIP_V ,
-
APPS.FTE_MLS_UTIL SQL Statements
12.1.1
-
VIEW: APPS.WSH_DLVY_SHIP_FROM_TO_V
12.1.1
-
VIEW: APPS.WSH_NEW_DELIVERIES2_DFV
12.1.1
-
View: WSH_PACKING_SLIPS_DB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACKING_SLIPS_DB_V, object_name:WSH_PACKING_SLIPS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACKING_SLIPS_DB_V ,
-
PACKAGE: APPS.WSH_FLEXFIELD_UTILS
12.2.2
-
APPS.WSH_TP_RELEASE SQL Statements
12.1.1
-
PACKAGE: APPS.WSH_FLEXFIELD_UTILS
12.1.1
-
View: WSH_PACKING_SLIPS_DB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PACKING_SLIPS_DB_V, object_name:WSH_PACKING_SLIPS_DB_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PACKING_SLIPS_DB_V ,
-
VIEW: APPS.WSHBV_DELIVERY_LEGS
12.1.1
-
VIEW: APPS.WSHFV_DELIVERY_ASSIGNMENTS
12.1.1
-
VIEW: APPS.WSHFV_DELIVERY_ASSIGNMENTS
12.2.2
-
APPS.CLN_SHOWSHIP_PKG SQL Statements
12.1.1
-
VIEW: APPS.WSH_DLVY_SHIP_FROM_TO_V
12.2.2