Search Results shipped_quantity_uom_desc




Overview

IBE_SHIP_DETAIL_V is an APPS-owned database view in the Oracle E-Business Suite iStore (IBE) module. It presents a consolidated, denormalized picture of the shipping lifecycle for order lines, bridging sales order data in Oracle Order Management with delivery and transportation data in Oracle Shipping Execution (WSH). For the ETRM 12.1.1 and 12.2.2 releases, the view is documented as VALID and is a core object used by iStore shipping pages and related reporting.

The view is particularly significant for users searching on ship_status. Although the view does not expose a column literally named SHIP_STATUS, the shipping status information is available through the DL.STATUS_CODE column and its decoded meaning WL.MEANING, derived from the WSH_LOOKUPS lookup type DELIVERY_STATUS. This is the field that displays shipment status on iStore order tracking pages. The view also carries line-level flow status (OL.FLOW_STATUS_CODE, decoded as LINE_STATUS) and ship method descriptions, allowing a single query to return order, delivery, and transportation context.

Underlying Base Objects

IBE_SHIP_DETAIL_V is defined over a join of the following documented base objects:

Most joins use outer joins (+), so order lines without a delivery still appear, which suits iStore display of partially shipped orders.

Key Columns

Common Use Cases and Queries

Typical scenarios include iStore order-status displays, shipment tracking for customers, and shipping reports that reconcile ordered versus shipped quantities. To locate shipment status by order line:

SELECT line_number, status_code, meaning, tracking_number, waybill_number, date_shipped FROM apps.ibe_ship_detail_v WHERE header_id = :p_header_id;

To filter by ship status:

SELECT line_id, shipped_quantity, meaning FROM apps.ibe_ship_detail_v WHERE status_code = :p_status AND line_id = :p_line_id;

These queries leverage the DELIVERY_STATUS lookup meaning as the effective ship_status field for iStore functionality.