Search Results line_set_id
Overview
OE_DELIVERY_LINES_V is a reporting and integration view owned by the APPS schema in Oracle Order Management (ONT). Its documented purpose is to interface order lines to shipping for departure planning. In practice, the view flattens the shipment-level detail of sales order lines into a single denormalized row that downstream shipping, warehouse, and transportation processes can consume without navigating the parent-child hierarchy of OE_ORDER_LINES_ALL.
Because departure planning must resolve which lines are eligible to ship, from which warehouse, in what quantity, and by what date, the view exposes a broad projection of order, schedule, address, and container attributes. It also carries the SHIPPING_INTERFACED_FLAG and DEP_PLAN_REQUIRED_FLAG columns, which allow external planners and shipping execution programs to select only those lines that have not yet been handed off and which genuinely require departure planning.
The view exists in both Oracle EBS 12.1.1 and 12.2.2 and is documented as VALID in the ETRM repository. Note that the identifier line_set_id, which often prompts interest in shipment grouping logic, is not among the documented columns; related grouping semantics are represented instead through SHIP_SET_ID and ARRIVAL_SET_ID.
Underlying Base Objects
ETRM documents the following referenced objects for the 12.2.2 definition:
- OE_ORDER_HEADERS_ALL — supplies header-level values such as ORDER_NUMBER, ORDER_TYPE_ID, and TRANSACTIONAL_CURR_CODE.
- OE_ORDER_LINES_ALL — the primary source of line, shipment, quantity, schedule, address, and instruction columns.
- OE_TRANSACTION_TYPES_TL — supplies the translated transaction type name via OTT.NAME.
- MTL_SYSTEM_ITEMS — supplies the item description (MSI.DESCRIPTION) for the inventory item.
- MTL_CUSTOMER_ITEMS — supplies master and detail container item identifiers (MCI.MASTER_CONTAINER_ITEM_ID, MCI.DETAIL_CONTAINER_ITEM_ID).
- OE_SYS_PARAMETERS — referenced as a package, indicating the view is created in a context where the Order Management system parameters package is expected to be available (typically for multi-org or setup-dependent behavior).
The view therefore sits directly on top of the order headers and lines tables, joining the transaction type and item master for descriptive enrichment, and joining customer items for container configuration.
Key Columns
The view concatenates the line, shipment, option, component, and service numbers into a composite LINE_NUMBER using dot delimiters, which uniquely identifies a shipment line within a model or kit configuration. This composite key is the single most important identifier for reporting because it visually encodes the ATO or PTO structure.
- Order context: HEADER_ID, ORDER_NUMBER, ORDER_TYPE_ID, NAME, ORG_ID, LINE_ID, LINE_NUMBER.
- Item and container: INVENTORY_ITEM_ID, DESCRIPTION, MASTER_CONTAINER_ITEM_ID, DETAIL_CONTAINER_ITEM_ID, ITEM_IDENTIFIER_TYPE, ORDERED_ITEM_ID, END_ITEM_UNIT_NUMBER.
- Parties and locations: SOLD_TO_ORG_ID, SHIP_TO_ORG_ID, DELIVER_TO_ORG_ID, SHIP_FROM_ORG_ID, INTMED_SHIP_TO_ORG_ID, and their associated contact IDs.
- Quantities and UOMs: ORDERED_QUANTITY, SHIPPED_QUANTITY, FULFILLED_QUANTITY, SHIPPING_QUANTITY, ORDER_QUANTITY_UOM, SHIPPING_QUANTITY_UOM, and the secondary ORDERED_QUANTITY2 and ORDERED_QUANTITY_UOM2.
- Dates and planning: SCHEDULE_SHIP_DATE, REQUEST_DATE, DEP_PLAN_REQUIRED_FLAG, CUST_PRODUCTION_SEQ_NUM.
- Logistics attributes: SHIPPING_METHOD_CODE, FREIGHT_CARRIER_CODE, FREIGHT_TERMS_CODE, SHIPMENT_PRIORITY_CODE, FOB_POINT_CODE, CUSTOMER_DOCK_CODE.
- Set and structure identifiers: SHIP_SET_ID, ARRIVAL_SET_ID, ATO_LINE_ID, TOP_MODEL_LINE_ID, SHIP_MODEL_COMPLETE_FLAG, LINE_CATEGORY_CODE, LINE_TYPE_ID, SOURCE_TYPE_CODE.
- Project references: PROJECT_ID and TASK_ID, supporting project manufacturing or project-driven fulfillment.
- Tolerance and instructions: SHIP_TOLERANCE_ABOVE, SHIP_TOLERANCE_BELOW, SHIPPING_INSTRUCTIONS, PACKING_INSTRUCTIONS, PREFERRED_GRADE.
- Interface control: SHIPPING_INTERFACED_FLAG and CUST_PO_NUMBER.
Common Use Cases and Queries
The most frequent use is a departure planning extract. A planner filters lines that still require planning and have not yet been interfaced, ordered by scheduled ship date.
SELECT order_number, line_number, description, ordered_quantity, schedule_ship_date
FROM oe_delivery_lines_v
WHERE dep_plan_required_flag = 'Y'
AND shipping_interfaced_flag = 'N'
AND org_id = :p_org_id
ORDER BY schedule_ship_date, order_number;
A second common pattern is shipment set analysis. Because the view exposes SHIP_SET_ID and ARRIVAL_SET_ID, planners can group lines that must ship together:
SELECT ship_set_id, order_number, line_number, ship_from_org_id, shipping_quantity
FROM oe_delivery_lines_v
WHERE ship_set_id IS NOT NULL
AND ship_to_org_id = :p_ship_to;
A third use is container and model interrogation, where MASTER_CONTAINER_ITEM_ID or TOP_MODEL_LINE_ID is joined back to MTL_SYSTEM_ITEMS to describe configured shipping units. Queries that filter on line_set_id will fail against this view; shipment grouping must instead be expressed through SHIP_SET_ID, ARRIVAL_SET_ID, or the composite LINE_NUMBER, which is the documented mechanism this view provides for line-level identification during shipping interface and departure planning.
-
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_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_LINE_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OEFV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OEFV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OE_AK_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_AK_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_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_BLANKET_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
View: OE_BLANKET_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_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 ,
-
View: OE_BLKT_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,
-
View: OE_BLKT_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,