Search Results wip_number




Overview

WSH_DLS_UNASSIGNED_SC_V is a reporting view in the Oracle E-Business Suite Order Entry (OE) module that surfaces picking line details which have not yet been assigned to a delivery. The view name reflects its functional scope: WSH (Warehouse Shipping / shipping execution), DLS (delivery line sourcing), and UNASSIGNED_SC (unassigned shipping container / delivery assignment). Its principal purpose is to expose open picking activity that is still awaiting delivery assignment, providing a staging and reporting layer over the shipping execution data model.

The view is documented in ETRM 12.2.2 metadata as "Not implemented in this database," indicating that it is a seeded but conditionally deployed object. In Oracle EBS 12.1.1 and 12.2.2, such views are commonly used by shipping, warehouse, and fulfillment reporting processes to identify demand lines that remain candidates for delivery grouping and shipment confirmation. The view also carries the ULTIMATE_SHIP_TO_ID column, which is the attribute users typically search when tracing where a picked line will ultimately be shipped.

Underlying Base Objects

The view is defined over a join of several shipping and order management base tables. The documented FROM clause references:

Filters restrict results to open picking headers (STATUS_CODE = 'OPEN') and lines with no delivery assignment (PLD.DELIVERY_ID IS NULL), which is precisely what makes the view represent "unassigned" picking content.

Key Columns

Common Use Cases and Queries

The view is typically queried to find picking demand not yet grouped into deliveries, enabling planners to analyze unassigned shipment volume. A common query filters by organization and destination:

  • Identify all unassigned picked lines for a warehouse.
  • Group by ULTIMATE_SHIP_TO_ID to measure demand by destination.
  • Join to RA_SITE_USES_ALL on ULTIMATE_SHIP_TO_ID for address reporting.

Example:

SELECT pick_slip_number, order_number, line_number, inventory_item_id, requested_quantity, ultimate_ship_to_id FROM wsh_dls_unassigned_sc_v WHERE organization_id = :org_id;

Because the view resolves the ultimate ship-to through nested NVL logic, it is especially useful when the ship-to is defined at different levels (header, line, picking header, or picking line), and users searching on ultimate_ship_to_id can reliably locate the effective destination for each unassigned picking line.