Search Results pricing_attribute1
Overview
APPS.OE_PRICE_LIST_LINES_115_V is a backward-compatibility view in Oracle E-Business Suite (12.1.1 and 12.2.2) owned by the APPS schema within the QP — Advanced Pricing product. Its documented purpose is to expose Price List Line information in the same column layout that Oracle Order Management (OE) applications expected in release 11.5, allowing older integrations, custom reports, and dependent code to continue functioning after the pricing data model was refactored under the Advanced Pricing module. The view is marked VALID. It is defined in the ETRM metadata as a subset of the modern price list line data: the defining query selects from OE_PRICE_LIST_LINES (accessed via a synonym) with a WHERE clause restricting results to rows where CUSTOMER_ITEM_ID IS NULL, and it projects a fixed set of columns using NULL literals to fill positions that the 11.5 contract required but that are not physically stored in the current base table.
Underlying Base Objects
The view is defined over the synonym OE_PRICE_LIST_LINES, which resolves to the QP price list line table. Documented referenced base objects also include the packages QP_PRICE_LIST_PVT and QP_UTIL, which support the Advanced Pricing price list line logic and utilities. Because the query filters on CUSTOMER_ITEM_ID IS NULL, the view exposes only item-level price list lines and excludes customer-item-specific lines, which are retained in the underlying table for the richer pricing model. The view itself stores no data; all values are derived at runtime from the base objects. Columns such as CUSTOMER_ITEM_ID, REVISION, REVISION_DATE, REVISION_REASON_CODE, COMMENTS, PRIMARY, and CONVERT_FROM are not carried over from the base table — they are projected as NULL to satisfy the legacy 11.5 column signature.
Key Columns
- ROW_ID, PRICE_LIST_LINE_ID — Row identifier and the primary key of the price list line.
- PRICE_LIST_ID — Identifies the parent price list header to which the line belongs.
- INVENTORY_ITEM_ID — The item for which the price is defined.
- UNIT_CODE, METHOD_CODE — Unit of measure and the pricing method applied to the line.
- LIST_PRICE — The list price value for the item.
- PRICING_RULE_ID, REPRICE_FLAG — Pricing rule reference and the reprice indicator.
- PRICING_CONTEXT, PRICING_ATTRIBUTE1 … PRICING_ATTRIBUTE15 — Descriptive flexfield context and attribute segments, where PRICING_ATTRIBUTE15 is the segment frequently referenced by users searching on "pricing_attribute15".
- START_DATE_ACTIVE, END_DATE_ACTIVE — Effective date range governing when the line is active.
- CONTEXT, ATTRIBUTE1 … ATTRIBUTE15 — Additional descriptive flexfield context and attributes.
- Audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, REQUEST_ID) — Standard EBS who-columns and concurrent program tracking.
Common Use Cases and Queries
The view is most often used by legacy Order Management reports and interfaces that still reference the 11.5 price list line structure, and by developers who need basic list prices with the legacy column set. A representative query selecting the flexfield segment of interest is:
SELECT price_list_id, inventory_item_id, unit_code, list_price, pricing_attribute15
FROM apps.oe_price_list_lines_115_v
WHERE price_list_id = :p_price_list_id
ORDER BY inventory_item_id;
Because CUSTOMER_ITEM_ID is forced to NULL, any code relying on customer-specific pricing through this view will not see those lines; such logic must query the base Advanced Pricing tables directly. Users should also confirm that PRICING_ATTRIBUTE15 is enabled and populated in the pricing descriptive flexfield before depending on it, since context-sensitive segments may be null when not applicable.
-
View: OE_PRICE_LIST_LINES_115_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.OE_PRICE_LIST_LINES_115_V, object_name:OE_PRICE_LIST_LINES_115_V, status:VALID, product: QP - Advanced Pricing , description: Price List Line information. Provided for backward compatibility for other applications. , implementation_dba_data: APPS.OE_PRICE_LIST_LINES_115_V ,
-
View: OE_PRICE_LIST_LINES_115_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.OE_PRICE_LIST_LINES_115_V, object_name:OE_PRICE_LIST_LINES_115_V, status:VALID, product: QP - Advanced Pricing , description: Price List Line information. Provided for backward compatibility for other applications. , implementation_dba_data: APPS.OE_PRICE_LIST_LINES_115_V ,
-
View: QP_PRICE_LIST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICE_LIST_LINES_V, object_name:QP_PRICE_LIST_LINES_V, status:VALID, product: QP - Advanced Pricing , description: Price List Line information. Provided for backward compatibility for other applications. , implementation_dba_data: APPS.QP_PRICE_LIST_LINES_V ,
-
View: QP_PRICE_LIST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_PRICE_LIST_LINES_V, object_name:QP_PRICE_LIST_LINES_V, status:VALID, product: QP - Advanced Pricing , description: Price List Line information. Provided for backward compatibility for other applications. , implementation_dba_data: APPS.QP_PRICE_LIST_LINES_V ,
-
View: QP_HDR_PRICING_ATTRIBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_HDR_PRICING_ATTRIBS_V, object_name:QP_HDR_PRICING_ATTRIBS_V, status:VALID, product: QP - Advanced Pricing , description: View based on QP_ATTRIBUTE_DEFNS. Used when defining sourcing rules for header level pricing attributes for a source system. , implementation_dba_data: APPS.QP_HDR_PRICING_ATTRIBS_V ,
-
View: QP_LINE_PRICING_ATTRIBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LINE_PRICING_ATTRIBS_V, object_name:QP_LINE_PRICING_ATTRIBS_V, status:VALID, product: QP - Advanced Pricing , description: View based on QP_ATTRIBUTE_DEFNS. Used when defining sourcing rules for line level pricing attributes for a source system. , implementation_dba_data: APPS.QP_LINE_PRICING_ATTRIBS_V ,
-
View: QP_HDR_PRICING_ATTRIBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_HDR_PRICING_ATTRIBS_V, object_name:QP_HDR_PRICING_ATTRIBS_V, status:VALID, product: QP - Advanced Pricing , description: View based on QP_ATTRIBUTE_DEFNS. Used when defining sourcing rules for header level pricing attributes for a source system. , implementation_dba_data: APPS.QP_HDR_PRICING_ATTRIBS_V ,
-
View: QP_LINE_PRICING_ATTRIBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_LINE_PRICING_ATTRIBS_V, object_name:QP_LINE_PRICING_ATTRIBS_V, status:VALID, product: QP - Advanced Pricing , description: View based on QP_ATTRIBUTE_DEFNS. Used when defining sourcing rules for line level pricing attributes for a source system. , implementation_dba_data: APPS.QP_LINE_PRICING_ATTRIBS_V ,
-
View: OE_PRC_CONTRACT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.OE_PRC_CONTRACT_LINES_V, object_name:OE_PRC_CONTRACT_LINES_V, status:VALID, product: QP - Advanced Pricing , description: Pricing Agreement line details. Used in the Define Pricing Agreements form. , implementation_dba_data: APPS.OE_PRC_CONTRACT_LINES_V ,
-
View: OE_PRC_CONTRACT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.OE_PRC_CONTRACT_LINES_V, object_name:OE_PRC_CONTRACT_LINES_V, status:VALID, product: QP - Advanced Pricing , description: Pricing Agreement line details. Used in the Define Pricing Agreements form. , implementation_dba_data: APPS.OE_PRC_CONTRACT_LINES_V ,
-
View: OE_PRICE_LIST_LINES_V
12.2.2
product: QP - Advanced Pricing , description: Price List Line information. Provided for backward compatibility for other applications. , implementation_dba_data: Not implemented in this database ,
-
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: OE_PRICE_LIST_LINES_V
12.1.1
product: QP - Advanced Pricing , description: Price List Line information. Provided for backward compatibility for other applications. , implementation_dba_data: Not implemented in this database ,
-
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 ,