Search Results adjustment_date
Overview
ARBV_ADJUSTMENT_DISTRIBUTIONS is a read-only Oracle EBS view owned by the APPS schema in the Receivables (AR) product. It presents the accounting distributions generated for Receivables adjustments, joining adjustment header information from AR_ADJUSTMENTS to the corresponding Subledger Accounting (SLA) distribution lines and their accounting event headers. Because Receivables adjustments are accounted through the SLA engine in Release 12, the actual debit and credit lines are not stored directly on AR_ADJUSTMENTS; this view reconciles the adjustment and its resulting journal distributions into a single reporting structure.
The view carries a WITH READ ONLY clause and is intended purely for query, reporting, and integration purposes. It exposes functional and accounted amounts, the general ledger date, the posting status derived from the accounting header, and the adjustment reason. For the user searching on adjustment_date, note that the view surfaces the adjustment date column (mapped to ADJ.GL_DATE) as ADJUSTMENT_DATE, in addition to the APPLY_DATE from the underlying adjustment. This makes the view valuable for date-driven analysis of adjustment activity and its ledger impact.
Underlying Base Objects
The view is defined over three documented base objects:
- AR_ADJUSTMENTS (SYNONYM) — aliased as ADJ, the primary source of adjustment attributes: adjustment identifier, GL date, apply date, reason code, status, org, set of books, payment schedule, and transaction identifiers.
- AR_XLA_ARD_LINES_V (VIEW) — aliased as DIST, a Receivables subledger accounting distributions view supplying the amount and account columns and the linking keys.
- XLA_AE_HEADERS (SYNONYM) — aliased as HED, the Subledger Accounting event headers, used to derive the posted flag from GL_TRANSFER_STATUS_CODE.
The join is established on ADJUSTMENT_ID, SOURCE_TABLE = 'ADJ', and SOURCE_TYPE = 'ADJ', with DIST.AE_HEADER_ID linking to HED.AE_HEADER_ID. This confirms that only adjustment-sourced SLA distributions are returned.
Key Columns
- ADJUSTMENT_ID — Primary identifier of the adjustment.
- ADJUSTMENT_DATE — The general ledger date of the adjustment (ADJ.GL_DATE); central to period and date-range reporting.
- DEBIT_AMOUNT / CREDIT_AMOUNT — Entered debit and credit amounts for each distribution.
- FUNCTIONAL_DEBIT_AMOUNT / FUNCTIONAL_CREDIT_AMOUNT — Accounted (functional currency) debit and credit amounts.
- GENERAL_LEDGER_DATE — The GL date carried on the adjustment.
- CODE_COMBINATION_ID — The accounting flexfield combination for the distribution line.
- POSTED_FLAG — Derived from the accounting header transfer status (Y/N), indicating whether the entry has been transferred to GL.
- ADJUSTMENT_REASON — Lookup meaning of the adjustment reason code.
- ACCOUNT_TYPE — Lookup meaning describing the account type.
- ADJUSTMENT_STATUS_CODE, ORG_ID, SET_OF_BOOKS_ID, PAYMENT_SCHEDULE_ID, TRANSACTION_ID — Supporting status and context columns.
- WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY from the distribution.
Common Use Cases and Queries
Typical uses include reconciliation of adjustment accounting to the general ledger, audit of adjustment distributions by date, and extraction for downstream reporting.
- List adjustments occurring within a date range:
SELECT adjustment_id, adjustment_date, transaction_id, debit_amount, credit_amount, posted_flag FROM apps.arbv_adjustment_distributions WHERE adjustment_date BETWEEN :from_date AND :to_date ORDER BY adjustment_date; - Identify unposted adjustment distributions:
SELECT adjustment_id, code_combination_id, functional_debit_amount, functional_credit_amount FROM apps.arbv_adjustment_distributions WHERE posted_flag = 'N'; - Summarize adjustment activity by reason and date:
SELECT adjustment_reason, adjustment_date, SUM(NVL(functional_debit_amount,0)) dr, SUM(NVL(functional_credit_amount,0)) cr FROM apps.arbv_adjustment_distributions GROUP BY adjustment_reason, adjustment_date;
All queries should reference the APPS schema and account for the read-only nature of the view.
-
View: ARBV_ADJUSTMENT_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_ADJUSTMENT_DISTRIBUTIONS, object_name:ARBV_ADJUSTMENT_DISTRIBUTIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_ADJUSTMENT_DISTRIBUTIONS ,
-
View: ARBV_ADJUSTMENT_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_ADJUSTMENT_DISTRIBUTIONS, object_name:ARBV_ADJUSTMENT_DISTRIBUTIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_ADJUSTMENT_DISTRIBUTIONS ,
-
View: ARBV_INVOICE_ADJUSTMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_INVOICE_ADJUSTMENTS, object_name:ARBV_INVOICE_ADJUSTMENTS, status:VALID, product: AR - Receivables , description: - Retrofitted , implementation_dba_data: APPS.ARBV_INVOICE_ADJUSTMENTS ,
-
View: ARBV_INVOICE_ADJUSTMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_INVOICE_ADJUSTMENTS, object_name:ARBV_INVOICE_ADJUSTMENTS, status:VALID, product: AR - Receivables , description: - Retrofitted , implementation_dba_data: APPS.ARBV_INVOICE_ADJUSTMENTS ,
-
View: ARFV_INVOICE_ADJUSTMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_INVOICE_ADJUSTMENTS, object_name:ARFV_INVOICE_ADJUSTMENTS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_INVOICE_ADJUSTMENTS ,
-
View: ARFV_INVOICE_ADJUSTMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_INVOICE_ADJUSTMENTS, object_name:ARFV_INVOICE_ADJUSTMENTS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_INVOICE_ADJUSTMENTS ,