Search Results original_list_price
Overview
APPS.OEBV_ORDER_LINES is a seeded Oracle E-Business Suite view owned by the APPS schema and registered under FND Design Data as ONT.OEBV_ORDER_LINES. It exposes order line-level information from the Order Management (ONT) module in a denormalized, business-friendly form. The view is classified as an internal object, and Oracle Corporation explicitly does not support direct customer access to its contents except through standard Oracle Applications programs. Despite that restriction, the view is widely referenced within Oracle's own concurrent programs, OBIEE/BI Publisher extracts, and ETL routines that stage order data for downstream reporting.
The view presents one row per order line and includes quantities, pricing, scheduling, fulfillment, tax, customer, and audit columns. Because it includes both the raw priced attributes (UNIT_LIST_PRICE, ORIGINAL_LIST_PRICE, UNIT_SELLING_PRICE) and derived quantities, it is commonly used as a single-source snapshot for order-line analysis in 12.1.1 and 12.2.2.
Underlying Base Objects
The documented referenced base object is OE_ORDER_LINES, referenced through a synonym. In EBS, OE_ORDER_LINES stores the transactional detail of sales orders, and it is the primary underlying table for this view. The view inherits the line-level grain and the ORG_ID partitioning characteristic of OE_ORDER_LINES, meaning queries must be filtered by operating unit (ORG_ID) for correct results in multi-org environments.
Additional attributes exposed by the view — such as pricing list, agreement, salesrep, and commitment identifiers — are sourced from related pricing, customer, and order-management entities that the view joins internally. The _LA: prefixed columns are flexfield/attribute descriptors surfaced by the view definition, and _DF:PRICING indicates a descriptive flexfield context on the pricing dimension.
Key Columns
- LINE_ID / HEADER_ID / ORG_ID — Primary keys linking the line to its order header and operating unit.
- ORDERED_ITEM_ID / ORDERED_QUANTITY / ORDERED_QUANTITY_UOM — Item and quantity ordered, with unit of measure.
- UNIT_LIST_PRICE and ORIGINAL_LIST_PRICE — The list price at line entry and the originally captured list price, respectively; ORIGINAL_LIST_PRICE is the value most often used to detect retroactive price-list changes.
- UNIT_SELLING_PRICE / PRICING_QUANTITY / PRICING_DATE — Actual selling price and the quantity/date on which pricing was calculated.
- PRICE_LIST_ID / AGREEMENT_ID / SALESREP_ID — Pricing list, agreement, and salesrep context for the line.
- SCHEDULE_SHIP_DATE / REQUEST_DATE / PROMISE_DATE / ACTUAL_SHIPMENT_DATE / FULFILLMENT_DATE — Scheduling and fulfillment milestone dates.
- SHIPPED_QUANTITY / FULFILLED_QUANTITY / CANCELLED_QUANTITY / INVOICED_QUANTITY — Quantity tracking across the order-to-cash lifecycle.
- TAX_CODE / TAX_VALUE — Tax classification and computed tax amount.
- CUSTOMER_ID / CUSTOMER_NUMBER / END_CUSTOMER_* — Sold-to and end-customer identifiers.
- CHARGE_PERIODICITY_CODE — Determines pricing for recurring-charge (subscription) lines.
- LAST_UPDATE_DATE / CREATION_DATE / audit columns — Standard EBS who/date audit fields.
Common Use Cases and Queries
A frequent scenario is a list-price variance report that compares the original captured list price against the current line list price to surface unauthorized discounts or list changes.
SELECT line_id,
header_id,
org_id,
ordered_item_id,
unit_list_price,
original_list_price,
unit_list_price - original_list_price AS list_price_delta,
unit_selling_price,
ordered_quantity,
ordered_quantity_uom,
schedule_ship_date
FROM apps.oebv_order_lines
WHERE org_id = :p_org_id
AND original_list_price <> unit_list_price
ORDER BY list_price_delta DESC;
Another common use is order-line backlog and fulfillment tracking, aggregating ordered, shipped, and cancelled quantities by item and requested date:
SELECT ordered_item_id,
SUM(ordered_quantity) AS qty_ordered,
SUM(shipped_quantity) AS qty_shipped,
SUM(cancelled_quantity) AS qty_cancelled,
SUM(fulfilled_quantity) AS qty_fulfilled
FROM apps.oebv_order_lines
WHERE org_id = :p_org_id
AND request_date BETWEEN :p_start AND :p_end
GROUP BY ordered_item_id;
Because this is an unsupported internal view, custom interfaces should ideally read the supported OE_ORDER_LINES and related pricing tables directly, or consume order data through the published Order Management open interfaces and public APIs. Where read-only reporting against OEBV_ORDER_LINES is used, Oracle recommends confining access to reporting schemas and never updating the view.
-
VIEW: APPS.OEBV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEBV_ORDER_LINES, object_name:OEBV_ORDER_LINES, status:VALID,
-
VIEW: APPS.OEBV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEBV_ORDER_LINES, object_name:OEBV_ORDER_LINES, status:VALID,
-
View: OEBV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEBV_ORDER_LINES, object_name:OEBV_ORDER_LINES, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEBV_ORDER_LINES ,
-
View: OEBV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEBV_ORDER_LINES, object_name:OEBV_ORDER_LINES, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEBV_ORDER_LINES ,
-
VIEW: ONT.OE_ORDER_LINES_ALL#
12.2.2
-
VIEW: ONT.OE_ORDER_LINES_HISTORY#
12.2.2
-
VIEW: APPS.OEFV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID,
-
VIEW: APPS.OEFV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID,
-
View: OEFV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OEFV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
VIEW: ONT.OE_ORDER_LINES_ALL#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_ORDER_LINES_ALL#, status:VALID,
-
VIEW: ONT.OE_ORDER_LINES_HISTORY#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_ORDER_LINES_HISTORY#, status:VALID,
-
VIEW: APPS.OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID,
-
VIEW: APPS.OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID,
-
TYPE: APPS.OE_ORDER_PUB_LINE_REC_TYPE
12.1.1
owner:APPS, object_type:TYPE, object_name:OE_ORDER_PUB_LINE_REC_TYPE, status:VALID,
-
TYPE: APPS.OE_ORDER_PUB_LINE_REC25
12.2.2
owner:APPS, object_type:TYPE, object_name:OE_ORDER_PUB_LINE_REC25, status:VALID,
-
View: OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
TYPE: APPS.OE_ORDER_PUB_LINE_REC_TYPE
12.2.2
owner:APPS, object_type:TYPE, object_name:OE_ORDER_PUB_LINE_REC_TYPE, status:VALID,
-
View: OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
TABLE: ONT.OE_ORDER_LINES_HISTORY
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_HISTORY, object_name:OE_ORDER_LINES_HISTORY, status:VALID,
-
TABLE: ONT.OE_ORDER_LINES_HISTORY
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_HISTORY, object_name:OE_ORDER_LINES_HISTORY, status:VALID,
-
APPS.OE_LINE_UTIL SQL Statements
12.1.1
-
APPS.OE_LINE_UTIL SQL Statements
12.2.2
-
TABLE: ONT.OE_ORDER_LINES_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_ALL, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
APPS.OE_CHG_ORDER_PVT SQL Statements
12.1.1
-
TABLE: ONT.OE_ORDER_LINES_ALL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_ALL, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
APPS.OE_CHG_ORDER_PVT SQL Statements
12.2.2
-
APPS.OE_ORDER_PRICE_PVT SQL Statements
12.1.1
-
APPS.OE_ORDER_PRICE_PVT SQL Statements
12.2.2
-
APPS.OE_ORDER_COPY_UTIL dependencies on OE_CODE_CONTROL
12.1.1
-
PACKAGE BODY: APPS.OE_CHG_ORDER_PVT
12.2.2
-
PACKAGE BODY: APPS.OE_CHG_ORDER_PVT
12.1.1
-
APPS.OE_ORDER_COPY_UTIL dependencies on OE_CODE_CONTROL
12.2.2
-
PACKAGE BODY: APPS.OE_LINE_UTIL
12.1.1
-
PACKAGE BODY: APPS.OE_LINE_UTIL
12.2.2
-
PACKAGE BODY: APPS.OE_ORDER_PRICE_PVT
12.1.1
-
PACKAGE BODY: APPS.OE_ORDER_PRICE_PVT
12.2.2
-
APPS.OE_ORDER_PRICE_PVT dependencies on OE_DEBUG_PUB
12.1.1
-
APPS.OE_ORDER_PRICE_PVT dependencies on OE_DEBUG_PUB
12.2.2
-
PACKAGE: APPS.OE_ORDER_PUB
12.1.1
-
PACKAGE BODY: APPS.OE_GENESIS_UTIL
12.2.2
-
PACKAGE: APPS.OE_ORDER_PUB
12.2.2
-
PACKAGE BODY: APPS.OE_ORDER_COPY_UTIL
12.2.2
-
PACKAGE BODY: APPS.OE_OE_FORM_LINE
12.1.1
-
PACKAGE BODY: APPS.OE_ORDER_COPY_UTIL
12.1.1
-
PACKAGE BODY: APPS.OE_OE_FORM_LINE
12.2.2
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
APPS.OE_LINE_UTIL dependencies on OE_DEBUG_PUB
12.1.1
-
PACKAGE BODY: APPS.OE_ORDER_PUB_W
12.2.2