Search Results shipped_quantity_disp




Overview

The view SO_PICKING_LINES_VIEW_V belongs to the Oracle Order Entry (OE) module and provides a consolidated, reporting-oriented projection of picking line activity drawn from the shipping and picking execution tables of Oracle Shipping Execution. It joins picking lines, picking headers, picking batches, inventory item master information, ship-to locations, and order lines into a single flattened structure suitable for operational reporting, label printing, and integration extracts.

The view is not implemented as a physical database object in every environment; the ETRM metadata explicitly notes "Not implemented in this database," meaning availability depends on the applied patch level and installed shipping functionality. Where present, it is typically used by shipping reports, carrier interfaces, and custom dashboards that require picking line detail without invoking the full pick confirmation UI.

Underlying Base Objects

The view definition references the following base objects:

All header, batch, warehouse, item, freight, and site-use joins are outer joins, ensuring picking line rows are retained even when related context is missing.

Key Columns

Common Use Cases and Queries

Typical scenarios include pick slip reprint, shipped-versus-requested analysis, backorder identification, and carrier waybill reconciliation.

SELECT picking_line_id,
       pick_slip_number,
       item,
       warehouse,
       shipped_quantity_disp,
       requested_quantity,
       backordered_quantity,
       date_shipped,
       waybill_num
FROM   so_picking_lines_view_v
WHERE  warehouse = :org_code
AND    date_shipped >= :from_date;

To list currently unshipped picking lines with reserves:

SELECT picking_line_id,
       item,
       reserved_quantity,
       schedule_status
FROM   so_picking_lines_view_v
WHERE  picking_header_id = 0
AND    reserved_quantity > 0;

Because the ITEM column resolves through FND_PROFILE.VALUE('SO_ORGANIZATION_ID'), query results can differ by responsibility or user session when the profile option varies; report developers should set the profile explicitly before execution to guarantee consistent item concatenation and freight join behavior.