Search Results ar_adjustments_all
Overview
The AR_ADJUSTMENTS_ALL table is a core transactional entity within Oracle E-Business Suite Receivables (AR) modules, specifically in versions 12.1.1 and 12.2.2. It serves as the central repository for recording all pending and approved adjustments to invoices and debit memos. An adjustment is a modification to the original transaction amount, which can be a credit (reduction) or a charge (increase). This table is fundamental to managing customer account corrections, write-offs, and other financial amendments, ensuring a complete audit trail for all changes applied to receivables transactions. Its multi-org structure, indicated by the '_ALL' suffix, allows it to store data for multiple operating units within a single installation.
Key Information Stored
The table's primary key is ADJUSTMENT_ID, which uniquely identifies each adjustment record. Critical foreign key columns define the adjustment's context and relationships. The CUSTOMER_TRX_ID links to the original invoice (RA_CUSTOMER_TRX_ALL), while PAYMENT_SCHEDULE_ID connects to the specific payment schedule being modified (AR_PAYMENT_SCHEDULES_ALL). The RECEIVABLES_TRX_ID references the type of adjustment (AR_RECEIVABLES_TRX_ALL), such as a write-off or credit memo application. Financial accounting is managed via CODE_COMBINATION_ID, linking to the general ledger account (GL_CODE_COMBINATIONS). Other essential columns include ADJUSTMENT_TYPE (e.g., 'CHARGE', 'CREDIT'), STATUS ('A' for approved, 'P' for pending), AMOUNT, and GL_DATE. The table also tracks approval workflow through APPROVED_BY and links to associated cash receipts or applications.
Common Use Cases and Queries
This table is central to auditing, reporting, and reconciliation processes. Common scenarios include analyzing adjustment activity for a customer, reviewing write-offs for a period, or troubleshooting account balances. A typical query retrieves approved adjustments for a specific invoice, joining related transaction and customer information:
SELECT adj.adjustment_id, adj.amount, adj.gl_date, adj.status, trx.trx_number FROM ar_adjustments_all adj, ra_customer_trx_all trx WHERE adj.customer_trx_id = trx.customer_trx_id AND trx.trx_number = 'INV-12345' AND adj.status = 'A';
For period-end reporting, a summary query might aggregate adjustments by type and GL account. Technical consultants also query this table to validate data integrity when payment schedules do not net to zero or when investigating the impact of adjustments on customer account balances. The link to AR_DISTRIBUTIONS_ALL via SOURCE_ID is crucial for tracing the detailed accounting entries generated for each adjustment.
Related Objects
AR_ADJUSTMENTS_ALL has extensive relationships within the Receivables schema. It is a primary source for distribution records, as shown by foreign keys from AR_DISTRIBUTIONS_ALL and AR_MC_DISTRIBUTIONS_ALL. Its child tables, AR_APPROVAL_ACTION_HISTORY and AR_MC_ADJUSTMENTS (for multiple currency reporting), depend on its ADJUSTMENT_ID. Key parent tables, referenced via foreign keys, include RA_CUSTOMER_TRX_ALL (original transaction), AR_PAYMENT_SCHEDULES_ALL (payment terms), AR_RECEIVABLES_TRX_ALL (adjustment reason), and GL_CODE_COMBINATIONS (accounting flexfield). For programmatic operations, the public API AR_ADJUSTMENTS_PUB is the supported interface for creating and managing adjustments, rather than direct DML on this table.
-
Table: AR_ADJUSTMENTS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_ADJUSTMENTS_ALL, object_name:AR_ADJUSTMENTS_ALL, status:VALID, product: AR - Receivables , description: Pending and approved invoice adjustments , implementation_dba_data: AR.AR_ADJUSTMENTS_ALL ,
-
Table: AR_ADJUSTMENTS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_ADJUSTMENTS_ALL, object_name:AR_ADJUSTMENTS_ALL, status:VALID, product: AR - Receivables , description: Pending and approved invoice adjustments , implementation_dba_data: AR.AR_ADJUSTMENTS_ALL ,
-
Table: AR_PAYMENT_SCHEDULES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID, product: AR - Receivables , description: All transactions except adjustments and miscellaneous cash receipts , implementation_dba_data: AR.AR_PAYMENT_SCHEDULES_ALL ,
-
Table: AR_PAYMENT_SCHEDULES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID, product: AR - Receivables , description: All transactions except adjustments and miscellaneous cash receipts , implementation_dba_data: AR.AR_PAYMENT_SCHEDULES_ALL ,
-
Table: RA_CUSTOMER_TRX_LINES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_ALL, object_name:RA_CUSTOMER_TRX_LINES_ALL, status:VALID, product: AR - Receivables , description: Invoice, debit memo, chargeback, credit memo and commitment lines , implementation_dba_data: AR.RA_CUSTOMER_TRX_LINES_ALL ,
-
View: AR_ADJ_DIST_UPG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJ_DIST_UPG_V, object_name:AR_ADJ_DIST_UPG_V, status:VALID, product: AR - Receivables , description: AR XLA Extract , implementation_dba_data: APPS.AR_ADJ_DIST_UPG_V ,
-
View: AR_ADJ_DIST_UPG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJ_DIST_UPG_V, object_name:AR_ADJ_DIST_UPG_V, status:VALID, product: AR - Receivables , description: AR XLA Extract , implementation_dba_data: APPS.AR_ADJ_DIST_UPG_V ,
-
Table: AR_INTEREST_HEADERS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INTEREST_HEADERS_ALL, object_name:AR_INTEREST_HEADERS_ALL, status:VALID, product: AR - Receivables , description: Late Charge headers , implementation_dba_data: AR.AR_INTEREST_HEADERS_ALL ,
-
Table: AR_APPROVAL_ACTION_HISTORY
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_APPROVAL_ACTION_HISTORY, object_name:AR_APPROVAL_ACTION_HISTORY, status:VALID, product: AR - Receivables , description: Approval and change history for invoice adjustments , implementation_dba_data: AR.AR_APPROVAL_ACTION_HISTORY ,
-
Table: AR_APPROVAL_USER_LIMITS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_APPROVAL_USER_LIMITS, object_name:AR_APPROVAL_USER_LIMITS, status:VALID, product: AR - Receivables , description: User adjustment approval limits , implementation_dba_data: AR.AR_APPROVAL_USER_LIMITS ,
-
Table: AR_APPROVAL_USER_LIMITS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_APPROVAL_USER_LIMITS, object_name:AR_APPROVAL_USER_LIMITS, status:VALID, product: AR - Receivables , description: User adjustment approval limits , implementation_dba_data: AR.AR_APPROVAL_USER_LIMITS ,
-
Table: AR_TRANSACTION_HISTORY_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRANSACTION_HISTORY_ALL, object_name:AR_TRANSACTION_HISTORY_ALL, status:VALID, product: AR - Receivables , description: Life cycle of a transaction , implementation_dba_data: AR.AR_TRANSACTION_HISTORY_ALL ,
-
Table: AR_TRANSACTION_HISTORY_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_TRANSACTION_HISTORY_ALL, object_name:AR_TRANSACTION_HISTORY_ALL, status:VALID, product: AR - Receivables , description: Life cycle of a transaction , implementation_dba_data: AR.AR_TRANSACTION_HISTORY_ALL ,
-
Table: AR_MC_ADJUSTMENTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_MC_ADJUSTMENTS, object_name:AR_MC_ADJUSTMENTS, status:VALID, product: AR - Receivables , description: Currency-related information about invoice adjustments for each reporting set of books , implementation_dba_data: AR.AR_MC_ADJUSTMENTS ,
-
Table: AR_MC_ADJUSTMENTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_MC_ADJUSTMENTS, object_name:AR_MC_ADJUSTMENTS, status:VALID, product: AR - Receivables , description: Currency-related information about invoice adjustments for each reporting set of books , implementation_dba_data: AR.AR_MC_ADJUSTMENTS ,
-
Table: AR_STATEMENT_LINE_CLUSTERS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_STATEMENT_LINE_CLUSTERS, object_name:AR_STATEMENT_LINE_CLUSTERS, status:VALID, product: AR - Receivables , description: Interim table of transaction lines that appear on a statement , implementation_dba_data: AR.AR_STATEMENT_LINE_CLUSTERS ,
-
View: AR_XLA_ARD_ADJ_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_XLA_ARD_ADJ_LINES_V, object_name:AR_XLA_ARD_ADJ_LINES_V, status:VALID, product: AR - Receivables , description: help reports to read the CCID from XLA , implementation_dba_data: APPS.AR_XLA_ARD_ADJ_LINES_V ,
-
Table: AR_INTEREST_LINES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_INTEREST_LINES_ALL, object_name:AR_INTEREST_LINES_ALL, status:VALID, product: AR - Receivables , description: Late Charge lines , implementation_dba_data: AR.AR_INTEREST_LINES_ALL ,
-
Table: AR_STATEMENT_LINE_CLUSTERS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_STATEMENT_LINE_CLUSTERS, object_name:AR_STATEMENT_LINE_CLUSTERS, status:VALID, product: AR - Receivables , description: Interim table of transaction lines that appear on a statement , implementation_dba_data: AR.AR_STATEMENT_LINE_CLUSTERS ,
-
Table: AR_APPROVAL_ACTION_HISTORY
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_APPROVAL_ACTION_HISTORY, object_name:AR_APPROVAL_ACTION_HISTORY, status:VALID, product: AR - Receivables , description: Approval and change history for invoice adjustments , implementation_dba_data: AR.AR_APPROVAL_ACTION_HISTORY ,
-
Table: AR_DISTRIBUTION_SETS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_DISTRIBUTION_SETS_ALL, object_name:AR_DISTRIBUTION_SETS_ALL, status:VALID, product: AR - Receivables , description: Groups together a set of distribution lines , implementation_dba_data: AR.AR_DISTRIBUTION_SETS_ALL ,
-
Table: AR_DISTRIBUTION_SETS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_DISTRIBUTION_SETS_ALL, object_name:AR_DISTRIBUTION_SETS_ALL, status:VALID, product: AR - Receivables , description: Groups together a set of distribution lines , implementation_dba_data: AR.AR_DISTRIBUTION_SETS_ALL ,
-
Table: RA_CUSTOMER_TRX_LINES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_ALL, object_name:RA_CUSTOMER_TRX_LINES_ALL, status:VALID, product: AR - Receivables , description: Invoice, debit memo, chargeback, credit memo and commitment lines , implementation_dba_data: AR.RA_CUSTOMER_TRX_LINES_ALL ,
-
View: ARFV_ADJ_DISTS_ALT_CRNCY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_ADJ_DISTS_ALT_CRNCY, object_name:ARFV_ADJ_DISTS_ALT_CRNCY, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_ADJ_DISTS_ALT_CRNCY ,
-
View: AR_ADJ_INF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJ_INF_V, object_name:AR_ADJ_INF_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_ADJ_INF_V ,
-
View: AR_ADJ_INF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJ_INF_V, object_name:AR_ADJ_INF_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_ADJ_INF_V ,
-
Table: AR_MC_DISTRIBUTIONS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_MC_DISTRIBUTIONS_ALL, object_name:AR_MC_DISTRIBUTIONS_ALL, status:VALID, product: AR - Receivables , description: Currency-related information about distributions generated by the different steps in the life cycle of a cash receipt , implementation_dba_data: AR.AR_MC_DISTRIBUTIONS_ALL ,
-
View: ARFV_ADJ_DISTS_ALT_CRNCY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_ADJ_DISTS_ALT_CRNCY, object_name:ARFV_ADJ_DISTS_ALT_CRNCY, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_ADJ_DISTS_ALT_CRNCY ,
-
Table: AR_DISTRIBUTIONS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_DISTRIBUTIONS_ALL, object_name:AR_DISTRIBUTIONS_ALL, status:VALID, product: AR - Receivables , description: Accounting records for receipts , implementation_dba_data: AR.AR_DISTRIBUTIONS_ALL ,
-
Table: AR_DISTRIBUTIONS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_DISTRIBUTIONS_ALL, object_name:AR_DISTRIBUTIONS_ALL, status:VALID, product: AR - Receivables , description: Accounting records for receipts , implementation_dba_data: AR.AR_DISTRIBUTIONS_ALL ,
-
Table: AR_BATCHES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BATCHES_ALL, object_name:AR_BATCHES_ALL, status:VALID, product: AR - Receivables , description: Receipt batch information , implementation_dba_data: AR.AR_BATCHES_ALL ,
-
Table: AR_RECEIVABLE_APPLICATIONS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIVABLE_APPLICATIONS_ALL, object_name:AR_RECEIVABLE_APPLICATIONS_ALL, status:VALID, product: AR - Receivables , description: Accounting information for cash and credit memo applications , implementation_dba_data: AR.AR_RECEIVABLE_APPLICATIONS_ALL ,
-
Table: RA_CUSTOMER_TRX_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_ALL, object_name:RA_CUSTOMER_TRX_ALL, status:VALID, product: AR - Receivables , description: Header-level information about invoices, debit memos, chargebacks, commitments and credit memos , implementation_dba_data: AR.RA_CUSTOMER_TRX_ALL ,
-
Table: AR_MC_DISTRIBUTIONS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_MC_DISTRIBUTIONS_ALL, object_name:AR_MC_DISTRIBUTIONS_ALL, status:VALID, product: AR - Receivables , description: Currency-related information about distributions generated by the different steps in the life cycle of a cash receipt , implementation_dba_data: AR.AR_MC_DISTRIBUTIONS_ALL ,
-
Table: AR_BATCHES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_BATCHES_ALL, object_name:AR_BATCHES_ALL, status:VALID, product: AR - Receivables , description: Receipt batch information , implementation_dba_data: AR.AR_BATCHES_ALL ,
-
View: ARFV_ADJUSTMENT_DISTRIBUT_OLD1
12.1.1
product: AR - Receivables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
Table: AR_RECEIVABLES_TRX_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIVABLES_TRX_ALL, object_name:AR_RECEIVABLES_TRX_ALL, status:VALID, product: AR - Receivables , description: Accounting information for Receivables activities , implementation_dba_data: AR.AR_RECEIVABLES_TRX_ALL ,
-
View: ARFV_ADJUSTMENT_DISTRIBUT_OLD1
12.2.2
product: AR - Receivables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
Table: AR_RECEIVABLES_TRX_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIVABLES_TRX_ALL, object_name:AR_RECEIVABLES_TRX_ALL, status:VALID, product: AR - Receivables , description: Accounting information for Receivables activities , implementation_dba_data: AR.AR_RECEIVABLES_TRX_ALL ,
-
Table: RA_CUSTOMER_TRX_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.RA_CUSTOMER_TRX_ALL, object_name:RA_CUSTOMER_TRX_ALL, status:VALID, product: AR - Receivables , description: Header-level information about invoices, debit memos, chargebacks, commitments and credit memos , implementation_dba_data: AR.RA_CUSTOMER_TRX_ALL ,
-
Table: AR_RECEIVABLE_APPLICATIONS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIVABLE_APPLICATIONS_ALL, object_name:AR_RECEIVABLE_APPLICATIONS_ALL, status:VALID, product: AR - Receivables , description: Accounting information for cash and credit memo applications , implementation_dba_data: AR.AR_RECEIVABLE_APPLICATIONS_ALL ,
-
Table: AR_CASH_RECEIPTS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CASH_RECEIPTS_ALL, object_name:AR_CASH_RECEIPTS_ALL, status:VALID, product: AR - Receivables , description: Detailed receipt information , implementation_dba_data: AR.AR_CASH_RECEIPTS_ALL ,
-
View: AR_ADJUSTMENTS_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_H_V, object_name:AR_ADJUSTMENTS_H_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_ADJUSTMENTS_H_V ,
-
Table: AR_CASH_RECEIPTS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CASH_RECEIPTS_ALL, object_name:AR_CASH_RECEIPTS_ALL, status:VALID, product: AR - Receivables , description: Detailed receipt information , implementation_dba_data: AR.AR_CASH_RECEIPTS_ALL ,
-
View: AR_ADJUSTMENTS_H_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_H_V, object_name:AR_ADJUSTMENTS_H_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_ADJUSTMENTS_H_V ,
-
View: AR_ADJUSTMENTS_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_ALL_MRC_V, object_name:AR_ADJUSTMENTS_ALL_MRC_V, status:VALID, product: AR - Receivables , description: - Retrofitted , implementation_dba_data: APPS.AR_ADJUSTMENTS_ALL_MRC_V ,
-
View: AR_ADJUSTMENTS_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_ALL_MRC_V, object_name:AR_ADJUSTMENTS_ALL_MRC_V, status:VALID, product: AR - Receivables , description: - Retrofitted , implementation_dba_data: APPS.AR_ADJUSTMENTS_ALL_MRC_V ,
-
View: AR_ADJUSTMENTS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_MRC_V, object_name:AR_ADJUSTMENTS_MRC_V, status:VALID, product: AR - Receivables , description: - Retrofitted , implementation_dba_data: APPS.AR_ADJUSTMENTS_MRC_V ,
-
View: AR_ADJUSTMENTS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_MRC_V, object_name:AR_ADJUSTMENTS_MRC_V, status:VALID, product: AR - Receivables , description: - Retrofitted , implementation_dba_data: APPS.AR_ADJUSTMENTS_MRC_V ,
-
View: AR_AEL_SL_ADJ_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,