Search Results automatic_flag
Overview
The view OKX_QP_LIST_LINES_V is a reporting and integration object owned by the APPS schema in Oracle E-Business Suite. It belongs to the OKX – Contracts Integration product module, which provides the bridge between Oracle Advanced Pricing and Oracle Contracts. The view exposes pricing list line data in a simplified, integration-oriented format, presenting a curated subset of columns from the underlying pricing list line table. Its principal role is to serve as a stable read interface for contract integration processes and downstream reporting that must reference price list lines without directly querying the base Advanced Pricing tables.
Within the EBS 12.1.1 and 12.2.2 data models, the view functions as a lightweight projection over the QP_LIST_LINES base object. It does not perform joins to additional tables; instead, it isolates the attributes most relevant to contract pricing integration, including price breaks, modifiers, formulas, and percentage-based pricing. This makes it suitable for use in concurrent programs, pl/sql APIs, and business intelligence queries where a narrow, predictable column set is preferable to the full breadth of the base table.
Underlying Base Objects
The documented metadata identifies a single referenced base object: QP_LIST_LINES, accessed through a synonym. The view text confirms this relationship directly, selecting all columns from QP_LIST_LINES with the alias QPL. No additional joins, unions, or aggregations are present in the documented definition.
Because the view is defined entirely over QP_LIST_LINES, it inherits the transactional and referential characteristics of that table. Price list headers are referenced through LIST_HEADER_ID, which links each line to its parent price list in QP_LIST_HEADERS. Price breaks, modifier levels, and pricing phases are represented as attribute columns rather than through joins, keeping the view flat and efficient for direct query use.
Key Columns
- LIST_HEADER_ID – Identifier of the parent price list header to which the line belongs.
- LIST_LINE_TYPE_CODE – Classifies the line as a price break, modifier, or other configured line type.
- LIST_PRICE and LIST_PRICE_UOM_CODE – The absolute list price and its unit of measure.
- PERCENT_PRICE – The percentage value used in percentage-based pricing, the column most directly associated with the search term "percent_price".
- ARITHMETIC_OPERATOR and OPERAND – Define the arithmetic applied when the line acts as a modifier.
- PRICE_BREAK_TYPE_CODE – Indicates whether the break is point, range, or block based.
- PRICE_BY_FORMULA_ID – Reference to a pricing formula when the price is derived rather than entered.
- MODIFIER_LEVEL_CODE – Specifies the level at which a modifier applies.
- START_DATE_ACTIVE and END_DATE_ACTIVE – Effective dating for the line.
- OVERRIDE_FLAG and AUTOMATIC_FLAG – Control whether the line can be overridden or applied automatically.
- INVENTORY_ITEM_ID, ORGANIZATION_ID, PRICING_PHASE_ID, and PRICING_GROUP_SEQUENCE – Provide item, organization, and pricing phase context.
Common Use Cases and Queries
A typical integration query retrieves percentage-based pricing lines for a specific price list, filtering on PERCENT_PRICE and the effective date range. For example:
SELECT list_header_id, list_line_no, percent_price, arithmetic_operator, operand FROM okx_qp_list_lines_v WHERE list_header_id = :p_header_id AND percent_price IS NOT NULL AND SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE + 1);
Other common scenarios include extracting price breaks by PRICE_BREAK_TYPE_CODE, validating modifier configuration by MODIFIER_LEVEL_CODE, and auditing lines governed by formulas through PRICE_BY_FORMULA_ID. Because the view is a direct projection of QP_LIST_LINES, queries perform comparably to the base table while benefiting from a reduced, integration-focused column set.
-
View: OKX_QP_LIST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QP_LIST_LINES_V, object_name:OKX_QP_LIST_LINES_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_QP_LIST_LINES_V ,
-
View: OKX_QP_LIST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QP_LIST_LINES_V, object_name:OKX_QP_LIST_LINES_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_QP_LIST_LINES_V ,
-
View: OKX_LIST_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_LIST_HEADERS_V, object_name:OKX_LIST_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Header information for all types of lists , implementation_dba_data: APPS.OKX_LIST_HEADERS_V ,
-
View: OKX_LIST_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_LIST_HEADERS_V, object_name:OKX_LIST_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Header information for all types of lists , implementation_dba_data: APPS.OKX_LIST_HEADERS_V ,
-
View: OKX_ORD_PRC_ADJMNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ORD_PRC_ADJMNTS_V, object_name:OKX_ORD_PRC_ADJMNTS_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_ORD_PRC_ADJMNTS_V ,
-
View: OKX_ORD_PRC_ADJMNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ORD_PRC_ADJMNTS_V, object_name:OKX_ORD_PRC_ADJMNTS_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_ORD_PRC_ADJMNTS_V ,
-
View: OKX_QTE_PRC_ADJMNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QTE_PRC_ADJMNTS_V, object_name:OKX_QTE_PRC_ADJMNTS_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_QTE_PRC_ADJMNTS_V ,
-
View: OKX_QTE_PRC_ADJMNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QTE_PRC_ADJMNTS_V, object_name:OKX_QTE_PRC_ADJMNTS_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_QTE_PRC_ADJMNTS_V ,