Search Results ae_line_reference_internal
Overview
AR_AEL_SL_ADJ_V is a Receivables subledger accounting view owned by the APPS schema. It belongs to the family of "AEL" (Accounting Events Ledger) views that Oracle E-Business Suite provides for extract, reporting, and integration of subledger accounting data, most notably for the Subledger Accounting (SLA) model introduced in Release 12. This particular view presents the accounting and adjustment detail generated from Receivables adjustments — manual and automatic adjustments such as write-offs, credit memos applied as adjustments, and other receivables transactions recorded in AR_ADJUSTMENTS_ALL.
The view is designed to expose, in a single denormalized row set, both the transaction header attributes (adjustment number, transaction date, transaction class, transaction type) and the corresponding accounting distribution lines from AR_DISTRIBUTIONS_ALL. It therefore serves as a bridge between the operational adjustment record and its GL-facing accounting entries, carrying entered and accounted debit/credit amounts, currency conversion information, third-party (customer) identification, and GL transfer status. It is commonly used for reconciliation, audit reporting, and external data feeds that need adjusting-entry detail at line level.
Two columns are of particular interest to users searching for "ae_line_reference_internal": AE_LINE_REFERENCE and AE_LINE_REFERENCE_INTERNAL. The former is built as L5.MEANING||' '||ADJ.ADJUSTMENT_NUMBER, providing a human-readable reference combining the transaction class meaning and the adjustment number. The latter is derived by RPAD(ADJ.ADJUSTMENT_NUMBER, 20, ' '), producing a fixed-width, space-padded internal reference suitable for joining and sorting in downstream accounting processes.
Underlying Base Objects
Per the documented metadata, AR_AEL_SL_ADJ_V is defined over the following base objects:
- AR_ADJUSTMENTS_ALL — the primary adjustment header source (ADJ alias).
- AR_DISTRIBUTIONS_ALL — the accounting distribution lines (ARD alias).
- AR_RECEIVABLES_TRX_ALL — transaction type definitions (TRXACT).
- AR_LOOKUPS — used multiple times for lookup meanings (transaction class, accounting line type, GL transfer status).
- AR_VAT_TAX_ALL — tax code information.
- FND_DOCUMENT_SEQUENCES — document sequence name.
- GL_DAILY_CONVERSION_TYPES — user conversion type description.
- HZ_CUST_ACCOUNTS, HZ_CUST_SITE_USES_ALL, HZ_PARTIES — customer, site, and party name data.
- RA_CUSTOMER_TRX_ALL, RA_CUST_TRX_TYPES_ALL — referenced for transaction context.
The core join is between AR_ADJUSTMENTS_ALL and AR_DISTRIBUTIONS_ALL, with the remaining objects supplying descriptive lookups and party attributes.
Key Columns
- APPLICATION_ID — constant 222, identifying Receivables as the owning application.
- TRX_CLASS / TRX_CLASS_NAME — adjustment transaction class code and meaning.
- TRX_TYPE_N / TRX_TYPE_NAME — receivables transaction identifier and name.
- TRX_NUMBER_DISPLAYED, TRX_NUMBER_C — the adjustment number.
- TRX_DATE, ACCOUNTING_DATE — apply date and GL date.
- ACCT_LINE_TYPE / ACCT_LINE_TYPE_NAME — distribution source type and description.
- CODE_COMBINATION_ID — accounting flexfield combination.
- ENTERED_DR / ENTERED_CR and ACCOUNTED_DR / ACCOUNTED_CR — entered and accounted amounts.
- CURRENCY_CODE and conversion columns (date, type, rate, user conversion type).
- THIRD_PARTY_TYPE, THIRD_PARTY_ID, THIRD_PARTY_NUMBER, THIRD_PARTY_NAME — customer identification.
- GL_TRANSFER_STATUS / GL_TRANSFER_STATUS_NAME — posting status to General Ledger.
- AE_LINE_REFERENCE — display reference (class meaning plus adjustment number).
- AE_LINE_REFERENCE_INTERNAL — RPAD-padded adjustment number, used for internal line reference joins.
- AEL_ID, AEL_TABLE, SOURCE_TABLE, SOURCE_ID — subledger accounting linkage identifiers.
- ACCOUNTING_BASIS — constant 'ACCRUAL'.
Common Use Cases and Queries
This view is typically queried to reconcile adjustments with their accounting entries, to report adjusting activity by customer or period, and to feed external reconciliation systems. A representative query:
SELECT trx_number_displayed, trx_class_name, trx_type_name, accounting_date, accounted_dr, accounted_cr, third_party_name, gl_transfer_status_name, ae_line_reference_internal FROM ar_ael_sl_adj_v WHERE set_of_books_id = :ledger_id AND accounting_date BETWEEN :start_date AND :end_date ORDER BY accounting_date, trx_number_displayed;- To trace a specific line:
SELECT * FROM ar_ael_sl_adj_v WHERE ae_line_reference_internal = RPAD(:adjustment_number, 20, ' '); - To reconcile GL-transferred versus unposted adjustments:
SELECT gl_transfer_status, COUNT(*) FROM ar_ael_sl_adj_v GROUP BY gl_transfer_status;
Note that the view applies no ledger restriction itself; the SET_OF_BOOKS_ID column must be constrained explicitly.
-
View: AR_AEL_SL_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_V, object_name:AR_AEL_SL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_V ,
-
View: AR_AEL_SL_ADJ_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_MRC_V, object_name:AR_AEL_SL_ADJ_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_MRC_V ,
-
View: AR_AEL_SL_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_V, object_name:AR_AEL_SL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_V ,
-
View: AR_AEL_SL_ADJ_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_ADJ_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_ADJ_V, object_name:AR_AEL_GL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_ADJ_V ,
-
View: AR_AEL_SL_ADJ_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_REC_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_REC_MRC_V, object_name:AR_AEL_SL_REC_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_REC_MRC_V ,
-
View: AR_AEL_SL_ADJ_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_ADJ_MRC_V, object_name:AR_AEL_SL_ADJ_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_ADJ_MRC_V ,
-
View: AR_AEL_GL_ADJ_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_REC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_REC_V, object_name:AR_AEL_SL_REC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_REC_V ,
-
View: AR_AEL_SL_REC_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_ADJ_V, object_name:AR_AEL_GL_ADJ_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_ADJ_V ,
-
View: AR_AEL_SL_REC_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_REC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_REC_V, object_name:AR_AEL_SL_REC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_REC_V ,
-
View: AR_AEL_SL_REC_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_REC_MRC_V, object_name:AR_AEL_SL_REC_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_REC_MRC_V ,
-
View: AR_AEL_GL_REC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_REC_V, object_name:AR_AEL_GL_REC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_REC_V ,
-
View: AR_AEL_GL_REC_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_REC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_REC_V, object_name:AR_AEL_GL_REC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_REC_V ,
-
View: AR_AEL_GL_REC_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_V, object_name:AR_AEL_SL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_V ,
-
View: AR_AEL_SL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_V, object_name:AR_AEL_SL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_V ,
-
View: AR_AEL_SL_INV_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_INV_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_INV_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_MRC_V, object_name:AR_AEL_SL_INV_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_MRC_V ,
-
View: AR_AEL_GL_INV_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_INV_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_INV_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_SL_INV_MRC_V, object_name:AR_AEL_SL_INV_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_SL_INV_MRC_V ,
-
View: AR_AEL_GL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_INV_V, object_name:AR_AEL_GL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_INV_V ,
-
View: AR_AEL_SL_CB_REC_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_GL_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_INV_V, object_name:AR_AEL_GL_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_INV_V ,
-
View: AR_AEL_SL_CB_REC_V_OLD
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,