Search Results trx_type_n
Overview
APPS.AR_AEL_GL_REC_ALL_V is a reporting view in Oracle EBS Receivables (AR) that presents the full population of accounting event lines destined for the General Ledger, regardless of their current GL transfer status. In Release 12.1.1 and 12.2.2, the Subledger Accounting architecture records accounting entries in the XLA tables and subsequently transfers them to GL via the Create Accounting and Transfer to GL processes. This view consolidates those entries into a single reporting structure in which each row carries a GL transfer status indicator, exposed through the columns GL_TRANSFER_STATUS and GL_TRANSFER_STATUS_NAME, together with subledger accounting identifiers such as AEL_ID, AEL_TABLE, and AE_LINE_REFERENCE.
Unlike the transferred-only variants of the AR accounting views, the "_ALL_V" suffix indicates that the view does not restrict rows to entries that have already been posted to GL. This makes it the appropriate source for reconciliation reporting, where users must compare Receivables subledger balances with GL balances, and for diagnostics on entries that remain untransferred or in error. Because the view includes the GL transfer status for every line, it is the canonical object referenced when a user searches on "gl_transfer_status" in the context of AR-to-GL reconciliation.
Underlying Base Objects
The view is defined over the following documented objects and packages:
- AR_AEL_GL_REC_V — the core Receivables accounting event view, supplying the majority of AR-specific accounting, transaction, customer, and tax columns.
- AR_AEL_GL_CB_REC_V — the cash basis companion view, contributing cash-basis accounting entries.
- ARPT_SQL_FUNC_UTIL — package providing SQL utility functions used in the view's logic.
- FND_ACCESS_CONTROL_UTIL, FND_GLOBAL, FND_PROFILE, MO_GLOBAL — standard EBS security and context packages supplying organization (ORG_ID) and set of books (SET_OF_BOOKS_ID) access control and profile-based filtering.
- XTR_USER_ACCESS — package used for treasury-related access control.
The view is effectively a UNION-style aggregate in which accrual and cash-basis lines are combined, with GL transfer status derived from the underlying XLA event data.
Key Columns
- GL_TRANSFER_STATUS / GL_TRANSFER_STATUS_NAME — the numeric code and decoded description of each line's GL transfer state, distinguishing untransferred, transferred, and error conditions.
- AEL_ID, AEL_TABLE, AE_LINE_REFERENCE — subledger accounting event identifiers linking the row back to the originating XLA event and line.
- ACCOUNTING_DATE, ACCOUNTED_DR, ACCOUNTED_CR, ENTERED_DR, ENTERED_CR — accounting date and debit/credit amounts in both accounted and entered currencies.
- CURRENCY_CODE, CURRENCY_CONVERSION_RATE, CURRENCY_CONVERSION_TYPE — currency and conversion attributes for the line.
- TRX_NUMBER_DISPLAYED, TRX_CLASS_NAME, TRX_TYPE_NAME, TRX_DATE — transaction-facing attributes identifying the source document.
- THIRD_PARTY_NAME, THIRD_PARTY_NUMBER, THIRD_PARTY_TYPE — customer/party identification.
- CODE_COMBINATION_ID, SET_OF_BOOKS_ID, ORG_ID — accounting flexfield, ledger, and operating unit context.
- ACCT_LINE_TYPE_NAME, COMMENTS, TAX_CODE — descriptive detail on the accounting line.
Common Use Cases and Queries
Typical scenarios include reconciling AR subledger activity to GL, identifying untransferred or error-status lines, and auditing conversion rates applied to foreign-currency transactions.
Sample query listing untransferred lines:
SELECT trx_number_displayed, trx_class_name, accounting_date, accounted_dr, accounted_cr, gl_transfer_status_name, ae_line_reference FROM apps.ar_ael_gl_rec_all_v WHERE gl_transfer_status_name <> 'Transferred' ORDER BY accounting_date;
Sample query reconciling AR activity to GL for a period:
SELECT set_of_books_id, gl_transfer_status_name, COUNT(*) line_count, SUM(accounted_dr) total_dr, SUM(accounted_cr) total_cr FROM apps.ar_ael_gl_rec_all_v WHERE accounting_date BETWEEN :from_date AND :to_date GROUP BY set_of_books_id, gl_transfer_status_name;
These queries rely on the view's distinguishing feature — the preservation of every AR accounting line with its GL transfer status — making AR_AEL_GL_REC_ALL_V indispensable for period-end reconciliation and transfer diagnostics.
-
VIEW: APPS.AR_AEL_GL_REC_ALL_V
12.2.2
-
VIEW: APPS.AR_AEL_GL_REC_ALL_V
12.1.1
-
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: APPS.CST_AEL_GL_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_GL_INV_V, object_name:CST_AEL_GL_INV_V, status:VALID,
-
VIEW: APPS.CST_AEL_SL_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_SL_INV_V, object_name:CST_AEL_SL_INV_V, status:VALID,
-
VIEW: APPS.CST_AEL_SL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_SL_INV_V, object_name:CST_AEL_SL_INV_V, status:VALID,
-
VIEW: APPS.CST_AEL_GL_WIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_GL_WIP_V, object_name:CST_AEL_GL_WIP_V, status:VALID,
-
VIEW: APPS.CST_AEL_SL_WIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_SL_WIP_V, object_name:CST_AEL_SL_WIP_V, status:VALID,
-
VIEW: APPS.CST_AEL_GL_WIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_GL_WIP_V, object_name:CST_AEL_GL_WIP_V, status:VALID,
-
VIEW: APPS.CST_AEL_SL_WIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_SL_WIP_V, object_name:CST_AEL_SL_WIP_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_SL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_INV_V, object_name:CST_PAC_AEL_SL_INV_V, status:VALID,
-
VIEW: APPS.OZF_AEL_SL_CLA_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OZF_AEL_SL_CLA_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_SL_WIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_WIP_V, object_name:CST_PAC_AEL_SL_WIP_V, status:VALID,
-
VIEW: APPS.CST_AEL_GL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AEL_GL_INV_V, object_name:CST_AEL_GL_INV_V, status:VALID,
-
View: XLA_AR_INV_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_INV_AEL_GL_V, object_name:XLA_AR_INV_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_INV_AEL_GL_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.CST_PAC_AEL_GL_WIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_GL_WIP_V, object_name:CST_PAC_AEL_GL_WIP_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_GL_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_GL_INV_V, object_name:CST_PAC_AEL_GL_INV_V, status:VALID,
-
VIEW: APPS.CST_PAC_AEL_SL_WIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_WIP_V, object_name:CST_PAC_AEL_SL_WIP_V, status:VALID,
-
VIEW: APPS.OZF_AEL_GL_CLA_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OZF_AEL_GL_CLA_V, status:VALID,
-
View: XLA_JL_BR_AR_BT_AEL_SL_V
12.1.1
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.XLA_INV_AEL_SL_V
12.1.1
-
VIEW: APPS.XLA_AR_REC_AEL_SL_MRC_V
12.1.1
-
VIEW: APPS.XLA_INV_AEL_SL_PAC_V
12.2.2
-
VIEW: APPS.XLA_OZF_CLA_AEL_SL_V
12.2.2
-
VIEW: APPS.XLA_AR_ADJ_AEL_SL_MRC_V
12.2.2
-
VIEW: APPS.XLA_OZF_CLA_AEL_GL_V
12.2.2
-
View: XLA_JL_BR_AR_BT_AEL_GL_V
12.1.1
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
View: XLA_JL_BR_AR_BT_AEL_SL_V
12.2.2
product: XLA - Subledger Accounting , implementation_dba_data: Not implemented in this database ,
-
View: XLA_AR_REC_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AR_REC_AEL_GL_V, object_name:XLA_AR_REC_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AR_REC_AEL_GL_V ,
-
VIEW: APPS.CST_PAC_AEL_SL_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_AEL_SL_INV_V, object_name:CST_PAC_AEL_SL_INV_V, status:VALID,
-
VIEW: APPS.AR_AEL_GL_CB_REC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_AEL_GL_CB_REC_V, object_name:AR_AEL_GL_CB_REC_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
View: AR_AEL_GL_REC_CB_V
12.2.2
product: AR - Receivables , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.XLA_WIP_AEL_GL_PAC_V
12.1.1
-
VIEW: APPS.XLA_AR_ADJ_AEL_GL_V
12.1.1
-
VIEW: APPS.XLA_AR_INV_AEL_GL_V
12.1.1
-
VIEW: APPS.XLA_INV_AEL_GL_PAC_V
12.2.2
-
VIEW: APPS.XLA_AR_CB_REC_AEL_SL_V
12.2.2
-
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: APPS.OZF_AEL_GL_CLA_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OZF_AEL_GL_CLA_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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: XLA_INV_AEL_SL_PAC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_INV_AEL_SL_PAC_V, object_name:XLA_INV_AEL_SL_PAC_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_INV_AEL_SL_PAC_V ,
-
View: XLA_OZF_CLA_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_OZF_CLA_AEL_SL_V, object_name:XLA_OZF_CLA_AEL_SL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_OZF_CLA_AEL_SL_V ,