Search Results xdp_oe_order_line_dets
Overview
The table XDP_OE_ORDER_LINE_DETS is an Oracle E-Business Suite table owned by the XDP schema, which supports the Provisioning product module. It stores the order line parameter values for orders generated by the SFM (Service Fulfillment Manager) Order Entry interface. Within EBS 12.1.1 and 12.2.2, this table functions as a child detail table of the order line header information, capturing the individual name/value parameters that define each configurable or provisionable attribute of an order line. Each row represents a single parameter associated with a specific order line.
From a data-modeling perspective, the metadata's heuristic Data Vault classification suggests this object is satellite-leaning. This characterization is appropriate because the table holds descriptive, volatile attribute values (the individual parameters) that are functionally dependent on the parent order line key rather than serving as an independent hub or link. The parameter attributes are typically loaded and updated as order provisioning data changes over time.
Key Information Stored
The table contains 12 documented columns. The most significant are the composite key columns and the parameter payload columns:
- ORDER_NUMBER — Identifies the parent order; part of the foreign key to XDP_OE_ORDER_LINES.
- ORDER_VERSION — Identifies the version of the order, allowing multiple iterations to coexist; part of the foreign key to XDP_OE_ORDER_LINES.
- LINE_NUMBER — Identifies the specific order line within the order and version; part of the foreign key to XDP_OE_ORDER_LINES.
- PARAMETER_NAME — The name of the parameter being captured for the order line.
- PARAMETER_VALUE — The value assigned to the named parameter.
- PARAMETER_REF_VALUE — A reference value associated with the parameter, used where the parameter points to an external or lookup reference.
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS, enforcing multi-tenant/multi-org data security partitioning.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns tracking record creation and modification.
The documented unique index XDP_OE_ORDER_LINE_DETS_U1 (also represented by the primary key constraint XDP_OE_ORDER_LINE_DETS_UK1) spans ORDER_NUMBER, ORDER_VERSION, LINE_NUMBER, and PARAMETER_NAME. This combination forms the business-key candidate uniquely identifying each parameter row. No separate surrogate key column is documented; the unique index itself acts as the primary identifier.
Common Use Cases and Queries
Typical use cases include reporting on provisioning parameters per order line, extracting configured values for downstream fulfillment systems, and auditing parameter changes across order versions. A common query pattern joins the detail table to its parent order line table:
- Retrieve all parameters for a given order line:
SELECT PARAMETER_NAME, PARAMETER_VALUE, PARAMETER_REF_VALUE FROM XDP.XDP_OE_ORDER_LINE_DETS WHERE ORDER_NUMBER = :order_number AND ORDER_VERSION = :order_version AND LINE_NUMBER = :line_number; - Pivot parameter names into columns for reporting: use conditional aggregation over PARAMETER_NAME to produce a wide-format view of each order line's configuration.
- Join to the parent line table to correlate parameters with line-level attributes:
SELECT l.*, d.PARAMETER_NAME, d.PARAMETER_VALUE FROM XDP.XDP_OE_ORDER_LINE_DETS d JOIN XDP.XDP_OE_ORDER_LINES l ON d.ORDER_NUMBER = l.ORDER_NUMBER AND d.ORDER_VERSION = l.ORDER_VERSION AND d.LINE_NUMBER = l.LINE_NUMBER;
Because orders can exist in multiple versions, queries should always include ORDER_VERSION in the predicate to avoid returning values from superseded configurations.
Related Objects
The following objects are the most significant dependencies and references for XDP_OE_ORDER_LINE_DETS:
- XDP_OE_ORDER_LINES — The immediate parent table; joined on ORDER_NUMBER, ORDER_VERSION, and LINE_NUMBER.
- FND_SECURITY_GROUPS — Referenced via SECURITY_GROUP_ID for data security partitioning.
- SFM Order Entry interface objects — The SFM Order Entry interface populates this table during order generation; related staging and interface tables in the XDP schema feed these parameter values.
- XDP_OE_ORDER_HEADERS (implied parent hierarchy) — The order header level from which order lines and their parameters derive, useful when reporting order-to-parameter rollups.
Administrators should treat XDP_OE_ORDER_LINE_DETS as a detail satellite to the order line model, ensuring referential integrity with XDP_OE_ORDER_LINES is maintained whenever order data is purged or archived.
-
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 ,
-
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 ,
-
SYNONYM: APPS.XDP_OE_ORDER_LINE_DETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XDP_OE_ORDER_LINE_DETS, status:VALID,
-
VIEW: XDP.XDP_OE_ORDER_LINE_DETS#
12.2.2
owner:XDP, object_type:VIEW, object_name:XDP_OE_ORDER_LINE_DETS#, status:VALID,
-
VIEW: XDP.XDP_OE_ORDER_LINE_DETS#
12.2.2
-
SYNONYM: APPS.XDP_OE_ORDER_LINE_DETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XDP_OE_ORDER_LINE_DETS, status:VALID,
-
TABLE: XDP.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,
-
TABLE: XDP.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,
-
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 ,
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_OE_ORDER, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
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 ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_OE_ORDER, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
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.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.XDP_OE_ORDER SQL Statements
12.1.1
-
APPS.XDP_OE_ORDER SQL Statements
12.2.2
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.1.1
-
PACKAGE BODY: APPS.XDP_OE_ORDER
12.2.2
-
APPS.XDP_OE_ORDER dependencies on XDP_OE_ORDER_LINE_DETS
12.2.2
-
APPS.XDP_OE_ORDER dependencies on XDP_OE_ORDER_LINE_DETS
12.1.1
-
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
12.2.2
-
APPS.XDP_OE_ORDER dependencies on XDP_OE_ORDER
12.1.1
-
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