Search Results ar_app_adj_v
Overview
AR_APP_ADJ_V is a Receivables view owned by the APPS schema that consolidates payment application and adjustment activity into a single reporting structure. It was introduced in Release 11.5 and remains present and valid in Oracle EBS 12.1.1 and 12.2.2, where it is retained primarily for backward compatibility with custom reports, interfaces, and legacy integrations. The view presents adjustments and receivable applications together with the transaction, receipt, and payment schedule context needed to interpret them, exposing amounts in their natural transaction sign.
Because it depends on the ARPT_SQL_FUNC_UTIL package to translate lookup codes into user-facing meanings at runtime, the view is intended for read-only querying and reporting rather than for transactional processing. It is best understood as a reporting convenience layer that shields callers from the join complexity among applications, adjustments, receipts, and payment schedules.
Underlying Base Objects
ETRM documents AR_APP_ADJ_V as defined over the following objects in the APPS schema:
- Synonyms: AR_ADJUSTMENTS, AR_CASH_RECEIPTS, AR_CASH_RECEIPT_HISTORY, AR_PAYMENT_SCHEDULES, AR_RECEIPT_METHODS, AR_RECEIVABLES_TRX, AR_RECEIVABLE_APPLICATIONS, RA_CUSTOMER_TRX, RA_CUSTOMER_TRX_LINES, RA_CUST_TRX_TYPES, FND_USER
- Packages: ARPT_SQL_FUNC_UTIL, ARP_DEDUCTION
The core of the view is AR_RECEIVABLE_APPLICATIONS, aliased APP, which supplies the applied amounts, application date, status, GL date, cash receipt and customer transaction identifiers. AR_PAYMENT_SCHEDULES (PS) contributes transaction number, class, currency, due date, terms sequence, and payment schedule identifier. AR_RECEIVABLES_TRX and RA_CUST_TRX_TYPES provide the credit memo and invoice transaction type names, while AR_CASH_RECEIPTS and AR_CASH_RECEIPT_HISTORY supply receipt-level attributes such as creation status. Credit memo reason codes are resolved through AR_ADJUSTMENTS and lookup utilities.
Key Columns
The view exposes columns that are highly relevant to payment-type analysis, which is the term most frequently associated with this object in user searches:
- Status / Payment Type Meaning — APP.STATUS is decoded through ARPT_SQL_FUNC_UTIL.GET_LOOKUP_MEANING using the 'PAYMENT_TYPE' lookup type. This is the principal payment_type reference in the view text and is the column users generally seek.
- Amount Applied — Negative-signed values derived from AMOUNT_APPLIED and AMOUNT_APPLIED_FROM, together with earned and unearned discount taken.
- Application Type and Reference — APPLICATION_TYPE distinguishes cash, credit memo, and other applications; APPLICATION_REF_TYPE_MEANING is derived via the same lookup utility, with special handling for prepayments (schedule ID -7) using 'AR_PREPAYMENT_TYPE'.
- Transaction Context — TRX_NUMBER, INVOICE_CURRENCY_CODE, CLASS, payment schedule ID, terms sequence number, and line number.
- Receipt Context — CASH_RECEIPT_ID and receipt creation status resolved via 'RECEIPT_CREATION_STATUS'.
- Adjustment Detail — LINE_APPLIED, TAX_APPLIED, FREIGHT_APPLIED, and RECEIVABLES_CHARGES_APPLIED, each presented as negative amounts.
Common Use Cases and Queries
Typical usage includes reconciliation of applications against receipts, payment-type reporting, and analysis of adjustments by reason code.
To list applications by payment type meaning:
SELECT trx_number, status, apply_date FROM ar_app_adj_v WHERE status = 'CASH';
To aggregate applied amounts by transaction:
SELECT trx_number, SUM(amount_applied) FROM ar_app_adj_v GROUP BY trx_number;
Because lookup meanings are resolved on every row via ARPT_SQL_FUNC_UTIL, queries against large data sets should be filtered tightly and, where possible, restricted by date or transaction number to avoid costly function calls.
-
View: AR_APP_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_APP_ADJ_V, object_name:AR_APP_ADJ_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_APP_ADJ_V ,
-
View: AR_APP_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_APP_ADJ_V, object_name:AR_APP_ADJ_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_APP_ADJ_V ,
-
APPS.ARP_ARXCOQIT SQL Statements
12.2.2
-
APPS.ARP_ARXCOQIT SQL Statements
12.1.1
-
PACKAGE: APPS.ARP_DEDUCTION
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ARP_DEDUCTION, status:VALID,
-
PACKAGE: APPS.ARP_DEDUCTION
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ARP_DEDUCTION, status:VALID,
-
SYNONYM: APPS.AR_RECEIVABLES_TRX
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIVABLES_TRX, status:VALID,
-
SYNONYM: APPS.AR_RECEIVABLES_TRX
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIVABLES_TRX, status:VALID,
-
PACKAGE: APPS.ARPT_SQL_FUNC_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ARPT_SQL_FUNC_UTIL, status:VALID,
-
PACKAGE: APPS.ARPT_SQL_FUNC_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ARPT_SQL_FUNC_UTIL, status:VALID,
-
VIEW: APPS.AR_APP_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_APP_ADJ_V, object_name:AR_APP_ADJ_V, status:VALID,
-
VIEW: APPS.AR_APP_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_APP_ADJ_V, object_name:AR_APP_ADJ_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.AR_CASH_RECEIPT_HISTORY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_CASH_RECEIPT_HISTORY, status:VALID,
-
SYNONYM: APPS.AR_CASH_RECEIPT_HISTORY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_CASH_RECEIPT_HISTORY, status:VALID,
-
SYNONYM: APPS.AR_RECEIPT_METHODS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIPT_METHODS, status:VALID,
-
SYNONYM: APPS.AR_RECEIPT_METHODS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIPT_METHODS, status:VALID,
-
SYNONYM: APPS.AR_ADJUSTMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_ADJUSTMENTS, status:VALID,
-
SYNONYM: APPS.AR_ADJUSTMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_ADJUSTMENTS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.AR_RECEIVABLE_APPLICATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIVABLE_APPLICATIONS, status:VALID,
-
SYNONYM: APPS.AR_CASH_RECEIPTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_CASH_RECEIPTS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.AR_CASH_RECEIPTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_CASH_RECEIPTS, status:VALID,
-
SYNONYM: APPS.AR_RECEIVABLE_APPLICATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIVABLE_APPLICATIONS, status:VALID,
-
PACKAGE BODY: APPS.ARP_ARXCOQIT
12.2.2
-
PACKAGE BODY: APPS.ARP_ARXCOQIT
12.1.1
-
SYNONYM: APPS.RA_CUST_TRX_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUST_TRX_TYPES, status:VALID,
-
SYNONYM: APPS.RA_CUST_TRX_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUST_TRX_TYPES, status:VALID,
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES, status:VALID,
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX, status:VALID,
-
APPS.ARP_ARXCOQIT dependencies on DBMS_SQL
12.1.1
-
APPS.ARP_ARXCOQIT dependencies on DBMS_SQL
12.2.2
-
SYNONYM: APPS.FND_USER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
SYNONYM: APPS.FND_USER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
APPS.ARP_ARXCOQIT dependencies on ARP_STANDARD
12.2.2
-
APPS.ARP_ARXCOQIT dependencies on ARP_STANDARD
12.1.1
-
APPS.ARP_ARXCOQIT dependencies on STANDARD
12.2.2
-
APPS.ARP_ARXCOQIT dependencies on STANDARD
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,