Search Results comparison_operator_code
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.
-
Lookup Type: COMPARISON_OPERATOR_CODE
12.2.2
product: QP - Advanced Pricing , meaning: COMPARISON_OPERATOR_CODE , description: allowed values for comparison operator code ,
-
Lookup Type: COMPARISON_OPERATOR_CODE
12.1.1
product: QP - Advanced Pricing , meaning: COMPARISON_OPERATOR_CODE , description: allowed values for comparison operator code ,
-
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: QPFV_QUALIFIERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_QUALIFIERS, object_name:QPFV_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.QPFV_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: QP_LIMIT_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIMIT_ATTRIBUTES_V, object_name:QP_LIMIT_ATTRIBUTES_V, status:VALID, product: QP - Advanced Pricing , implementation_dba_data: APPS.QP_LIMIT_ATTRIBUTES_V ,
-
View: QP_LIMIT_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIMIT_ATTRIBUTES_V, object_name:QP_LIMIT_ATTRIBUTES_V, status:VALID, product: QP - Advanced Pricing , implementation_dba_data: APPS.QP_LIMIT_ATTRIBUTES_V ,
-
View: QPFV_QUALIFIERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_QUALIFIERS, object_name:QPFV_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.QPFV_QUALIFIERS ,
-
View: QP_PRICING_ATTR_GET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICING_ATTR_GET_V, object_name:QP_PRICING_ATTR_GET_V, status:VALID, product: QP - Advanced Pricing , description: View of Benefit or Get Products for a Modifier. Used by Modifiers Form. , implementation_dba_data: APPS.QP_PRICING_ATTR_GET_V ,
-
View: QP_PRICING_ATTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICING_ATTR_V, object_name:QP_PRICING_ATTR_V, status:VALID, product: QP - Advanced Pricing , description: View of additonal qualification items for modifiers. Used by Modifiers Form (for Additional buy products block). , implementation_dba_data: APPS.QP_PRICING_ATTR_V ,
-
View: QP_PRICING_ATTR_GET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICING_ATTR_GET_V, object_name:QP_PRICING_ATTR_GET_V, status:VALID, product: QP - Advanced Pricing , description: View of Benefit or Get Products for a Modifier. Used by Modifiers Form. , implementation_dba_data: APPS.QP_PRICING_ATTR_GET_V ,
-
View: QP_PRICING_ATTR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICING_ATTR_V, object_name:QP_PRICING_ATTR_V, status:VALID, product: QP - Advanced Pricing , description: View of additonal qualification items for modifiers. Used by Modifiers Form (for Additional buy products block). , implementation_dba_data: APPS.QP_PRICING_ATTR_V ,
-
View: QPBV_FACTOR_ASSO_PRICING_ATTRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_FACTOR_ASSO_PRICING_ATTRS, object_name:QPBV_FACTOR_ASSO_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of associated pricing attributes of a Factor list. , implementation_dba_data: APPS.QPBV_FACTOR_ASSO_PRICING_ATTRS ,
-
View: QPBV_FACTOR_ASSO_PRICING_ATTRS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_FACTOR_ASSO_PRICING_ATTRS, object_name:QPBV_FACTOR_ASSO_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of associated pricing attributes of a Factor list. , implementation_dba_data: APPS.QPBV_FACTOR_ASSO_PRICING_ATTRS ,
-
View: QPBV_PRICING_ATTRIBUTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_PRICING_ATTRIBUTES, object_name:QPBV_PRICING_ATTRIBUTES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Pricing Attributes attached to a Modifier or a Price List. , implementation_dba_data: APPS.QPBV_PRICING_ATTRIBUTES ,
-
View: QPBV_PRICING_ATTRIBUTES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_PRICING_ATTRIBUTES, object_name:QPBV_PRICING_ATTRIBUTES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Pricing Attributes attached to a Modifier or a Price List. , implementation_dba_data: APPS.QPBV_PRICING_ATTRIBUTES ,
-
View: QPBV_FACTOR_BASE_PRICING_ATTRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_FACTOR_BASE_PRICING_ATTRS, object_name:QPBV_FACTOR_BASE_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of base pricing attributes of a Factor list. , implementation_dba_data: APPS.QPBV_FACTOR_BASE_PRICING_ATTRS ,
-
View: QPBV_FACTOR_BASE_PRICING_ATTRS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_FACTOR_BASE_PRICING_ATTRS, object_name:QPBV_FACTOR_BASE_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of base pricing attributes of a Factor list. , implementation_dba_data: APPS.QPBV_FACTOR_BASE_PRICING_ATTRS ,
-
View: QPBV_ADDITIONAL_BUY_PRODUCTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_ADDITIONAL_BUY_PRODUCTS, object_name:QPBV_ADDITIONAL_BUY_PRODUCTS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information about the additional BUY product in a discount. For example, Buy 1 Shampoo and 1 Conditioner, Get 20% discount. This view gives information about additional product - 1 conditioner. , implementation_dba_data: APPS.QPBV_ADDITIONAL_BUY_PRODUCTS ,
-
View: QPFV_FACTOR_ASSO_PRICING_ATTRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_FACTOR_ASSO_PRICING_ATTRS, object_name:QPFV_FACTOR_ASSO_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of associated pricing attributes of a Factor list. , implementation_dba_data: APPS.QPFV_FACTOR_ASSO_PRICING_ATTRS ,
-
View: QPBV_ADDITIONAL_BUY_PRODUCTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_ADDITIONAL_BUY_PRODUCTS, object_name:QPBV_ADDITIONAL_BUY_PRODUCTS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information about the additional BUY product in a discount. For example, Buy 1 Shampoo and 1 Conditioner, Get 20% discount. This view gives information about additional product - 1 conditioner. , implementation_dba_data: APPS.QPBV_ADDITIONAL_BUY_PRODUCTS ,
-
View: QPFV_FACTOR_ASSO_PRICING_ATTRS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_FACTOR_ASSO_PRICING_ATTRS, object_name:QPFV_FACTOR_ASSO_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of associated pricing attributes of a Factor list. , implementation_dba_data: APPS.QPFV_FACTOR_ASSO_PRICING_ATTRS ,
-
View: QPFV_PRICING_ATTRIBUTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_PRICING_ATTRIBUTES, object_name:QPFV_PRICING_ATTRIBUTES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Pricing Attributes attached to a Modifier or a Price List. , implementation_dba_data: APPS.QPFV_PRICING_ATTRIBUTES ,
-
View: QP_QUALIFIER_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_QUALIFIER_RULES_V, object_name:QP_QUALIFIER_RULES_V, status:VALID, product: QP - Advanced Pricing , description: View of Qualifier Rule information , implementation_dba_data: APPS.QP_QUALIFIER_RULES_V ,
-
View: QPBV_PRICE_BREAK_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_PRICE_BREAK_LINES, object_name:QPBV_PRICE_BREAK_LINES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about the price break lines attached to a Price Break header of a Modifier or a Price List. , implementation_dba_data: APPS.QPBV_PRICE_BREAK_LINES ,
-
View: QPBV_PRICE_BREAK_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPBV_PRICE_BREAK_LINES, object_name:QPBV_PRICE_BREAK_LINES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about the price break lines attached to a Price Break header of a Modifier or a Price List. , implementation_dba_data: APPS.QPBV_PRICE_BREAK_LINES ,
-
View: QPFV_FACTOR_BASE_PRICING_ATTRS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_FACTOR_BASE_PRICING_ATTRS, object_name:QPFV_FACTOR_BASE_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of base pricing attributes of a Factor list. , implementation_dba_data: APPS.QPFV_FACTOR_BASE_PRICING_ATTRS ,
-
View: QPFV_FACTOR_BASE_PRICING_ATTRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_FACTOR_BASE_PRICING_ATTRS, object_name:QPFV_FACTOR_BASE_PRICING_ATTRS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information of base pricing attributes of a Factor list. , implementation_dba_data: APPS.QPFV_FACTOR_BASE_PRICING_ATTRS ,
-
View: QPFV_PRICING_ATTRIBUTES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_PRICING_ATTRIBUTES, object_name:QPFV_PRICING_ATTRIBUTES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Pricing Attributes attached to a Modifier or a Price List. , implementation_dba_data: APPS.QPFV_PRICING_ATTRIBUTES ,
-
View: QP_QUALIFIER_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_QUALIFIER_RULES_V, object_name:QP_QUALIFIER_RULES_V, status:VALID, product: QP - Advanced Pricing , description: View of Qualifier Rule information , implementation_dba_data: APPS.QP_QUALIFIER_RULES_V ,
-
View: QPFV_PRICE_BREAK_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_PRICE_BREAK_LINES, object_name:QPFV_PRICE_BREAK_LINES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about the price break lines attached to a Price Break header of a Modifier or a Price List. , implementation_dba_data: APPS.QPFV_PRICE_BREAK_LINES ,
-
View: QPFV_PRICE_BREAK_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_PRICE_BREAK_LINES, object_name:QPFV_PRICE_BREAK_LINES, status:VALID, product: QP - Advanced Pricing , description: This view gives information about the price break lines attached to a Price Break header of a Modifier or a Price List. , implementation_dba_data: APPS.QPFV_PRICE_BREAK_LINES ,
-
View: QPFV_ADDITIONAL_BUY_PRODUCTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_ADDITIONAL_BUY_PRODUCTS, object_name:QPFV_ADDITIONAL_BUY_PRODUCTS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information about the additional BUY product in a discount. For example, Buy 1 Shampoo and 1 Conditioner, Get 20% discount. This view gives information about additional product - 1 conditioner. , implementation_dba_data: APPS.QPFV_ADDITIONAL_BUY_PRODUCTS ,
-
View: QPFV_ADDITIONAL_BUY_PRODUCTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_ADDITIONAL_BUY_PRODUCTS, object_name:QPFV_ADDITIONAL_BUY_PRODUCTS, status:VALID, product: QP - Advanced Pricing , description: This view gives the information about the additional BUY product in a discount. For example, Buy 1 Shampoo and 1 Conditioner, Get 20% discount. This view gives information about additional product - 1 conditioner. , implementation_dba_data: APPS.QPFV_ADDITIONAL_BUY_PRODUCTS ,
-
View: QP_SECONDARY_PRICE_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_SECONDARY_PRICE_LISTS_V, object_name:QP_SECONDARY_PRICE_LISTS_V, status:VALID, product: QP - Advanced Pricing , description: Secondary price lists for each price list. Used for Secondary Price Lists block in Price Lists form. , implementation_dba_data: APPS.QP_SECONDARY_PRICE_LISTS_V ,
-
View: QP_SECONDARY_PRICE_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_SECONDARY_PRICE_LISTS_V, object_name:QP_SECONDARY_PRICE_LISTS_V, status:VALID, product: QP - Advanced Pricing , description: Secondary price lists for each price list. Used for Secondary Price Lists block in Price Lists form. , implementation_dba_data: APPS.QP_SECONDARY_PRICE_LISTS_V ,
-
View: QP_HDR_LVL_QUAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_HDR_LVL_QUAL_V, object_name:QP_HDR_LVL_QUAL_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_QUALIFIERS. This view is used to retrieve all the list types (E.g Price Lists, Discounts etc..) and their lines whose headers are associate with pricing qual , implementation_dba_data: APPS.QP_HDR_LVL_QUAL_V ,
-
View: QP_HDR_LVL_QUAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_HDR_LVL_QUAL_V, object_name:QP_HDR_LVL_QUAL_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_QUALIFIERS. This view is used to retrieve all the list types (E.g Price Lists, Discounts etc..) and their lines whose headers are associate with pricing qual , implementation_dba_data: APPS.QP_HDR_LVL_QUAL_V ,
-
View: QP_PRICE_FACTORS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICE_FACTORS_V, object_name:QP_PRICE_FACTORS_V, status:VALID, product: QP - Advanced Pricing , description: View to get a list of those formula lines which are of type Price Modifier List along with the List of Adjustment Factors & Ranges making up the formula line and the discount modifier list to which the formula is attached. , implementation_dba_data: APPS.QP_PRICE_FACTORS_V ,
-
View: QP_PRICE_FACTORS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICE_FACTORS_V, object_name:QP_PRICE_FACTORS_V, status:VALID, product: QP - Advanced Pricing , description: View to get a list of those formula lines which are of type Price Modifier List along with the List of Adjustment Factors & Ranges making up the formula line and the discount modifier list to which the formula is attached. , implementation_dba_data: APPS.QP_PRICE_FACTORS_V ,
-
View: QP_LINE_LVL_QUAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LINE_LVL_QUAL_V, object_name:QP_LINE_LVL_QUAL_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_QUALIFIERS. This view is used to retrieve all the list types (E.g Price Lists, Discounts etc..) and their lines whose lines are associated with pricing qual , implementation_dba_data: APPS.QP_LINE_LVL_QUAL_V ,
-
View: QP_LINE_LVL_QUAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LINE_LVL_QUAL_V, object_name:QP_LINE_LVL_QUAL_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_QUALIFIERS. This view is used to retrieve all the list types (E.g Price Lists, Discounts etc..) and their lines whose lines are associated with pricing qual , implementation_dba_data: APPS.QP_LINE_LVL_QUAL_V ,
-
View: QP_PRICE_BREAKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICE_BREAKS_V, object_name:QP_PRICE_BREAKS_V, status:VALID, product: QP - Advanced Pricing , description: Price or Modifier Break lines information. Used by Price List and Modifiers form. , implementation_dba_data: APPS.QP_PRICE_BREAKS_V ,
-
View: QP_PRICE_BREAKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICE_BREAKS_V, object_name:QP_PRICE_BREAKS_V, status:VALID, product: QP - Advanced Pricing , description: Price or Modifier Break lines information. Used by Price List and Modifiers form. , implementation_dba_data: APPS.QP_PRICE_BREAKS_V ,
-
View: QP_LINES_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LINES_SUMMARY_V, object_name:QP_LINES_SUMMARY_V, status:VALID, product: QP - Advanced Pricing , description: This view is used to display the Modifier Lines summary for a given query criteria in the Pricing Organizer. , implementation_dba_data: APPS.QP_LINES_SUMMARY_V ,
-
View: QP_LINES_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LINES_SUMMARY_V, object_name:QP_LINES_SUMMARY_V, status:VALID, product: QP - Advanced Pricing , description: This view is used to display the Modifier Lines summary for a given query criteria in the Pricing Organizer. , implementation_dba_data: APPS.QP_LINES_SUMMARY_V ,
-
View: QP_LIST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_LINES_V, object_name:QP_LIST_LINES_V, status:VALID, product: QP - Advanced Pricing , description: Price List Lines information - used for List Lines block in Price Lists form. , implementation_dba_data: APPS.QP_LIST_LINES_V ,
-
View: QP_LIST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LIST_LINES_V, object_name:QP_LIST_LINES_V, status:VALID, product: QP - Advanced Pricing , description: Price List Lines information - used for List Lines block in Price Lists form. , implementation_dba_data: APPS.QP_LIST_LINES_V ,
-
View: QP_MODIFIER_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_MODIFIER_SUMMARY_V, object_name:QP_MODIFIER_SUMMARY_V, status:VALID, product: QP - Advanced Pricing , description: Modifier Summary information for Modifier Lists. Used by the Modifiers form (for summary block). , implementation_dba_data: APPS.QP_MODIFIER_SUMMARY_V ,
-
View: QP_MODIFIER_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_MODIFIER_SUMMARY_V, object_name:QP_MODIFIER_SUMMARY_V, status:VALID, product: QP - Advanced Pricing , description: Modifier Summary information for Modifier Lists. Used by the Modifiers form (for summary block). , implementation_dba_data: APPS.QP_MODIFIER_SUMMARY_V ,