Search Results rebate_payment_system_code
Overview
OE_AK_LINE_PRCADJS_V is an APPS-owned database view in Oracle E-Business Suite, classified under the Order Management (ONT) product family. Its status is VALID in both the 12.1.1 and 12.2.2 releases. The view presents order line price adjustment information in a form suited to Oracle Application Framework (OAF) "AK" (Attribute/Kanban-style) query regions and to external integrations that require a denormalized, flat representation of price adjustment detail.
The object exposes one row per price adjustment applied to an order line, combining pricing modifier attributes, rebate/accrual attributes, tax attributes, and descriptive flexfield context columns. Because the view carries pricing-phase, modifier-level, and rebate-specific columns, it is directly relevant to users searching on rebate_payment_system_code. That column is part of a set of rebate-related fields (REBATE_TRANSACTION_TYPE_CODE, REBATE_TRANSACTION_REFERENCE, REDEEMED_DATE, REDEEMED_FLAG, ACCRUAL_FLAG, and similar) that support the accrual and redemption accounting performed by Oracle Advanced Pricing and Order Management rebate processing.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over the base object OE_PRICE_ADJUSTMENTS_V. The view text confirms this: the SELECT list is drawn from OE_PRICE_ADJUSTMENTS, the underlying adjustments entity, and the final FROM clause references the adjustments source. OE_AK_LINE_PRCADJS_V therefore acts as a presentation layer over the adjustments view, adding literal and RPAD-derived columns for OAF display context while passing through nearly all business columns unchanged.
This places the view one layer above OE_PRICE_ADJUSTMENTS_V, which itself resolves to the price adjustment tables (OE_PRICE_ADJUSTMENTS). Consequently, the view inherits the base object's pricing modifier structure: list header and list line references, modifier mechanism type, operand and arithmetic operator, adjusted-from and adjusted-to ranges, and price break information.
Key Columns
- PRICE_ADJUSTMENT_ID / DISCOUNT_ID / DISCOUNT_LINE_ID — Primary and foreign identifiers linking the adjustment to its modifier definition and to the associated discount.
- HEADER_ID / LINE_ID — The order header and line to which the adjustment applies.
- MODIFIER_MECHANISM_TYPE_CODE / OPERAND / ARITHMETIC_OPERATOR / PERCENT / ADJUSTED_AMOUNT — Describe how the adjustment is calculated (percent, amount, or price break) and the resulting value.
- PRICING_PHASE_ID / MODIFIER_LEVEL_CODE / PRICE_BREAK_TYPE_CODE — Identify the pricing phase and the level at which the modifier was applied (line, group, or order).
- REBATE_TRANSACTION_TYPE_CODE / REBATE_TRANSACTION_REFERENCE / REBATE_PAYMENT_SYSTEM_CODE — Rebate classification, the transaction reference used for reconciliation, and the payment system that governs settlement of the rebate.
- ACCRUAL_FLAG / REDEEMED_FLAG / REDEEMED_DATE / ACCRUAL_CONVERSION_RATE / BENEFIT_QTY / BENEFIT_UOM_CODE — Support accrual accounting and redemption tracking of rebate benefits.
- TAX_CODE / TAX_EXEMPT_FLAG / TAX_RATE_ID — Tax treatment tied to the adjustment.
- ATTRIBUTE1–15 / CONTEXT / AC_CONTEXT / AC_ATTRIBUTE1–15 — Descriptive flexfield context and attribute columns for extensibility.
- SOURCE_SYSTEM_CODE / PRINT_ON_INVOICE_FLAG / EXPIRATION_DATE — Operational flags controlling presentation and lifecycle.
Common Use Cases and Queries
Typical uses include rebate accrual reconciliation, pricing analysis for order lines, and integration extracts feeding external rebate settlement engines. A common query retrieves rebate adjustments for a given order line, filtered by payment system:
SELECT line_id, price_adjustment_id, rebate_transaction_type_code, rebate_payment_system_code, accrual_flag, redeemed_flag, adjusted_amount FROM apps.oe_ak_line_prcadjs_v WHERE line_id = :p_line_id AND rebate_payment_system_code IS NOT NULL;
To summarize accrued rebates by payment system across a period, users aggregate on REBATE_PAYMENT_SYSTEM_CODE with ACCRUAL_FLAG and ADJUSTED_AMOUNT, and join to order headers for customer and date filters. For OAF-based inquiry pages, the view's RPAD-generated display columns and CHAR(1) indicators are consumed directly by the framework to render read-only adjustment grids. Because the view is based on OE_PRICE_ADJUSTMENTS_V, all queries should account for the underlying pricing phase and modifier level logic when interpreting adjusted amounts.
-
View: OE_AK_LINE_PRCADJS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_PRCADJS_V, object_name:OE_AK_LINE_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_PRCADJS_V ,
-
View: OE_AK_HEADER_PRCADJS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_HEADER_PRCADJS_V, object_name:OE_AK_HEADER_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_HEADER_PRCADJS_V ,
-
View: OE_AK_LINE_PRCADJS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_PRCADJS_V, object_name:OE_AK_LINE_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_PRCADJS_V ,
-
View: OE_AK_HEADER_PRCADJS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_HEADER_PRCADJS_V, object_name:OE_AK_HEADER_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_HEADER_PRCADJS_V ,
-
View: OE_ACCRUALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ACCRUALS_V, object_name:OE_ACCRUALS_V, status:VALID, product: ONT - Order Management , description: This view shows accrued price adjustments in Order Management System. , implementation_dba_data: APPS.OE_ACCRUALS_V ,
-
View: OE_ORD_PRC_ADJ_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORD_PRC_ADJ_HIST_V, object_name:OE_ORD_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORD_PRC_ADJ_HIST_V ,
-
View: OE_LINE_PRC_ADJ_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_PRC_ADJ_HIST_V, object_name:OE_LINE_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_LINE_PRC_ADJ_HIST_V ,
-
View: OE_ACCRUALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ACCRUALS_V, object_name:OE_ACCRUALS_V, status:VALID, product: ONT - Order Management , description: This view shows accrued price adjustments in Order Management System. , implementation_dba_data: APPS.OE_ACCRUALS_V ,
-
View: OE_LINE_PRC_ADJ_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_PRC_ADJ_HIST_V, object_name:OE_LINE_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_LINE_PRC_ADJ_HIST_V ,
-
View: OE_ORD_PRC_ADJ_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORD_PRC_ADJ_HIST_V, object_name:OE_ORD_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORD_PRC_ADJ_HIST_V ,
-
View: OE_PRICE_ADJS_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJS_HISTORY_V, object_name:OE_PRICE_ADJS_HISTORY_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve Price Adjustments history. This is used by the history form. , implementation_dba_data: APPS.OE_PRICE_ADJS_HISTORY_V ,
-
View: OE_PRICE_ADJS_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJS_HISTORY_V, object_name:OE_PRICE_ADJS_HISTORY_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve Price Adjustments history. This is used by the history form. , implementation_dba_data: APPS.OE_PRICE_ADJS_HISTORY_V ,
-
View: OE_PRICE_ADJUSTMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJUSTMENTS_V, object_name:OE_PRICE_ADJUSTMENTS_V, status:VALID, product: ONT - Order Management , description: This is a view on table OE_PRICE_ADJUSTMENTS. , implementation_dba_data: APPS.OE_PRICE_ADJUSTMENTS_V ,
-
View: OE_PRICE_ADJUSTMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJUSTMENTS_V, object_name:OE_PRICE_ADJUSTMENTS_V, status:VALID, product: ONT - Order Management , description: This is a view on table OE_PRICE_ADJUSTMENTS. , implementation_dba_data: APPS.OE_PRICE_ADJUSTMENTS_V ,