Search Results gl_xfr_ledger_mappings
Overview
GL_XFR_LEDGER_MAPPINGS is a General Ledger configuration table in the GL schema that stores ledger-level mappings between an Oracle E-Business Suite source ledger and a corresponding Fusion (Oracle Cloud) target ledger. Its primary function is to support the migration and coexistence infrastructure that connects an EBS General Ledger installation with a Fusion General Ledger environment, ensuring that transactions and balances originating in EBS are correctly translated into the equivalent Fusion ledger structure.
Each row establishes the correspondence between a source (EBS) ledger, its functional currency, the target (Fusion) ledger, and the Chart of Accounts and calendar mapping definitions required to align the two systems. The table therefore acts as a controlling reference point for downstream mapping activities, most notably at the Chart of Accounts combination (CCID) level.
From a Data Vault modeling perspective, the heuristic classification derived from the foreign-key structure is satellite-leaning. This suggests the object behaves primarily as a descriptive, attribute-bearing structure keyed against a ledger-hub concept, rather than as an independent hub or a pure many-to-many link.
Key Information Stored
The table contains 13 documented columns. The most significant are:
- LEDGER_MAPPING_ID — the surrogate primary key, defined by GL_XFR_LEDGER_MAPPINGS_PK. It uniquely identifies each ledger mapping record and is the value referenced by child tables.
- FROM_LEDGER_ID — the source EBS ledger, referencing GL_LEDGERS. This is one half of the designated unique business-key candidate.
- FROM_LEDGER_CURRENCY — the functional currency of the source ledger, referencing FND_CURRENCIES. Together with FROM_LEDGER_ID it forms the unique index GL_XFR_LEDGER_MAPPINGS_U2 (FROM_LEDGER_ID, FROM_LEDGER_CURRENCY), which is the strongest business-key candidate on the table.
- TO_LEDGER_ID — the target Fusion ledger to which the source ledger is mapped.
- COA_MAPPING_ID — the Chart of Accounts mapping definition that governs how EBS account combinations translate to their Fusion equivalents, referencing GL_COA_MAPPINGS.
- CALENDAR_MAPPING_ID — the mapping that aligns the EBS accounting calendar with the Fusion calendar.
- MAX_DELTA_RUN_ID — tracks the highest processing run identifier, used to support incremental (delta) transfer of data since the last execution.
- FIRST_EFF_PER_NUM — the first effective period number, anchoring the mapping to a point in the accounting calendar.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard EBS audit columns recording who created and last modified each mapping and when.
The unique index GL_XFR_LEDGER_MAPPINGS_U1 on LEDGER_MAPPING_ID simply reinforces the surrogate primary key. The business-meaningful uniqueness is enforced by U2.
Common Use Cases and Queries
Typical usage centers on validating and reporting the ledger alignment between EBS and Fusion. A common query resolves a source ledger to its target and associated mappings:
- Retrieving the target ledger for a given source ledger and currency:
SELECT TO_LEDGER_ID, COA_MAPPING_ID, CALENDAR_MAPPING_ID FROM GL_XFR_LEDGER_MAPPINGS WHERE FROM_LEDGER_ID = :ledger_id AND FROM_LEDGER_CURRENCY = :currency; - Joining to GL_LEDGERS to obtain ledger names:
... FROM GL_XFR_LEDGER_MAPPINGS m, GL_LEDGERS l WHERE m.FROM_LEDGER_ID = l.LEDGER_ID; - Confirming complete mapping coverage before initiating a transfer run, ensuring COA_MAPPING_ID and CALENDAR_MAPPING_ID are populated for every source ledger.
- Monitoring incremental progress by inspecting MAX_DELTA_RUN_ID against the last processed run.
- Auditing changes to mappings using the CREATED_BY / LAST_UPDATED_BY columns.
Because the mapping carries currency and effective-period attributes, it is also used in reconciliation reports that compare EBS balances to Fusion balances for a defined period.
Related Objects
The following objects are the most significant dependents and references for this table:
- GL_LEDGERS — referenced via FROM_LEDGER_ID; supplies the source ledger definition.
- FND_CURRENCIES — referenced via FROM_LEDGER_CURRENCY; provides currency validation.
- GL_COA_MAPPINGS — referenced via COA_MAPPING_ID; defines account combination translation rules.
- GL_XFR_CCID_MAPPINGS — the principal child table; its LEDGER_MAPPING_ID column references this table, carrying the CCID-level detail that depends on the ledger mapping header.
- GL_XFR_LEDGER_MAPPINGS_PK / _U1 / _U2 — the primary key and unique constraints enforcing record identity and business uniqueness.
This table forms the header layer of the EBS-to-Fusion transformation configuration, with GL_XFR_CCID_MAPPINGS providing the detail rows that rely on it.
-
Table: GL_XFR_LEDGER_MAPPINGS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_XFR_LEDGER_MAPPINGS, object_name:GL_XFR_LEDGER_MAPPINGS, status:VALID, product: GL - General Ledger , description: This table is used to store ledger mappings between EBS and Fusion ledger. , implementation_dba_data: GL.GL_XFR_LEDGER_MAPPINGS ,
-
VIEW: GL.GL_XFR_LEDGER_MAPPINGS#
12.2.2
-
VIEW: GL.GL_XFR_LEDGER_MAPPINGS#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_XFR_LEDGER_MAPPINGS#, status:VALID,
-
SYNONYM: APPS.GL_XFR_LEDGER_MAPPINGS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_XFR_LEDGER_MAPPINGS, status:VALID,
-
Table: GL_XFR_CCID_MAPPINGS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_XFR_CCID_MAPPINGS, object_name:GL_XFR_CCID_MAPPINGS, status:VALID, product: GL - General Ledger , description: This table contains the account mappings for each period for a ledger mapping. , implementation_dba_data: GL.GL_XFR_CCID_MAPPINGS ,
-
TABLE: GL.GL_XFR_LEDGER_MAPPINGS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_XFR_LEDGER_MAPPINGS, object_name:GL_XFR_LEDGER_MAPPINGS, status:VALID,
-
Table: GL_COA_MAPPINGS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_COA_MAPPINGS, object_name:GL_COA_MAPPINGS, status:VALID, product: GL - General Ledger , description: Chart of accounts mapping definitions , implementation_dba_data: GL.GL_COA_MAPPINGS ,
-
PACKAGE BODY: APPS.GL_FUSION_TRANSFER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_FUSION_TRANSFER_PKG, status:VALID,
-
APPS.GL_FUSION_TRANSFER_PKG SQL Statements
12.2.2
-
Table: GL_LEDGERS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGERS, object_name:GL_LEDGERS, status:VALID, product: GL - General Ledger , description: Ledger definition , implementation_dba_data: GL.GL_LEDGERS ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: FND_CURRENCIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
Foreign Keys
12.2.2
-
APPS.GL_FUSION_TRANSFER_PKG dependencies on GL_XFR_LEDGER_MAPPINGS
12.2.2
-
PACKAGE BODY: APPS.GL_FUSION_TRANSFER_PKG
12.2.2
-
APPS.GL_FUSION_TRANSFER_PKG dependencies on GL_COA_MAPPINGS
12.2.2
-
APPS.GL_FUSION_TRANSFER_PKG dependencies on GL_XFR_LEDGERS
12.2.2
-
APPS.GL_FUSION_TRANSFER_PKG dependencies on GL_XFR_LED_MAP_PERIODS
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 - 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