Search Results fa_ael_gl_v
Overview
FA_AEL_GL_V is a read-only view owned by the APPS schema in Oracle E-Business Suite, defined within the OFA (Oracle Assets / Fixed Assets) product. It is one of the family of Assets Accounting Events Line (AEL) views that expose journal-style, subledger accounting lines from Fixed Assets in a consistent column layout required by Oracle Subledger Accounting (SLA), the GL Transfer process, and downstream reporting tools such as Oracle General Ledger, Oracle Purchasing-style AEL extracts, and Discoverer or BI Publisher reports. Its central role is to present adjustment activity that arises inside Oracle Assets in a form that maps directly onto the standard AEL column structure, allowing the Assets subledger to be reconciled to its General Ledger impact.
The view carries the literal AEL_TABLE = 'ADJ', marking its rows as originating from the Assets adjustments accounting stream. The leading token of the object name, FA_AEL_GL_V, follows the naming convention of Assets Accounting Events Line views (AEL), with the "GL" suffix indicating it is aligned to the General Ledger extract and transfer usage. Because the object is a view and not a table, it holds no data of its own; it is a projection derived from transaction and adjustment tables, always reflecting current, committed balances.
Underlying Base Objects
According to the ETRM 12.2.2 metadata, FA_AEL_GL_V is defined over the following referenced base objects, all accessed through APPS-owned synonyms:
- FA_ADJUSTMENTS — the primary driver of the row set, supplying adjustment amounts, debit/credit flags, adjustment types, code combination identifiers, and JE header references.
- FA_TRANSACTION_HEADERS — provides the transaction header, transaction type, transaction date entered, asset references, and book type for each line.
- FA_ADDITIONS — supplies asset number and description attributes.
- FA_BOOK_CONTROLS and FA_MC_BOOK_CONTROLS — provide set of books context, including multi-currency and reporting book configuration.
- FA_ASSET_HISTORY — contributes historical asset state used for reporting context.
- FA_LOOKUPS and FA_LOOKUPS_TL — resolve lookup codes into translated meanings, for example adjustment type and transaction type names.
- FA_SYSTEM_CONTROLS — supplies system-level defaults and category context.
- GL_SETS_OF_BOOKS — a GL view supplying the currency code associated with the set of books.
The join structure ties each adjustment to its transaction header by TRANSACTION_HEADER_ID, and then to the asset and book definitions, so that every reporting line is fully qualified by asset, book, and accounting period.
Key Columns
The view exposes names that conform to the AEL standard. The most significant columns are:
- ACCOUNTED_DR / ACCOUNTED_CR — the accounting (ledger-currency) debit and credit amounts, derived by evaluating the adjustment's debit/credit flag against the sign of the adjustment amount.
- ENTERED_DR / ENTERED_CR — the entered-currency equivalents of the same amounts.
- ACCOUNTING_DATE — the transaction date entered, used as the accounting date for the line.
- AEL_TABLE — a constant 'ADJ', identifying the AEL source stream.
- AE_LINE_REFERENCE — a composed identifier combining the transaction type meaning and the transaction header ID.
- APPLICATION_ID — the Fixed Assets application identifier (140).
- CODE_COMBINATION_ID — the GL account combination charged by the adjustment.
- CURRENCY_CODE — the set of books currency derived from GL_SETS_OF_BOOKS.
- GL_TRANSFER_STATUS — 'Y' or 'N' depending on whether JE_HEADER_ID is populated, indicating whether the line has been transferred to GL.
- SET_OF_BOOKS_ID — identifies the ledger/book to which the transaction belongs.
- TRX_NUMBER_N / TRX_NUMBER_DISPLAYED — the transaction header identifier in numeric and character form.
- ASSET_ID, ASSET_NUMBER, ASSET_DESCRIPTION, ASSET_BOOK_TYPE_CODE — descriptive attributes of the asset associated with the transaction.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit columns propagated from the adjustment record.
Common Use Cases and Queries
FA_AEL_GL_V is most frequently used to audit and reconcile Asset adjustments with their GL postings, to feed downstream reporting on accounting events, and to verify transfer status before period close. A typical reconciliation query selects the debit and credit amounts by book and period for adjustments awaiting transfer:
- Query unreleased adjustments:
SELECT trx_number_displayed, accounting_date, accounted_dr, accounted_cr, gl_transfer_status FROM fa_ael_gl_v WHERE gl_transfer_status = 'N' AND set_of_books_id = :p_sob AND accounting_date BETWEEN :p_from AND :p_to; - Summarize adjustment activity by GL account:
SELECT code_combination_id, SUM(accounted_dr) dr, SUM(accounted_cr) cr FROM fa_ael_gl_v WHERE set_of_books_id = :p_sob GROUP BY code_combination_id; - Locate adjustments by asset:
SELECT asset_number, asset_description, acct_line_type_name, accounted_dr, accounted_cr FROM fa_ael_gl_v WHERE asset_number = :p_asset;
Because the view is driven by FA_ADJUSTMENTS joined to FA_TRANSACTION_HEADERS, it is well suited to functional users and developers who require an AEL-shaped result set without directly navigating the underlying Assets transaction schema.
-
View: FA_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_AEL_GL_V, object_name:FA_AEL_GL_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_AEL_GL_V ,
-
View: FA_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_AEL_GL_V, object_name:FA_AEL_GL_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_AEL_GL_V ,
-
SYNONYM: APPS.FA_LOOKUPS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_LOOKUPS_TL, status:VALID,
-
SYNONYM: APPS.FA_LOOKUPS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_LOOKUPS_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.FA_MC_ADJUSTMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_MC_ADJUSTMENTS, status:VALID,
-
SYNONYM: APPS.FA_MC_BOOK_CONTROLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_MC_BOOK_CONTROLS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.FA_MC_ADJUSTMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_MC_ADJUSTMENTS, status:VALID,
-
VIEW: APPS.FA_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_AEL_GL_V, object_name:FA_AEL_GL_V, status:VALID,
-
SYNONYM: APPS.FA_LOOKUPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_LOOKUPS, status:VALID,
-
SYNONYM: APPS.FA_MC_BOOK_CONTROLS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_MC_BOOK_CONTROLS, status:VALID,
-
VIEW: APPS.FA_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_AEL_GL_V, object_name:FA_AEL_GL_V, status:VALID,
-
SYNONYM: APPS.FA_LOOKUPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_LOOKUPS, status:VALID,
-
SYNONYM: APPS.FA_SYSTEM_CONTROLS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_SYSTEM_CONTROLS, status:VALID,
-
SYNONYM: APPS.FA_ASSET_HISTORY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_ASSET_HISTORY, status:VALID,
-
SYNONYM: APPS.FA_ADJUSTMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_ADJUSTMENTS, status:VALID,
-
SYNONYM: APPS.FA_ASSET_HISTORY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_ASSET_HISTORY, status:VALID,
-
SYNONYM: APPS.FA_SYSTEM_CONTROLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_SYSTEM_CONTROLS, status:VALID,
-
VIEW: APPS.XLA_FA_AEL_GL_V
12.2.2
-
SYNONYM: APPS.FA_ADJUSTMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_ADJUSTMENTS, status:VALID,
-
VIEW: APPS.XLA_FA_AEL_GL_V
12.1.1
-
SYNONYM: APPS.FA_TRANSACTION_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_TRANSACTION_HEADERS, status:VALID,
-
SYNONYM: APPS.FA_ADDITIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_ADDITIONS, status:VALID,
-
SYNONYM: APPS.FA_ADDITIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_ADDITIONS, status:VALID,
-
SYNONYM: APPS.FA_TRANSACTION_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_TRANSACTION_HEADERS, status:VALID,
-
View: XLA_FA_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_FA_AEL_GL_V, object_name:XLA_FA_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_FA_AEL_GL_V ,
-
View: XLA_FA_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_FA_AEL_GL_V, object_name:XLA_FA_AEL_GL_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_FA_AEL_GL_V ,
-
VIEW: APPS.XLA_FA_AEL_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_FA_AEL_GL_V, object_name:XLA_FA_AEL_GL_V, status:VALID,
-
VIEW: APPS.XLA_FA_AEL_GL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_FA_AEL_GL_V, object_name:XLA_FA_AEL_GL_V, status:VALID,
-
SYNONYM: APPS.FA_BOOK_CONTROLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_BOOK_CONTROLS, status:VALID,
-
SYNONYM: APPS.FA_BOOK_CONTROLS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_BOOK_CONTROLS, status:VALID,
-
VIEW: APPS.GL_SETS_OF_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS, object_name:GL_SETS_OF_BOOKS, status:VALID,
-
VIEW: APPS.GL_SETS_OF_BOOKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS, object_name:GL_SETS_OF_BOOKS, status:VALID,
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - XLA Tables and Views
12.1.1
-
eTRM - OFA Tables and Views
12.2.2
-
eTRM - OFA Tables and Views
12.1.1
-
eTRM - SQLGL Tables and Views
12.2.2
description: This table contains the tracking information that Golden Gate will use to launch Journal Import. ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - OFA Tables and Views
12.1.1
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - SQLGL Tables and Views
12.2.2
description: This table contains the tracking information that Golden Gate will use to launch Journal Import. ,
-
eTRM - XLA Tables and Views
12.1.1
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
eTRM - OFA Tables and Views
12.2.2