Search Results qp_list_attributes_v
Overview
QP_LIST_ATTRIBUTES_V is an Advanced Pricing (QP) view owned by the APPS schema in Oracle E-Business Suite. It provides a denormalized, reporting-oriented projection that links pricing list headers to their constituent lines and to the pricing attributes that qualify those lines. In EBS 12.1.1 and 12.2.2 the object is documented as VALID and is defined as a join across QP_LIST_HEADERS_VL, QP_LIST_LINES, and QP_PRICING_ATTRIBUTES. Its purpose is to expose all list types — price lists, discounts, surcharges, promotions, and related modifier constructs — together with their lines and the pricing attributes attached to them. The view is commonly used as a single access point for pricing analytics, integration extracts, and custom concurrent programs that must reconstruct the commercial rules defined in Advanced Pricing without navigating the underlying normalized model.
Underlying Base Objects
The documented base objects are QP_LIST_HEADERS_VL (a multi-lingual view over the list header base tables), QP_LIST_LINES (a synonym), and QP_PRICING_ATTRIBUTES (a synonym). QP_LIST_HEADERS_VL supplies header-level information such as list name, description, currency, list type, and the header-level active date range. QP_LIST_LINES contributes the individual pricing lines, including item, organization, price, formula references, and line-level active dates. QP_PRICING_ATTRIBUTES provides the qualifying attributes — context, attribute name, and value — that determine when a line applies. Because the view text aliases the header columns with the QPH_ prefix and the line columns with the QPL_ prefix, columns that share a name (notably START_DATE_ACTIVE and END_DATE_ACTIVE) remain distinguishable in the result set.
Key Columns
- ROW_ID, LIST_HEADER_ID, LIST_LINE_ID — surrogate and primary keys used to join back to base pricing entities.
- QPH_START_DATE_ACTIVE / QPH_END_DATE_ACTIVE — header-level effective dates. These are distinct from the line-level counterparts and are the columns users reach for when they search for "qph_start_date_active".
- QPL_START_DATE_ACTIVE / QPL_END_DATE_ACTIVE — line-level effective dates governing when an individual list line is active.
- START_DATE_ACTIVE_FIRST, END_DATE_ACTIVE_FIRST, START_DATE_ACTIVE_SECOND, END_DATE_ACTIVE_SECOND, ACTIVE_DATE_FIRST_TYPE, ACTIVE_DATE_SECOND_TYPE — secondary active-date windows that support time-phased list pricing.
- LIST_TYPE_CODE and LIST_LINE_TYPE_CODE — identify whether the record is a price list, discount, or other modifier, and the nature of the line.
- CURRENCY_CODE, LIST_PRICE, LIST_PRICE_UOM_CODE, PERCENT_PRICE — the pricing value itself and its currency/UOM context.
- INVENTORY_ITEM_ID, ORGANIZATION_ID, RELATED_ITEM_ID, PRODUCT_PRECEDENCE — item and organization scoping of the line.
- PRICE_BREAK_TYPE_CODE, ARITHMETIC_OPERATOR, OPERAND, PRICING_PHASE_ID, PRICING_GROUP_SEQUENCE — modifier behavior, calculation, and precedence controls.
- ACTIVE_FLAG, GSA_INDICATOR, PRORATE_FLAG, AUTOMATIC_FLAG — operational flags governing list and line behavior.
Common Use Cases and Queries
The view is typically used to list active price lists and their lines within a date window, to extract modifier and discount definitions for reconciliation, and to trace pricing attributes for integration with order capture or quoting systems. A representative query filtering on the header active date columns follows:
SELECT list_header_id, list_line_id, name, list_type_code, currency_code, QPH_START_DATE_ACTIVE, QPH_END_DATE_ACTIVE, QPL_START_DATE_ACTIVE, QPL_END_DATE_ACTIVE FROM apps.qp_list_attributes_v WHERE list_type_code = 'PRL' AND QPH_START_DATE_ACTIVE <= SYSDATE AND NVL(QPH_END_DATE_ACTIVE, SYSDATE) >= SYSDATE;
Because the view joins headers, lines, and attributes, results can multiply across attribute combinations; when only header or line rows are required, aggregate with DISTINCT or restrict on pricing attribute columns to control cardinality. All access should be performed through the APPS schema or a synonym, consistent with standard EBS security and product schema conventions.
-
View: QP_LIST_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_ATTRIBUTES_V, object_name:QP_LIST_ATTRIBUTES_V, status:VALID, product: QP - Advanced Pricing , description: View that joins QP_LIST_HEADERS_VL (MLS View on Base Tables), QP_LIST_LINES and QP_PRICING_ATTRIBUTES. This view is used to retrieve all the list types (E.g Price Lists, Discounts etc..), their lines and pricing attributes. All the columns , implementation_dba_data: APPS.QP_LIST_ATTRIBUTES_V ,
-
View: QP_LIST_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_ATTRIBUTES_V, object_name:QP_LIST_ATTRIBUTES_V, status:VALID, product: QP - Advanced Pricing , description: View that joins QP_LIST_HEADERS_VL (MLS View on Base Tables), QP_LIST_LINES and QP_PRICING_ATTRIBUTES. This view is used to retrieve all the list types (E.g Price Lists, Discounts etc..), their lines and pricing attributes. All the columns , implementation_dba_data: APPS.QP_LIST_ATTRIBUTES_V ,
-
View: XNC_RELITEM_PL_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_RELITEM_PL_V retrieves items for all relationship types for an item. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_RELITEM_PL_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_RELITEM_PL_V retrieves items for all relationship types for an item. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_BILLING_PRICELIST_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view provides the list of Price list / Discounts, item/pricing information in Oracle Sales for Communicationsfrom the Advanced Pricing. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PRICELINES_NAV
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Runtime Product Catalog Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PRICELINES_NAV
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Runtime Product Catalog Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_MODLIST_ITEM_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_MODLIST_ITEM_V retrieves adjustments or discounts available for an Inventory Item. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PRICELIST_ITEM_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_PRICELIST_ITEM_V retrieves price lists, other than adjustment or discount lists, available for an Inventory Item. , implementation_dba_data: Not implemented in this database ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
View: XNC_BILLING_PRICELIST_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view provides the list of Price list / Discounts, item/pricing information in Oracle Sales for Communicationsfrom the Advanced Pricing. , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PV_PARTNER_PROGRAM_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PV_PARTNER_PROGRAM_PVT, status:VALID,
-
View: XNC_PRICELIST_ITEM_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_PRICELIST_ITEM_V retrieves price lists, other than adjustment or discount lists, available for an Inventory Item. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_MODLIST_ITEM_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_MODLIST_ITEM_V retrieves adjustments or discounts available for an Inventory Item. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PLLINES_ALL_NAV
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Runtime Product Catalog Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PLLINES_ALL_NAV
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Runtime Product Catalog Navigator tree , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PV_PARTNER_PROGRAM_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PV_PARTNER_PROGRAM_PVT, status:VALID,
-
View: XNC_BILLING_SYSTEM_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view provides a mapping of the item/pricing information in Oracle Sales for Communications with external billing systems that it interacts with. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_BILLING_SYSTEM_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view provides a mapping of the item/pricing information in Oracle Sales for Communications with external billing systems that it interacts with. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.QP_PRICING_ATTRIBUTES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:QP_PRICING_ATTRIBUTES, status:VALID,
-
VIEW: APPS.QP_LIST_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_ATTRIBUTES_V, object_name:QP_LIST_ATTRIBUTES_V, status:VALID,
-
VIEW: APPS.QP_LIST_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_ATTRIBUTES_V, object_name:QP_LIST_ATTRIBUTES_V, status:VALID,
-
SYNONYM: APPS.QP_PRICING_ATTRIBUTES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:QP_PRICING_ATTRIBUTES, status:VALID,
-
VIEW: APPS.QP_LIST_HEADERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_HEADERS_VL, object_name:QP_LIST_HEADERS_VL, status:VALID,
-
VIEW: APPS.QP_LIST_HEADERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_HEADERS_VL, object_name:QP_LIST_HEADERS_VL, status:VALID,
-
SYNONYM: APPS.QP_LIST_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:QP_LIST_LINES, status:VALID,
-
SYNONYM: APPS.QP_LIST_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:QP_LIST_LINES, status:VALID,
-
APPS.PV_PARTNER_PROGRAM_PVT dependencies on QP_LIST_ATTRIBUTES_V
12.1.1
-
APPS.PV_PARTNER_PROGRAM_PVT dependencies on QP_LIST_ATTRIBUTES_V
12.2.2
-
APPS.PV_PARTNER_PROGRAM_PVT SQL Statements
12.1.1
-
APPS.PV_PARTNER_PROGRAM_PVT SQL Statements
12.2.2
-
eTRM - QP Tables and Views
12.1.1
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - QP Tables and Views
12.2.2
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
APPS.PV_PARTNER_PROGRAM_PVT dependencies on PV_PARTNER_PROGRAM_B
12.2.2
-
APPS.PV_PARTNER_PROGRAM_PVT dependencies on PV_PARTNER_PROGRAM_B
12.1.1
-
APPS.PV_PARTNER_PROGRAM_PVT dependencies on DUAL
12.1.1
-
APPS.PV_PARTNER_PROGRAM_PVT dependencies on DUAL
12.2.2
-
PACKAGE BODY: APPS.PV_PARTNER_PROGRAM_PVT
12.2.2
-
PACKAGE BODY: APPS.PV_PARTNER_PROGRAM_PVT
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - QP Tables and Views
12.2.2
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - QP Tables and Views
12.1.1
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,