Search Results pricing_context
Overview
OE_PRICE_ADJ_ATTRIBS_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, categorized under the ONT – Order Management product family. Its documented purpose is straightforward: it presents the contents of the base table OE_PRICE_ADJ_ATTRIBS in a read-only, query-friendly form. In ETRM 12.2.2 the view is listed with status VALID and is defined as a synonym-referenced layer over OE_PRICE_ADJ_ATTRIBS.
Functionally, the view exposes the attribute-level qualifiers attached to price adjustments. Where OE_PRICE_ADJUSTMENTS stores the header of a modifier or adjustment (for example, a discount or surcharge applied to a pricing context), the attribute rows captured here define the conditions under which that adjustment fires — the specific pricing attribute, its comparison operator, and the from/to value range. The view therefore serves as the bridge between pricing setup data and the business rules evaluated during order pricing in Oracle Advanced Pricing, surfaced through Order Management reporting and interfaces. For users searching on the term "pricing_attribute," this view is the canonical place to inspect the PRICING_ATTRIBUTE and PRICING_CONTEXT columns that determine qualifier behavior.
Underlying Base Objects
The view is defined exclusively over a single documented base object: the synonym OE_PRICE_ADJ_ATTRIBS, which resolves to the APPS.OE_PRICE_ADJ_ATTRIBS table. The view text performs a direct SELECT of all listed columns with no joins, aggregations, filters, or transformations. Because there is no WHERE clause or decoding logic, the row count and content of the view mirror the base table exactly at query time.
This one-to-one relationship means the view is purely a naming and access abstraction rather than a business-logic consolidation. It inherits the base table's indexes, constraints, and DML characteristics; no materialization or caching is applied. Reports and concurrent programs reference the view to avoid hard-coding the base table name, and any insert, update, or delete performed through the view flows directly to OE_PRICE_ADJ_ATTRIBS subject to the standard who-columns and program context columns present in the projection.
Key Columns
- PRICE_ADJ_ATTRIB_ID — Primary identifier for the attribute qualifier row.
- PRICE_ADJUSTMENT_ID — Foreign key linking the qualifier to its parent price adjustment record; the principal join key in reporting queries.
- FLEX_TITLE — Descriptive title associated with the flexfield or pricing context, used for display in setup and reporting.
- PRICING_CONTEXT — The pricing context in which the attribute applies (for example, order, line, or customer level).
- PRICING_ATTRIBUTE — The specific attribute being qualified, such as customer class, order type, or item category. This is the column most directly relevant to searches on "pricing_attribute."
- PRICING_ATTR_VALUE_FROM / PRICING_ATTR_VALUE_TO — The lower and upper bounds of the qualifier value range.
- COMPARISON_OPERATOR — The operator governing evaluation, such as equals, between, or greater than.
- LOCK_CONTROL — Indicator supporting concurrency control on the attribute record.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, and REQUEST_ID capture standard EBS WHO and concurrent program audit context.
Common Use Cases and Queries
Typical scenarios include auditing which attributes qualify a given price adjustment, tracing why a modifier did or did not apply to an order line, and feeding pricing setup data into integration or data-warehouse extracts. A representative query joining the view to its parent adjustment table is:
SELECT a.price_adj_attrib_id, a.price_adjustment_id, a.pricing_context, a.pricing_attribute, a.comparison_operator, a.pricing_attr_value_from, a.pricing_attr_value_to FROM oe_price_adj_attribs_v a WHERE a.price_adjustment_id = :adjustment_id;— retrieves all qualifiers for one adjustment.SELECT * FROM oe_price_adj_attribs_v WHERE pricing_attribute = 'CUSTOMER_CLASS';— isolates qualifiers for a specific pricing attribute.SELECT price_adjustment_id, COUNT(*) FROM oe_price_adj_attribs_v GROUP BY price_adjustment_id;— profiles qualifier density across adjustments.
Because the view is a direct projection of OE_PRICE_ADJ_ATTRIBS, it is safe for both interactive diagnostics and batch extraction in 12.1.1 and 12.2.2, provided access is granted to the APPS-owned object or through a custom GRANT to the querying schema.
-
View: OE_PRICE_ADJ_ATTRIBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJ_ATTRIBS_V, object_name:OE_PRICE_ADJ_ATTRIBS_V, status:VALID, product: ONT - Order Management , description: This is a view on table OE_PRICE_ADJ_ATTRIBS. , implementation_dba_data: APPS.OE_PRICE_ADJ_ATTRIBS_V ,
-
View: OE_PRICE_ADJ_ATTRIBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJ_ATTRIBS_V, object_name:OE_PRICE_ADJ_ATTRIBS_V, status:VALID, product: ONT - Order Management , description: This is a view on table OE_PRICE_ADJ_ATTRIBS. , implementation_dba_data: APPS.OE_PRICE_ADJ_ATTRIBS_V ,
-
View: OE_ORDER_PRICE_ATTRIBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_PRICE_ATTRIBS_V, object_name:OE_ORDER_PRICE_ATTRIBS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_PRICE_ATTRIBS_V ,
-
View: OE_ORDER_PRICE_ATTRIBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_PRICE_ATTRIBS_V, object_name:OE_ORDER_PRICE_ATTRIBS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_PRICE_ATTRIBS_V ,
-
View: OE_CRM_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_CRM_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_LINE_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_AK_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_AK_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_SCH_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_SCH_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_BLANKET_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
View: OE_BLANKET_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
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 ,
-
View: OE_ORDER_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
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 ,
-
View: OE_ORDER_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
View: OE_BLKT_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,
-
View: OE_BLKT_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,