Search Results ael_table
Overview
AR_AEL_GL_REC_ALL_V is a Receivables subledger accounting view owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It exposes the accounted journal lines created by the Subledger Accounting (SLA) engine for Receivables transactions, alongside the corresponding General Ledger transfer status information. The suffix "REC" indicates that the view is restricted to Receivables accounting event lines, while "ALL" denotes that it is the superset variant — it presents both the standard accounted line set and the cross-business-unit or "CB" (cross-business) accounting lines, layered alongside one another through a UNION ALL construct.
The view is the primary reporting and reconciliation interface between Receivables subledger data and the GL interface. It enables functional and technical users to trace an accounting entry from its originating transaction (invoice, credit memo, debit memo, receipt, adjustment, or chargeback) through to its accounting event, journal header, and journal line, and to determine whether that line has been transferred, posted, or remains pending in the GL interface. The AEL_ID column, which the user searched for, is the unique identifier of the subledger accounting entry line and serves as the principal join key to the XML accounting and error tables.
Underlying Base Objects
The view is defined over two principal accounting views and several supporting PL/SQL packages:
- AR_AEL_GL_REC_V — the standard Receivables accounted journal lines view (single business unit).
- AR_AEL_GL_CB_REC_V — the cross-business accounting lines view, providing the "ALL" scope.
- ARPT_SQL_FUNC_UTIL — provides SQL functions used to derive descriptive names such as transaction class name, line type name, and third-party name.
- FND_GLOBAL, FND_PROFILE, FND_ACCESS_CONTROL_UTIL — supply runtime context: user ID, responsibility, org context, and security/multi-org access predicates.
- MO_GLOBAL — provides multi-org (operating unit) security filtering.
- XTR_USER_ACCESS — supplies user-level access restrictions where applicable.
The view resolves org and security predicates dynamically at query time, which means it is not a simple join against static base tables; its output is filtered by the session's profile and access-control settings.
Key Columns
- AEL_ID, AEL_TABLE — the identifier and source table of the subledger accounting entry line. AEL_ID is the primary key used to trace back to the accounting event and to SLA error or XML records.
- JE_HEADER_ID, JE_LINE_NUM — the GL journal header and line to which the entry was transferred.
- GL_TRANSFER_STATUS / GL_TRANSFER_STATUS_NAME — codes and decoded descriptions indicating whether the line is untransferred, transferred, or posted.
- ACCOUNTING_DATE, SET_OF_BOOKS_ID, ACCOUNTING_DATE — ledger and period context for the accounting entry.
- CODE_COMBINATION_ID — the accounting flexfield combination assigned to the line.
- ACCOUNTED_DR / ACCOUNTED_CR, ENTERED_DR / ENTERED_CR, CURRENCY_CODE — the accounted and entered debit/credit amounts and ledger currency.
- TRX_CLASS_NAME, TRX_TYPE_NAME, TRX_NUMBER_DISPLAYED, TRX_HDR_ID — transactional identity: transaction class, type, displayed number, and header ID.
- THIRD_PARTY_NAME, THIRD_PARTY_NUMBER, THIRD_PARTY_SUB_NAME — customer, supplier, or party context.
- SOURCE_ID, SOURCE_TABLE — the originating Receivables document reference.
- ORG_ID — the operating unit that owns the transaction.
- ACCT_LINE_TYPE_NAME — decoded description of the accounting line type (e.g., receivable, revenue, tax, freight).
Several placeholder columns (TRX_NUMBER_N, TRX_TYPE_C, REQUEST_ID, INVENTORY_ITEM_ID) are populated with NULL casts to preserve a uniform column signature across the "ALL" union.
Common Use Cases and Queries
Because AEL_ID is the searched key, the most frequent query is a direct lookup of an accounting entry and its GL transfer state:
- Retrieving the accounting detail for a specific entry:
SELECT ael_id, je_header_id, je_line_num, gl_transfer_status_name, accounted_dr, accounted_cr FROM ar_ael_gl_rec_all_v WHERE ael_id = :ael_id; - Reconciling Receivables to GL for a period: filter on ACCOUNTING_DATE and SET_OF_BOOKS_ID, and group by GL_TRANSFER_STATUS_NAME to identify lines not yet transferred.
- Auditing a customer's account activity by joining THIRD_PARTY_NAME or TRX_NUMBER_DISPLAYED to transaction data.
- Investigating SLA posting errors by joining AEL_ID back to the SLA event and error tables.
In all cases, results are automatically filtered by the operating unit and access-control context of the querying session, so callers must ensure the correct org context is initialised before relying on row counts or totals.
-
View: AR_AEL_GL_REC_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_REC_ALL_V, object_name:AR_AEL_GL_REC_ALL_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_REC_ALL_V ,
-
View: AR_AEL_GL_REC_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_REC_ALL_V, object_name:AR_AEL_GL_REC_ALL_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_AEL_GL_REC_ALL_V ,
-
View: AR_AEL_GL_REC_CB_V
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
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_REC_CB_V
12.1.1
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_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_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_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_SL_CB_REC_V_OLD
12.1.1
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
View: AR_AEL_SL_CB_REC_V_OLD
12.2.2
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_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_GL_INV_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 ,