Search Results wsh_deliveries
Overview
The WSH_DELIVERIES table is a core data object within the Oracle E-Business Suite (EBS) Shipping Execution module (WSH), owned by the Order Entry (OE) schema. It serves as the master record for a delivery, which is a logical grouping of shipping tasks representing the movement of goods from a source location to a customer destination. A delivery is a fundamental unit for planning, executing, and tracking the shipment of order lines. It acts as a critical junction between Order Management fulfillment lines and the physical shipping process, enabling functions like trip planning, freight consolidation, and delivery documentation.
Key Information Stored
The table's primary key is DELIVERY_ID, which uniquely identifies each delivery record. Key columns, as indicated by its foreign key relationships, store essential shipment planning and execution data. These include CUSTOMER_ID (referencing RA_CUSTOMERS), and ULTIMATE_SHIP_TO_ID and INTERMEDIATE_SHIP_TO_ID (both referencing RA_SITE_USES_ALL) to define the delivery's destination hierarchy. The table links to the departure process via PLANNED_DEPARTURE_ID and ACTUAL_DEPARTURE_ID, which reference the WSH_DEPARTURES table to track scheduled and real departure events. Other significant columns include REPORT_SET_ID (linking to SO_REPORT_SETS for documentation) and status fields that track the delivery's lifecycle from initial creation through to completion.
Common Use Cases and Queries
This table is central to shipping operations and reporting. Common use cases include generating delivery notes and packing slips, tracking delivery status for customer service inquiries, and analyzing shipment consolidation efficiency. A typical query might join WSH_DELIVERIES with order and customer tables to create an open delivery report. For example:
- Tracking deliveries by customer and status:
SELECT d.delivery_id, d.name, c.customer_number, d.status_code FROM wsh_deliveries d, ra_customers c WHERE d.customer_id = c.customer_id AND d.status_code = 'OP'; - Linking deliveries to their associated departure and ship-to address:
SELECT d.delivery_id, dep.name as departure, site_ship_to.address_line_1 FROM wsh_deliveries d, wsh_departures dep, ra_site_uses_all site_ship_to WHERE d.planned_departure_id = dep.departure_id AND d.ultimate_ship_to_id = site_ship_to.site_use_id;
Related Objects
WSH_DELIVERIES has extensive integration across the shipping and order fulfillment modules. As per the metadata, it is referenced by numerous key transactional tables, including SO_PICKING_HEADERS_ALL, SO_PICKING_LINE_DETAILS, SO_LINE_DETAILS, and WSH_PACKED_CONTAINERS, establishing it as the anchor for pick release and packing processes. It is also referenced by SO_FREIGHT_CHARGES for rating and WSH_INVOICE_NUMBERS for invoicing. The table itself references master data tables like RA_CUSTOMERS and RA_SITE_USES_ALL for customer and address information, and WSH_DEPARTURES for transportation planning. This network of relationships underscores its pivotal role in the order-to-ship lifecycle.
-
Table: WSH_DELIVERIES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DELIVERIES, object_name:WSH_DELIVERIES, status:VALID, product: OE - Order Entry , description: Shipping deliveries , implementation_dba_data: OE.WSH_DELIVERIES ,
-
Table: WSH_DELIVERIES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DELIVERIES, object_name:WSH_DELIVERIES, status:VALID, product: OE - Order Entry , description: Shipping deliveries , implementation_dba_data: OE.WSH_DELIVERIES ,
-
Table: WSH_DEPARTURES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DEPARTURES, object_name:WSH_DEPARTURES, status:VALID, product: OE - Order Entry , description: Shipping departures , implementation_dba_data: OE.WSH_DEPARTURES ,
-
Table: WSH_DEPARTURES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DEPARTURES, object_name:WSH_DEPARTURES, status:VALID, product: OE - Order Entry , description: Shipping departures , implementation_dba_data: OE.WSH_DEPARTURES ,
-
Table: WSH_INVOICE_NUMBERS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_INVOICE_NUMBERS, object_name:WSH_INVOICE_NUMBERS, status:VALID, product: OE - Order Entry , description: Shipping invoice numbers , implementation_dba_data: OE.WSH_INVOICE_NUMBERS ,
-
Table: WSH_INVOICE_NUMBERS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_INVOICE_NUMBERS, object_name:WSH_INVOICE_NUMBERS, status:VALID, product: OE - Order Entry , description: Shipping invoice numbers , implementation_dba_data: OE.WSH_INVOICE_NUMBERS ,
-
Table: SO_FREIGHT_CHARGES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGES, object_name:SO_FREIGHT_CHARGES, status:VALID, product: OE - Order Entry , description: Freight charges , implementation_dba_data: OE.SO_FREIGHT_CHARGES ,
-
Table: SO_LINE_DETAILS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_LINE_DETAILS, object_name:SO_LINE_DETAILS, status:VALID, product: OE - Order Entry , description: Order line schedule details , implementation_dba_data: OE.SO_LINE_DETAILS ,
-
View: WSHBV_CONTAINER_CONTENT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_CONTAINER_CONTENT, object_name:WSHBV_CONTAINER_CONTENT, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSHBV_CONTAINER_CONTENT ,
-
Table: WSH_PACKED_CONTAINERS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PACKED_CONTAINERS, object_name:WSH_PACKED_CONTAINERS, status:VALID, product: OE - Order Entry , description: Packed containers , implementation_dba_data: OE.WSH_PACKED_CONTAINERS ,
-
Table: SO_LINE_DETAILS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_LINE_DETAILS, object_name:SO_LINE_DETAILS, status:VALID, product: OE - Order Entry , description: Order line schedule details , implementation_dba_data: OE.SO_LINE_DETAILS ,
-
Table: SO_FREIGHT_CHARGES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGES, object_name:SO_FREIGHT_CHARGES, status:VALID, product: OE - Order Entry , description: Freight charges , implementation_dba_data: OE.SO_FREIGHT_CHARGES ,
-
View: WSHBV_CONTAINER_CONTENT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_CONTAINER_CONTENT, object_name:WSHBV_CONTAINER_CONTENT, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.WSHBV_CONTAINER_CONTENT ,
-
Table: WSH_PACKED_CONTAINERS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_PACKED_CONTAINERS, object_name:WSH_PACKED_CONTAINERS, status:VALID, product: OE - Order Entry , description: Packed containers , implementation_dba_data: OE.WSH_PACKED_CONTAINERS ,
-
Table: SO_REPORT_SETS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_REPORT_SETS, object_name:SO_REPORT_SETS, status:VALID, product: OE - Order Entry , description: Document sets to be printed from Ship Confirm Delivery and Ship Confirm Departure windows , implementation_dba_data: OE.SO_REPORT_SETS ,
-
Table: SO_PICKING_LINE_DETAILS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_LINE_DETAILS, object_name:SO_PICKING_LINE_DETAILS, status:VALID, product: OE - Order Entry , description: Picking line details , implementation_dba_data: OE.SO_PICKING_LINE_DETAILS ,
-
Table: SO_PICKING_LINE_DETAILS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_LINE_DETAILS, object_name:SO_PICKING_LINE_DETAILS, status:VALID, product: OE - Order Entry , description: Picking line details , implementation_dba_data: OE.SO_PICKING_LINE_DETAILS ,
-
View: WSH_PACKED_CONTAINERS_DPW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_PACKED_CONTAINERS_DPW_V, object_name:WSH_PACKED_CONTAINERS_DPW_V, status:VALID, product: OE - Order Entry , description: Containers for Departure Planning Workbench , implementation_dba_data: APPS.WSH_PACKED_CONTAINERS_DPW_V ,
-
Table: SO_REPORT_SETS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_REPORT_SETS, object_name:SO_REPORT_SETS, status:VALID, product: OE - Order Entry , description: Document sets to be printed from Ship Confirm Delivery and Ship Confirm Departure windows , implementation_dba_data: OE.SO_REPORT_SETS ,
-
Table: SO_PICKING_BATCHES_ALL
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_BATCHES_ALL, object_name:SO_PICKING_BATCHES_ALL, status:VALID, product: OE - Order Entry , description: Released order batches , implementation_dba_data: OE.SO_PICKING_BATCHES_ALL ,
-
Table: SO_PICKING_HEADERS_ALL
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_HEADERS_ALL, object_name:SO_PICKING_HEADERS_ALL, status:VALID, product: OE - Order Entry , description: Batch picking headers , implementation_dba_data: OE.SO_PICKING_HEADERS_ALL ,
-
Table: SO_PICKING_HEADERS_ALL
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_HEADERS_ALL, object_name:SO_PICKING_HEADERS_ALL, status:VALID, product: OE - Order Entry , description: Batch picking headers , implementation_dba_data: OE.SO_PICKING_HEADERS_ALL ,
-
Table: SO_PICKING_BATCHES_ALL
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_BATCHES_ALL, object_name:SO_PICKING_BATCHES_ALL, status:VALID, product: OE - Order Entry , description: Released order batches , implementation_dba_data: OE.SO_PICKING_BATCHES_ALL ,
-
View: WSH_PACKED_CONTAINERS_DPW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_PACKED_CONTAINERS_DPW_V, object_name:WSH_PACKED_CONTAINERS_DPW_V, status:VALID, product: OE - Order Entry , description: Containers for Departure Planning Workbench , implementation_dba_data: APPS.WSH_PACKED_CONTAINERS_DPW_V ,
-
View: WSHFV_CONTAINER_CONTENT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_CONTAINER_CONTENT, object_name:WSHFV_CONTAINER_CONTENT, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_CONTAINER_CONTENT ,
-
View: WSHFV_CONTAINER_CONTENT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_CONTAINER_CONTENT, object_name:WSHFV_CONTAINER_CONTENT, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_CONTAINER_CONTENT ,
-
View: WSH_DELIVERIES_DPW_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_DELIVERIES_DPW_LOV_V, object_name:WSH_DELIVERIES_DPW_LOV_V, status:VALID, product: OE - Order Entry , description: Open or planned deliveries created using Departure Planning Workbench , implementation_dba_data: APPS.WSH_DELIVERIES_DPW_LOV_V ,
-
View: WSH_DELIVERIES_DPW_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_DELIVERIES_DPW_LOV_V, object_name:WSH_DELIVERIES_DPW_LOV_V, status:VALID, product: OE - Order Entry , description: Open or planned deliveries created using Departure Planning Workbench , implementation_dba_data: APPS.WSH_DELIVERIES_DPW_LOV_V ,
-
View: SO_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DELIVERIES_V, object_name:SO_DELIVERIES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DELIVERIES_V ,
-
View: WSHBV_DELIVERY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_DELIVERY, object_name:WSHBV_DELIVERY, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_DELIVERY ,
-
View: WSHFV_FREIGHT_CHARGE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE, object_name:WSHFV_FREIGHT_CHARGE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_FREIGHT_CHARGE ,
-
View: SO_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DELIVERIES_V, object_name:SO_DELIVERIES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DELIVERIES_V ,
-
View: WSHBV_DELIVERY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_DELIVERY, object_name:WSHBV_DELIVERY, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_DELIVERY ,
-
View: WSHFV_FREIGHT_CHARGE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE, object_name:WSHFV_FREIGHT_CHARGE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_FREIGHT_CHARGE ,
-
View: WSH_DELIVERY_LINES_DPW_V
12.1.1
product: OE - Order Entry , description: Delivery lines for Departure Planning Workbench , implementation_dba_data: Not implemented in this database ,
-
View: WSH_DELIVERY_LINES_DPW_V
12.2.2
product: OE - Order Entry , description: Delivery lines for Departure Planning Workbench , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_PACKED_CONTAINER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_PACKED_CONTAINER, object_name:WSHFV_PACKED_CONTAINER, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_PACKED_CONTAINER ,
-
View: WSHFV_PACKED_CONTAINER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_PACKED_CONTAINER, object_name:WSHFV_PACKED_CONTAINER, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_PACKED_CONTAINER ,
-
View: WSHFV_PICK_HEADER
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_PICK_HEADER
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_PICKING_BATCH
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_PICKING_BATCH
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_SHIPMENT_LINES
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_SHIPMENT_LINES
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_DELIVERY
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_DELIVERY
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_BATCHES_V
12.1.1
product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_BATCHES_V
12.2.2
product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_PICK_LINE_DETAIL
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: WSHFV_PICK_LINE_DETAIL
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,