Search Results gl_consolidation_u2




Overview

GL.GL_CONSOLIDATION is the consolidation definition table in the Oracle General Ledger (GL) module of Oracle E-Business Suite 12.1.1 and 12.2.2. It stores one row for each consolidation mapping defined within a ledger set, defining the relationship between a subsidiary (source) ledger and a parent (target) ledger, and capturing the method and currency in which consolidation is performed. The table corresponds to the first window of the Consolidation Mappings form in the GL application, and rows created here drive all downstream consolidation processing, including account and segment mappings, batch execution, and audit trails.

From a heuristic Data Vault perspective, GL_CONSOLIDATION classifies as a hub. Its primary key, CONSOLIDATION_ID, acts as the durable business identifier, while foreign keys to ledger tables and FND_CURRENCIES anchor it to other reference hubs. This classification suggests the table is best understood as a central entity around which consolidation-related satellites and links (accounts, batches, history, and audit rows) accumulate.

Key Information Stored

The table contains 29 documented columns; the most operationally significant are listed below.

The columns START_DATE_ACTIVE_11I, END_DATE_ACTIVE_11I, FROM_LOCATION, and FROM_ORACLE_ID are retained for historical compatibility but are documented as no longer used in Release 12.

Common Use Cases and Queries

Typical reporting activity centers on identifying the source and target ledgers for each mapping and validating method, currency, and mapping configuration before executing a consolidation batch.

  • List all consolidation mappings and their ledger pairs:
    SELECT c.consolidation_id, c.name, c.method, c.usage_code,
           c.from_ledger_id, c.to_ledger_id, c.from_currency_code
    FROM   gl_consolidation c
    ORDER  BY c.name;
  • Find mappings targeting a specific parent ledger:
    SELECT consolidation_id, name, from_ledger_id, method
    FROM   gl_consolidation
    WHERE  to_ledger_id = :p_parent_ledger_id;
  • Validate a mapping by business key (uses GL_CONSOLIDATION_U2):
    SELECT * FROM gl_consolidation WHERE name = :p_name;
  • Inspect journal import and posting behavior flags:
    SELECT name, run_journal_import_flag, summarize_lines_flag,
           audit_mode_flag, run_posting_flag
    FROM   gl_consolidation;

These queries are commonly embedded in consolidation runbooks, CEMLI extensions, and reconciliation reports that trace source-ledger balances through to parent-ledger results.

Related Objects

GL_CONSOLIDATION is referenced by numerous downstream tables through the CONSOLIDATION_ID column, and it references several reference entities.

Together these relationships establish GL_CONSOLIDATION as the hub through which every consolidation run, mapping rule, and audit record is anchored.