Search Results earliest_ship_date
Overview
The OE_DELIVERY_LINES_V view is a shipping interface construct in Oracle E-Business Suite Order Management (ONT). It presents order line and shipment detail in a flattened form intended to feed downstream shipping execution and departure planning processes. The view exposes a single row per order line shipment combination, joining header-level context from OE_ORDER_HEADERS_ALL with line-level attributes from OE_ORDER_LINES_ALL, and enriching item information from MTL_SYSTEM_ITEMS and container data from MTL_CUSTOMER_ITEMS. The description states its purpose precisely: it is for interfacing the lines to shipping, for departure planning.
Because it consolidates scheduling, freight, address, quantity, and container attributes into one projection, OE_DELIVERY_LINES_V is frequently used as a reporting source for transportation planning, load building, and shipment prioritization. It is not a transactional table; it is a read-only projection over the live order tables, so its contents always reflect the current state of the underlying order lines.
For users searching on "earliest_ship_date," it is important to note that this view does not expose a column named EARLIEST_SHIP_DATE. The closest scheduling attribute available from the view is SCHEDULE_SHIP_DATE, which represents the currently scheduled ship date for the line shipment. The earliest ship date concept is typically derived from schedule or requested-date logic in other scheduling views and tables, and is not a native column of this view.
Underlying Base Objects
The view is owned by APPS and is defined over the following documented objects:
- OE_ORDER_HEADERS_ALL — source of header-level attributes such as ORDER_NUMBER, ORDER_TYPE_ID, and TRANSACTIONAL_CURR_CODE.
- OE_ORDER_LINES_ALL — source of line and shipment attributes, aliased as OOL, including HEADER_ID, LINE_ID, LINE_NUMBER, SHIPMENT_NUMBER, and the full set of shipping and scheduling columns.
- OE_TRANSACTION_TYPES_TL — provides the translated transaction type NAME joined via ORDER_TYPE_ID.
- MTL_SYSTEM_ITEMS — supplies the item DESCRIPTION via INVENTORY_ITEM_ID.
- MTL_CUSTOMER_ITEMS — supplies MASTER_CONTAINER_ITEM_ID and DETAIL_CONTAINER_ITEM_ID.
- OE_SYS_PARAMETERS — a package referenced in the view definition, used for system parameter evaluation.
The joins are keyed on the order header and line identifiers, with item and container enrichment layered on top, producing the denormalized projection required by shipping integration.
Key Columns
The LINE_NUMBER column is noteworthy because it is not a raw column. It concatenates LINE_NUMBER, SHIPMENT_NUMBER, and, where present, OPTION_NUMBER, COMPONENT_NUMBER, and SERVICE_NUMBER using conditional DECODE logic to build a fully qualified line reference. Other significant columns include:
- HEADER_ID and LINE_ID — primary keys linking back to the order headers and lines.
- ORDER_NUMBER and the transaction type NAME — order identification for reporting.
- ORG_ID, SOLD_TO_ORG_ID, SHIP_TO_ORG_ID, DELIVER_TO_ORG_ID, and intermediate ship-to columns — organizational and address context.
- SCHEDULE_SHIP_DATE and REQUEST_DATE — scheduling attributes relevant to departure planning.
- ORDERED_QUANTITY, SHIPPED_QUANTITY, FULFILLED_QUANTITY, and SHIPPING_QUANTITY with corresponding UOMs — quantity and tolerance reporting.
- SHIPPING_METHOD_CODE, FREIGHT_CARRIER_CODE, FREIGHT_TERMS_CODE, FOB_POINT_CODE, and SHIPMENT_PRIORITY_CODE — freight and routing attributes.
- DEP_PLAN_REQUIRED_FLAG and SHIPPING_INTERFACED_FLAG — flags governing departure planning and interface state.
- SHIP_SET_ID and ARRIVAL_SET_ID — grouping identifiers for shipment and arrival sets.
- MASTER_CONTAINER_ITEM_ID and DETAIL_CONTAINER_ITEM_ID — container context from MTL_CUSTOMER_ITEMS.
Common Use Cases and Queries
The view supports departure planning reports, shipping interface extracts, and freight prioritization queries. A representative query returning scheduled shipments by order follows:
SELECT ORDER_NUMBER, LINE_NUMBER, SCHEDULE_SHIP_DATE, ORDERED_QUANTITY, SHIPPING_METHOD_CODE
FROM APPS.OE_DELIVERY_LINES_V
WHERE ORG_ID = :p_org_id
AND SCHEDULE_SHIP_DATE BETWEEN :p_from_date AND :p_to_date
ORDER BY SCHEDULE_SHIP_DATE, ORDER_NUMBER;
To identify lines awaiting shipping interface, filter on the interface flag:
SELECT ORDER_NUMBER, LINE_NUMBER, DEP_PLAN_REQUIRED_FLAG, SHIPPING_INTERFACED_FLAG
FROM APPS.OE_DELIVERY_LINES_V
WHERE SHIPPING_INTERFACED_FLAG = 'N';
When a user requires the earliest ship date, the practical approach is to query SCHEDULE_SHIP_DATE from this view or to consult scheduling-specific views that expose earliest acceptable date logic, since OE_DELIVERY_LINES_V itself exposes only the scheduled ship date for the line shipment.
-
Lookup Type: CREDIT_CHECK_PROCESS_RULE
12.1.1
product: ONT - Order Management , meaning: Credit Check Process Rule: Credit Check Processor , description: Processing sequence used by the Credit Check Processor ,
-
Lookup Type: CREDIT_CHECK_PROCESS_RULE
12.2.2
product: ONT - Order Management , meaning: Credit Check Process Rule: Credit Check Processor , description: Processing sequence used by the Credit Check Processor ,
-
View: OE_DELIVERY_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVERY_LINES_V, object_name:OE_DELIVERY_LINES_V, status:VALID, product: ONT - Order Management , description: This view is for interfacing the lines to shipping, for departure planning. , implementation_dba_data: APPS.OE_DELIVERY_LINES_V ,
-
View: OE_DELIVERY_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVERY_LINES_V, object_name:OE_DELIVERY_LINES_V, status:VALID, product: ONT - Order Management , description: This view is for interfacing the lines to shipping, for departure planning. , implementation_dba_data: APPS.OE_DELIVERY_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_SCH_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_SCH_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
View: OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
View: OE_ORDER_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
View: OE_ORDER_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,