WSH_NEW_DELIVERIES
Product: WSHtransactionPer inventory orgThe delivery (shipment) header — a named grouping of shipment lines shipped together, carrying the ship-confirm and actual ship/delivery dates, carrier, ship method, waybill, and weight/volume rollups
The "NEW_" prefix is naming history, not a status. Trip-level attributes EBS kept on separate trip tables (carrier, ship method, waybill, actual departure) live directly here — Fusion has no trip layer. STATUS_CODE values are not enumerated in the data dictionary, so they ship undecoded. Customers are TCA parties (SHIP_TO_PARTY_ID; a sold-to party column exists alongside it).
What the badges mean
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
Extract access
The delivered surfaces that reach this table — the BICC extract data store (PVO) for bulk extraction and the OTBI subject areas for real-time queries. There is no SQL path to the SaaS database.
- FscmTopModelAM.ScmExtractAM.WshBiccExtractAM.DeliveryExtractPVOOTBI: Shipping Real Time
Shipments data store — keyed on DeliveryPEODeliveryId, mirroring DELIVERY_ID (Fusion's docs call deliveries shipments; same entity).
Oracle data-store documentation →
Fields
18 fields · 1 key
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | DELIVERY_ID | Surrogate key of the delivery (shipment) | NUMBER | Key |
| 2 | DELIVERY_NAME | User-visible shipment name | VARCHAR2 | |
| 3 | ORGANIZATION_ID | Ship-from inventory organization | NUMBER | |
| 4 | STATUS_CODE | Shipment status — code values are not enumerated in the dictionary, so they ship undecoded | VARCHAR2 | |
| 5 | DELIVERY_TYPE | Standard vs consolidated shipment | VARCHAR2 | |
| 6 | SOURCE_HEADER_ID | Header id of the order lines tied to this delivery | NUMBER | |
| 7 | CONFIRM_DATE | When the shipment was ship-confirmed | DATE | Filter date |
| 8 | INITIAL_PICKUP_DATE | First pickup date of the shipment | DATE | |
| 9 | ULTIMATE_DROPOFF_DATE | Final dropoff date | DATE | |
| 10 | ACTUAL_SHIP_DATE | Actual ship date | DATE | |
| 11 | ACTUAL_DELIVERY_DATE | When delivered to the recipient | DATE | |
| 12 | CARRIER_ID | Freight carrier — trip-level attributes live here in Fusion; there is no trip table | NUMBER | |
| 13 | SHIP_METHOD_CODE | Shipping method code | VARCHAR2 | |
| 14 | SERVICE_LEVEL | Service level component of the ship method | VARCHAR2 | |
| 15 | MODE_OF_TRANSPORT | Transport mode component of the ship method | VARCHAR2 | |
| 16 | WAYBILL | Waybill / tracking number | VARCHAR2 | |
| 17 | GROSS_WEIGHT | Shipment gross weight rollup | NUMBER | |
| 18 | SHIP_TO_PARTY_ID | Ship-to customer party (TCA) | NUMBER |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading the BICC-landed copy of WSH_NEW_DELIVERIESon Databricks — real DATE columns need no conversion, and the org anchor and the LAST_UPDATE_DATE watermark (the column incremental BICC extracts key on) are already in place. Set your Unity Catalog location, schema, and org values below; they’re substituted into the SQL and the copy button.
-- ============================================================
-- Table : WSH_NEW_DELIVERIES — The delivery (shipment) header — a named grouping of shipment lines shipped together, carrying the ship-confirm and actual ship/delivery dates, carrier, ship method, waybill, and weight/volume rollups
-- Purpose: Column-selected read of WSH_NEW_DELIVERIES — auto-generated from field metadata
-- Grain : One row per inventory org (ORGANIZATION_ID) + DELIVERY_ID
-- Notes : Auto-generated skeleton for Oracle Fusion Cloud data landed in your lakehouse by a BICC extract — there is no SQL path to the SaaS database. Column names follow Oracle's table documentation — if your landed data still carries PVO attribute headers, map names first; see quirks #pvo-drift. Dates are real DATE/TIMESTAMP columns — no conversion needed. WHO audit columns omitted (see the quirks guide); the optional LAST_UPDATE_DATE watermark filter supports incremental extracts.
-- ============================================================
SELECT
t.DELIVERY_ID AS "Surrogate key of the delivery (shipment)",
t.DELIVERY_NAME AS "User-visible shipment name",
t.ORGANIZATION_ID AS "Ship-from inventory organization",
t.STATUS_CODE AS "Shipment status — code values are not enumerated in the dictionary, so they ship undecoded",
t.DELIVERY_TYPE AS "Standard vs consolidated shipment",
t.SOURCE_HEADER_ID AS "Header id of the order lines tied to this delivery",
t.CONFIRM_DATE AS "When the shipment was ship-confirmed",
t.INITIAL_PICKUP_DATE AS "First pickup date of the shipment",
t.ULTIMATE_DROPOFF_DATE AS "Final dropoff date",
t.ACTUAL_SHIP_DATE AS "Actual ship date",
t.ACTUAL_DELIVERY_DATE AS "When delivered to the recipient",
t.CARRIER_ID AS "Freight carrier — trip-level attributes live here in Fusion; there is no trip table",
t.SHIP_METHOD_CODE AS "Shipping method code",
t.SERVICE_LEVEL AS "Service level component of the ship method",
t.MODE_OF_TRANSPORT AS "Transport mode component of the ship method",
t.WAYBILL AS "Waybill / tracking number",
t.GROSS_WEIGHT AS "Shipment gross weight rollup",
t.SHIP_TO_PARTY_ID AS "Ship-to customer party (TCA)"
FROM <catalog>.<schema>.WSH_NEW_DELIVERIES t
WHERE
t.ORGANIZATION_ID = <inventory_org_id> -- inventory org, NOT the business unit — see quirks guide #item-org-striping
-- AND t.DELIVERY_ID = <DELIVERY_ID>
-- AND t.CONFIRM_DATE >= DATE '<DATE_FROM>'
-- AND t.CONFIRM_DATE <= DATE '<DATE_TO>'
-- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>' -- the column incremental BICC extracts key on
ORDER BY t.DELIVERY_ID;7 parameters not filled: <catalog>, <schema>, <inventory_org_id>, <DELIVERY_ID>, <DATE_FROM>, <DATE_TO>, <watermark>
Relationships
1-hop neighbors — click a table to navigate there. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.
Join details
ON WSH_DELIVERY_ASSIGNMENTS.DELIVERY_ID = WSH_NEW_DELIVERIES.DELIVERY_IDON WSH_NEW_DELIVERIES.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_ID