Search Results line_parameter_name
Overview
The XDP_ORDER_LINEITEM_DETS table is a core data object within the Oracle E-Business Suite Provisioning (XDP) module. It functions as a child table designed to store detailed, parameter-specific information for individual order line items. In the context of service fulfillment workflows, this table enables the capture of granular configuration and provisioning attributes that are essential for processing complex service orders. Its role is to extend the base order line item data, providing the necessary flexibility to model diverse service specifications and technical parameters required for automated provisioning tasks in releases 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is defined to hold detailed parameters for each line item. The primary key is a composite of LINE_ITEM_ID and LINE_PARAMETER_NAME, ensuring uniqueness for each parameter associated with a given line. The LINE_ITEM_ID column is a foreign key that links the detail record to its parent line item in the XDP_ORDER_LINE_ITEMS table. The LINE_PARAMETER_NAME column identifies the specific attribute or property being defined. While the provided metadata does not list all columns, typical implementations would include a column such as LINE_PARAMETER_VALUE to store the actual data for the named parameter, forming a key-value pair structure for flexible data storage.
Common Use Cases and Queries
This table is central to provisioning operations where service characteristics must be precisely defined. Common use cases include storing technical parameters for telecom service activation (e.g., bandwidth, IP address, circuit ID), capturing configuration options for software provisioning, or holding fulfillment instructions for a hardware shipment. A typical reporting query would join this table to its parent to analyze all parameters for a specific order line. For example:
SELECT d.LINE_PARAMETER_NAME, d.LINE_PARAMETER_VALUE FROM XDP_ORDER_LINEITEM_DETS d, XDP_ORDER_LINE_ITEMS l WHERE d.LINE_ITEM_ID = l.LINE_ITEM_ID AND l.LINE_ITEM_ID = :p_line_id;
Data from this table is often consumed by provisioning engines, used in order validation, and referenced in service configuration reports.
Related Objects
The table maintains a strict hierarchical relationship within the XDP order schema. Its primary documented relationship is as a child to the XDP_ORDER_LINE_ITEMS table. The foreign key constraint is explicitly defined on the LINE_ITEM_ID column, linking each detail record to a single parent line item. This relationship is fundamental to the data model, ensuring that all parameter details are correctly scoped to a specific line item. The table is also likely referenced by various XDP provisioning engine packages and views that process order line details, though these are not specified in the provided metadata. The primary key constraint XDP_ORDER_LINEITEM_DETS_PK enforces data integrity for this critical relationship.
-
Table: XDP_ORDER_LINEITEM_DETS
12.2.2
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_ORDER_LINEITEM_DETS, object_name:XDP_ORDER_LINEITEM_DETS, status:VALID, product: XDP - Provisioning , description: Order Line Item Details , implementation_dba_data: XDP.XDP_ORDER_LINEITEM_DETS ,
-
Table: XDP_ORDER_LINEITEM_DETS
12.1.1
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_ORDER_LINEITEM_DETS, object_name:XDP_ORDER_LINEITEM_DETS, status:VALID, product: XDP - Provisioning , description: Order Line Item Details , implementation_dba_data: XDP.XDP_ORDER_LINEITEM_DETS ,