Search Results xdp_oe_order_lines
Overview
XDP_OE_ORDER_LINES is a provisioning-module table owned by the XDP schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores all order line information for orders generated by the Oracle SFM (Service Fulfillment Manager) Order Entry interface. In the provisioning lifecycle, this table acts as the line-level staging and tracking repository between an incoming service order and the downstream provisioning detail records, capturing what line items must be fulfilled, whether provisioning is required, and the scheduling and completion attributes associated with each line.
In Data Vault terms, the documented foreign-key structure suggests a satellite-leaning classification. The table carries a composite business key of ORDER_NUMBER, ORDER_VERSION, and LINE_NUMBER, and it holds descriptive and status attributes that describe order lines over time. It references the parent order through XDP_OE_ORDER_HEADERS and is itself referenced by XDP_OE_ORDER_LINE_DETS. This structure is consistent with a satellite attached to an order hub/link, with XDP_OE_ORDER_LINE_DETS functioning as a dependent child set.
Key Information Stored
The table contains 27 documented columns. The most operationally significant are listed below.
- ORDER_NUMBER, ORDER_VERSION, LINE_NUMBER — the composite business key, also enforced by unique index XDP_OE_ORDER_LINES_U1 and the primary key constraint XDP_OE_ORDER_LINES_UK1. These three columns uniquely identify an order line.
- LINE_ITEM_NAME, LINE_ITEM_VERSION, LINE_ITEM_TYPE — identify the catalog or service item being provisioned on the line.
- LINE_ITEM_ACTION — the action requested against the line item (for example add, change, or delete semantics within the provisioning flow).
- PROVISIONING_REQUIRED_FLAG, IS_WORKITEM_FLAG — control flags indicating whether the line requires provisioning and whether it represents a work item.
- STATUS — the current processing state of the line.
- PROVISIONING_SEQUENCE, PRIORITY — ordering and prioritization controls for provisioning execution.
- PROVISIONING_DATE, DUE_DATE, CUSTOMER_REQUIRED_DATE, COMPLETION_DATE — key scheduling and milestone dates used for tracking and jeopardy analysis.
- BUNDLE_ID, BUNDLE_SEQUENCE — group related lines into bundles and define their sequence within the bundle.
- JEOPARDY_ENABLED_FLAG — indicates whether the line participates in jeopardy monitoring.
- STARTING_NUMBER, ENDING_NUMBER — numeric range attributes used for number-range based provisioning items.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, supporting multi-org/data security filtering.
- CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, LAST_UPDATE_LOGIN — standard Oracle audit columns.
No separate surrogate single-column primary key is documented; the primary key is the composite business key, so ORDER_NUMBER, ORDER_VERSION, and LINE_NUMBER serve both as the uniqueness constraint and the join key to related tables.
Common Use Cases and Queries
Typical usage centers on provisioning status reporting, order line tracking, and scheduling analysis. A common query retrieves all lines for a given order:
- SELECT ORDER_NUMBER, ORDER_VERSION, LINE_NUMBER, LINE_ITEM_NAME, STATUS FROM XDP_OE_ORDER_LINES WHERE ORDER_NUMBER = :order_number;
- Lines pending provisioning: filter WHERE PROVISIONING_REQUIRED_FLAG = 'Y' AND COMPLETION_DATE IS NULL.
- Overdue analysis: compare DUE_DATE or CUSTOMER_REQUIRED_DATE against the current date to surface lines in jeopardy, optionally joined with JEOPARDY_ENABLED_FLAG.
- Bundled line sequencing: order by BUNDLE_ID, BUNDLE_SEQUENCE, PROVISIONING_SEQUENCE to reconstruct execution order.
Reporting extracts frequently join to XDP_OE_ORDER_HEADERS for customer and order context, and to XDP_OE_ORDER_LINE_DETS for granular provisioning detail. Security-aware queries should filter on SECURITY_GROUP_ID where responsibility-based data access applies.
Related Objects
- XDP_OE_ORDER_HEADERS — parent order table; join on XDP_OE_ORDER_LINES.ORDER_NUMBER and ORDER_VERSION to XDP_OE_ORDER_HEADERS.
- XDP_OE_ORDER_LINE_DETS — child detail table; join on ORDER_NUMBER, ORDER_VERSION, and LINE_NUMBER.
- FND_SECURITY_GROUPS — referenced by SECURITY_GROUP_ID for data security.
- Oracle SFM Order Entry interface — the process that populates this table.
- Provisioning execution logic — reads STATUS, PROVISIONING_REQUIRED_FLAG, and sequencing columns to drive downstream fulfillment.
-
Table: XDP_OE_ORDER_LINES
12.1.1
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_LINES, object_name:XDP_OE_ORDER_LINES, status:VALID, product: XDP - Provisioning , description: XDP_OE_ORDER_LINES contains all the order line information for an order which is generated by Oracle SFM - Order Entry interface. , implementation_dba_data: XDP.XDP_OE_ORDER_LINES ,
-
Table: XDP_OE_ORDER_LINES
12.2.2
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_LINES, object_name:XDP_OE_ORDER_LINES, status:VALID, product: XDP - Provisioning , description: XDP_OE_ORDER_LINES contains all the order line information for an order which is generated by Oracle SFM - Order Entry interface. , implementation_dba_data: XDP.XDP_OE_ORDER_LINES ,
-
VIEW: XDP.XDP_OE_ORDER_LINES#
12.2.2
owner:XDP, object_type:VIEW, object_name:XDP_OE_ORDER_LINES#, status:VALID,
-
SYNONYM: APPS.XDP_OE_ORDER_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XDP_OE_ORDER_LINES, status:VALID,
-
SYNONYM: APPS.XDP_OE_ORDER_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XDP_OE_ORDER_LINES, status:VALID,
-
VIEW: XDP.XDP_OE_ORDER_LINES#
12.2.2
-
TABLE: XDP.XDP_OE_ORDER_LINES
12.2.2
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_LINES, object_name:XDP_OE_ORDER_LINES, status:VALID,
-
TABLE: XDP.XDP_OE_ORDER_LINES
12.1.1
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_LINES, object_name:XDP_OE_ORDER_LINES, status:VALID,
-
VIEW: APPS.XDP_OE_ORDER_DETAILS_V
12.2.2
-
Table: XDP_OE_ORDER_LINE_DETS
12.1.1
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_LINE_DETS, object_name:XDP_OE_ORDER_LINE_DETS, status:VALID, product: XDP - Provisioning , description: The table XDP_OE_ORDER_LINE_DETAILS contains the order line parameter values for an order which is generated by SFM- Order Entry interface. , implementation_dba_data: XDP.XDP_OE_ORDER_LINE_DETS ,
-
VIEW: APPS.XDP_OE_ORDER_DETAILS_V
12.1.1
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_OE_ORDER, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
Table: XDP_OE_ORDER_HEADERS
12.2.2
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_HEADERS, object_name:XDP_OE_ORDER_HEADERS, status:VALID, product: XDP - Provisioning , description: XDP_OE_ORDER_HEADERS contains the order header information for orders generated by Oracle SFM -Order Entry Interface. , implementation_dba_data: XDP.XDP_OE_ORDER_HEADERS ,
-
Table: XDP_OE_ORDER_LINE_DETS
12.2.2
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_LINE_DETS, object_name:XDP_OE_ORDER_LINE_DETS, status:VALID, product: XDP - Provisioning , description: The table XDP_OE_ORDER_LINE_DETAILS contains the order line parameter values for an order which is generated by SFM- Order Entry interface. , implementation_dba_data: XDP.XDP_OE_ORDER_LINE_DETS ,
-
Table: XDP_OE_ORDER_HEADERS
12.1.1
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_OE_ORDER_HEADERS, object_name:XDP_OE_ORDER_HEADERS, status:VALID, product: XDP - Provisioning , description: XDP_OE_ORDER_HEADERS contains the order header information for orders generated by Oracle SFM -Order Entry Interface. , implementation_dba_data: XDP.XDP_OE_ORDER_HEADERS ,
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_OE_ORDER, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.XDP_OE_ORDER SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
View: XDP_OE_ORDER_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XDP.XDP_OE_ORDER_DETAILS_V, object_name:XDP_OE_ORDER_DETAILS_V, status:VALID, product: XDP - Provisioning , description: This view contains the details for a particular order. , implementation_dba_data: APPS.XDP_OE_ORDER_DETAILS_V ,
-
View: XDP_OE_ORDER_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XDP.XDP_OE_ORDER_DETAILS_V, object_name:XDP_OE_ORDER_DETAILS_V, status:VALID, product: XDP - Provisioning , description: This view contains the details for a particular order. , implementation_dba_data: APPS.XDP_OE_ORDER_DETAILS_V ,
-
APPS.XDP_OE_ORDER SQL Statements
12.2.2
-
VIEW: APPS.XDP_OE_ORDER_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XDP.XDP_OE_ORDER_DETAILS_V, object_name:XDP_OE_ORDER_DETAILS_V, status:VALID,
-
VIEW: APPS.XDP_OE_ORDER_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XDP.XDP_OE_ORDER_DETAILS_V, object_name:XDP_OE_ORDER_DETAILS_V, status:VALID,
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.1.1
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.2.2
-
eTRM - XDP Tables and Views
12.2.2
description: Fulfillment Worklist Details ,
-
eTRM - XDP Tables and Views
12.1.1
description: Fulfillment Worklist Details ,
-
APPS.XDP_OE_ORDER dependencies on XDP_OE_ORDER_LINES
12.1.1
-
APPS.XDP_OE_ORDER dependencies on XDP_OE_ORDER_LINES
12.2.2
-
APPS.XDP_OE_ORDER dependencies on XDP_OE_ORDER
12.1.1
-
APPS.XDP_OE_ORDER dependencies on XDP_OE_ORDER
12.2.2
-
eTRM - XDP Tables and Views
12.2.2
description: Fulfillment Worklist Details ,
-
eTRM - XDP Tables and Views
12.1.1
description: Fulfillment Worklist Details ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1