Search Results convert_from
Overview
APPS.OE_PRICE_LIST_LINES_115_V is a compatibility view in the Oracle E-Business Suite Order Management and Advanced Pricing modules. It exposes a subset of the OE_PRICE_LIST_LINES entity, filtered to rows where CUSTOMER_ITEM_ID is null, and projects fixed NULL placeholders into columns that exist in a later, more feature-rich definition of the same logical entity. The view name suffix "115" signals that it reproduces the row shape and semantics of the price list line structure as it existed at release 11.5, allowing code written against that older interface to continue functioning against the 12.1.1 and 12.2.2 data model without modification.
Its principal role is backward compatibility for reports, concurrent programs, and integration interfaces that reference customer-item-agnostic price list lines. Because it is owned by APPS and defined over synonyms and public packages, it is intended to be queried directly by custom code rather than treated as a base table.
Underlying Base Objects
The view is defined over three documented base objects: the OE_PRICE_LIST_LINES synonym (which resolves to the actual price list line table in the APPS schema), and the QP_PRICE_LIST_PVT and QP_UTIL packages. The two packages belong to the Advanced Pricing (QP) module and provide the pricing business logic; their presence in the dependency chain indicates that the view participates in the pricing engine's price list resolution path. The driving table, however, is OE_PRICE_LIST_LINES, from which all persisted values are drawn.
The WHERE clause CUSTOMER_ITEM_ID IS NULL restricts output to price list lines that are not tied to a specific customer item. Lines associated with customer items are therefore excluded and must be sourced from a different view or directly from the base object.
Key Columns
- ROW_ID — Row identifier, exposed unchanged from the base table.
- PRICE_LIST_LINE_ID — Primary key of the price list line.
- PRICE_LIST_ID — Foreign key to the price list header to which the line belongs.
- INVENTORY_ITEM_ID — The item being priced.
- UNIT_CODE, METHOD_CODE, LIST_PRICE — Unit of measure, pricing method, and the list price value itself.
- PRICING_RULE_ID, REPRICE_FLAG — The associated pricing rule and the repricing indicator.
- PRICING_CONTEXT and PRICING_ATTRIBUTE1–15 — Descriptive flexfield context and segments used for pricing.
- START_DATE_ACTIVE, END_DATE_ACTIVE — Effective date range of the line.
- CONTEXT and ATTRIBUTE1–15 — The standard descriptive flexfield columns.
- CUSTOMER_ITEM_ID, REVISION, REVISION_DATE, REVISION_REASON_CODE, COMMENTS, primary, convert_from — All projected as NULL. These represent later-generation attributes that do not exist in the 11.5 shape, or that are inapplicable to the null-customer-item population. Notably, convert_from is a hard-coded NULL and carries no data in this view.
- Standard 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) are passed through directly.
Common Use Cases and Queries
Typical usage includes legacy report regeneration, migration scripts, and interfaces that expect the pre-12 pricing line layout. A representative query follows:
- SELECT PRICE_LIST_ID, INVENTORY_ITEM_ID, UNIT_CODE, LIST_PRICE FROM APPS.OE_PRICE_LIST_LINES_115_V WHERE PRICE_LIST_ID = :p_list_id;
- SELECT INVENTORY_ITEM_ID, LIST_PRICE, START_DATE_ACTIVE, END_DATE_ACTIVE FROM APPS.OE_PRICE_LIST_LINES_115_V WHERE INVENTORY_ITEM_ID = :p_item AND SYSDATE BETWEEN START_DATE_ACTIVE AND END_DATE_ACTIVE;
- SELECT COUNT(*) FROM APPS.OE_PRICE_LIST_LINES_115_V WHERE PRICE_LIST_ID = :p_list_id;
Because convert_from is always NULL and customer-item lines are excluded, code requiring those values must use the current-generation view or the base table instead.
-
VIEW: APPS.OE_PRICE_LIST_LINES_115_V
12.2.2
-
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: APPS.OE_PRICE_LIST_LINES_115_V
12.1.1
-
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: APPS.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,
-
VIEW: APPS.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,
-
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: 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 ,
-
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. ,