Search Results qpbv_qualifiers
Overview
QPBV_QUALIFIERS is an APPS-owned database view in the Oracle Advanced Pricing (QP) module. It exposes qualifier records used by Oracle E-Business Suite pricing and modifier logic: the eligibility conditions that determine whether a price list line, modifier, or promotion applies to a given transaction. The view is defined over the QP_QUALIFIERS table and applies a filter requiring LIST_HEADER_ID to be non-null, so it returns only qualifiers tied to a price list header or modifier list header. Records not associated with a list header are excluded.
In EBS 12.1.1 and 12.2.2, QPBV_QUALIFIERS serves reporting, integration, and diagnostic purposes. Its name follows the QP "BV" (base view) naming convention and it is commonly referenced in custom concurrent programs, BI Publisher data templates, and outbound integration extracts that must reconstruct the qualifier configuration behind a modifier or price list. Because it is a view, it provides a read-only, denormalized projection of qualifier rows without requiring callers to join or filter the base table directly.
Underlying Base Objects
The view is defined solely over the base table QP_QUALIFIERS, which is exposed in the APPS schema through a SYNONYM. Its defining query selects a fixed set of columns from QP_QUALIFIERS and restricts the result set with the predicate WHERE LIST_HEADER_ID IS NOT NULL. No joins to other QP tables are present in the documented view text, so the view is a lightweight, single-table projection rather than a multi-table join. Callers requiring descriptive flexfield context names, price list names, or modifier names must join QPBV_QUALIFIERS to QP_LIST_HEADERS or QP_LIST_LINES on LIST_HEADER_ID and LIST_LINE_ID.
Key Columns
- LIST_HEADER_ID — Identifies the price list or modifier list header that owns the qualifier.
- LIST_LINE_ID — Identifies the specific list line to which the qualifier applies.
- QUALIFIER_CONTEXT — The context (for example, an attribute or flexfield context) in which the qualifier attribute is evaluated.
- QUALIFIER_ATTRIBUTE — The attribute evaluated, corresponding to the user search term qualifier_attr_value domain; the attribute whose value is tested.
- QUALIFIER_ATTR_VALUE — The value the attribute must satisfy for the qualifier to pass.
- QUALIFIER_ATTR_VALUE_TO — The upper bound of a range, used with COMPARISON_OPERATOR_CODE for BETWEEN-style qualifiers.
- QUALIFIER_GROUPING_NO — Groups multiple qualifier conditions into a logical set.
- COMPARISON_OPERATOR_CODE — The operator applied (equals, not equals, between, and so on).
- QUALIFIER_PRECEDENCE — Evaluation order among competing qualifiers.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective date range for the qualifier.
- CREATED_FROM_RULE_ID — Links a qualifier back to the pricing rule that generated it.
- QUALIFIER_ID — The primary key of the qualifier row.
- Audit columns CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — Standard who-column tracking.
Common Use Cases and Queries
Typical uses include auditing qualifier configuration for a modifier, verifying effective-dated qualifier changes, and feeding qualifier data into external pricing engines. A common query retrieves qualifier attribute values for a specific list line:
SELECT qualifier_id, qualifier_attribute, qualifier_attr_value, qualifier_attr_value_to, comparison_operator_code FROM qpbv_qualifiers WHERE list_header_id = :p_header_id AND list_line_id = :p_line_id;SELECT q.qualifier_id, q.qualifier_attribute, q.qualifier_attr_value, l.name FROM qpbv_qualifiers q, qp_list_headers_vl l WHERE q.list_header_id = l.list_header_id AND l.list_type_code = 'MODIFIER' AND q.qualifier_attr_value = :val;SELECT * FROM qpbv_qualifiers WHERE created_from_rule_id = :rule_id ORDER BY qualifier_precedence;
Because the view filters out rows with a null LIST_HEADER_ID, queries intended to capture standalone or unattached qualifier rows must use QP_QUALIFIERS directly. For all list-attached qualifiers, QPBV_QUALIFIERS provides a documented, reliable access path in both 12.1.1 and 12.2.2.
-
View: QPBV_QUALIFIERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_QUALIFIERS, object_name:QPBV_QUALIFIERS, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Qualifiers attached to a Modifier or a Price List. , implementation_dba_data: APPS.QPBV_QUALIFIERS ,
-
View: QPBV_QUALIFIERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_QUALIFIERS, object_name:QPBV_QUALIFIERS, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Qualifiers attached to a Modifier or a Price List. , implementation_dba_data: APPS.QPBV_QUALIFIERS ,
-
VIEW: APPS.CLN_PROCAT_PRICE_LISTS_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.CLN_PROCAT_PRICE_LISTS_V
12.2.2
-
VIEW: APPS.CLN_PROCAT_PRICE_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PROCAT_PRICE_LISTS_V, object_name:CLN_PROCAT_PRICE_LISTS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CLN_PROCAT_PRICE_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PROCAT_PRICE_LISTS_V, object_name:CLN_PROCAT_PRICE_LISTS_V, status:VALID,
-
View: CLN_PROCAT_PRICE_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PROCAT_PRICE_LISTS_V, object_name:CLN_PROCAT_PRICE_LISTS_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View of the available price lists , implementation_dba_data: APPS.CLN_PROCAT_PRICE_LISTS_V ,
-
View: CLN_PROCAT_PRICE_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_PROCAT_PRICE_LISTS_V, object_name:CLN_PROCAT_PRICE_LISTS_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View of the available price lists , implementation_dba_data: APPS.CLN_PROCAT_PRICE_LISTS_V ,
-
VIEW: APPS.QPBV_QUALIFIERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_QUALIFIERS, object_name:QPBV_QUALIFIERS, status:VALID,
-
VIEW: APPS.QPBV_QUALIFIERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_QUALIFIERS, object_name:QPBV_QUALIFIERS, status:VALID,
-
SYNONYM: APPS.QP_QUALIFIERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:QP_QUALIFIERS, status:VALID,
-
SYNONYM: APPS.QP_QUALIFIERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:QP_QUALIFIERS, status:VALID,
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
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. ,
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
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. ,