Search Results wsh_delivery_details_n2




Overview

WSH.WSH_DELIVERY_DETAILS is the central shipping execution table in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It stores individual delivery lines and license plate numbers (LPNs) that flow through the Warehouse Management (WSH) shipping process. Every pick, pack, ship, and manifest transaction performed in the Shipping Transactions workbench — and its HTML replacement in 12.2 — originates from or updates a row in this table. Its documented role is summarized simply: "WSH_DELIVERY_DETAILS has delivery lines and LPNs."

In Release 12.2.x the table is documented with 210 columns and resides in the WSH schema under tablespace APPS_TS_TX_DATA. It is a large, high-transaction-volume object that bridges Order Management, Inventory, Purchasing/Receiving, and Transportation modules. The heuristic Data Vault classification of this object is hub-leaning, which suggests it behaves primarily as a business entity hub anchored by a stable surrogate key rather than a pure transactional link.

Key Information Stored

The table is uniquely identified by the surrogate primary key DELIVERY_DETAIL_ID, enforced by unique index WSH_DELIVERY_DETAILS_U1. This is the single documented business-key candidate. The most operationally significant columns include:

Common Use Cases and Queries

Typical use cases include open shipping-line reporting, pick confirmation auditing, and reconciliation of shipped versus requested quantities. A representative query to list unreleased lines for a specific warehouse is:

  • SELECT delivery_detail_id, source_header_number, inventory_item_id, requested_quantity, released_status FROM wsh.wsh_delivery_details WHERE organization_id = :org_id AND released_status = 'R';

Joining to WSH_DELIVERY_ASSIGNMENTS exposes the delivery-to-line mapping for manifest reporting, while joins to WSH_DEL_DETAILS_INTERFACE reveal interface stages. Indexes WSH_DELIVERY_DETAILS_N2 (SOURCE_HEADER_ID), N8 (RELEASED_STATUS, ORGANIZATION_ID), and N9 (INVENTORY_ITEM_ID, ORGANIZATION_ID, SHIP_FROM_LOCATION_ID, RELEASED_STATUS) support these access paths.

Related Objects

The table participates in extensive referential relationships. The most significant include: