Search Results gl_translation_interim
Overview
The GL_TRANSLATION_INTERIM table is a core data object within the Oracle E-Business Suite General Ledger (GL) module. It serves as a critical staging area for storing foreign currency translated interim balances during the financial translation process. This table's primary role is to hold calculated balance data after applying translation rates to account balances from a subsidiary ledger's functional currency into a reporting set of books' functional currency, but before these amounts are consolidated into final translated balances. It is integral to the period-end closing and financial consolidation procedures for multinational organizations operating with multiple currencies and reporting requirements.
Key Information Stored
The table stores aggregated balance information keyed by several essential dimensions. While a full column list is not provided in the metadata, the documented foreign key relationships clearly indicate the critical data points. Each record is anchored to a specific accounting flexfield combination via CODE_COMBINATION_ID and belongs to a defined SET_OF_BOOKS_ID. The translation context is defined by the TEMPLATE_ID, which references the translation rules, and the PERIOD_TYPE for temporal aggregation (e.g., Month, Quarter). The CURRENCY_CODE column identifies the foreign currency being translated from. The table's core data consists of the translated debit and credit amounts (e.g., TRANSLATED_DR_BALANCE, TRANSLATED_CR_BALANCE) for the specified period, which represent the interim state of the translation calculation.
Common Use Cases and Queries
The primary use case is the execution and review of the translation process within the General Ledger. This includes troubleshooting translation runs, validating interim results before final posting, and performing audit trails on currency conversion. A common reporting query involves joining to descriptive tables to analyze translated balances by account and period. For example:
- Reviewing interim translated balances for a specific template and period:
SELECT gti.*, gcc.concatenated_segments FROM gl_translation_interim gti, gl_code_combinations gcc WHERE gti.template_id = :p_template_id AND gti.period_type = :p_period_type AND gti.code_combination_id = gcc.code_combination_id; - Comparing interim balances to source amounts to verify translation rates.
- Identifying accounts with large translation adjustments prior to final consolidation posting.
Related Objects
The GL_TRANSLATION_INTERIM table has defined foreign key relationships with several fundamental GL setup and transaction tables, as documented in the provided metadata:
- GL_CODE_COMBINATIONS: Joined via CODE_COMBINATION_ID. This links each interim balance record to its specific account combination.
- GL_SETS_OF_BOOKS: Joined via SET_OF_BOOKS_ID. This associates the data with the specific ledger or set of books.
- GL_SUMMARY_TEMPLATES: Joined via TEMPLATE_ID. This references the translation template that defines the rules, rates, and accounts for the translation process.
- GL_PERIOD_TYPES: Joined via PERIOD_TYPE. This defines the accounting period (e.g., Month) for the aggregated balances.
- FND_CURRENCIES: Joined via CURRENCY_CODE. This identifies the foreign currency of the source amounts being translated.
-
Table: GL_TRANSLATION_INTERIM
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_TRANSLATION_INTERIM, object_name:GL_TRANSLATION_INTERIM, status:VALID, product: GL - General Ledger , description: Foreign currency translated interim balances , implementation_dba_data: GL.GL_TRANSLATION_INTERIM ,
-
Table: GL_TRANSLATION_INTERIM
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_TRANSLATION_INTERIM, object_name:GL_TRANSLATION_INTERIM, status:VALID, product: GL - General Ledger , description: Foreign currency translated interim balances , implementation_dba_data: GL.GL_TRANSLATION_INTERIM ,
-
Table: GL_PERIOD_TYPES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_PERIOD_TYPES, object_name:GL_PERIOD_TYPES, status:VALID, product: GL - General Ledger , description: Calendar period types , implementation_dba_data: GL.GL_PERIOD_TYPES ,
-
Table: GL_SUMMARY_TEMPLATES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SUMMARY_TEMPLATES, object_name:GL_SUMMARY_TEMPLATES, status:VALID, product: GL - General Ledger , description: Summary account templates , implementation_dba_data: GL.GL_SUMMARY_TEMPLATES ,
-
Table: GL_PERIOD_TYPES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_PERIOD_TYPES, object_name:GL_PERIOD_TYPES, status:VALID, product: GL - General Ledger , description: Calendar period types , implementation_dba_data: GL.GL_PERIOD_TYPES ,
-
Table: GL_SUMMARY_TEMPLATES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SUMMARY_TEMPLATES, object_name:GL_SUMMARY_TEMPLATES, status:VALID, product: GL - General Ledger , description: Summary account templates , implementation_dba_data: GL.GL_SUMMARY_TEMPLATES ,
-
Table: GL_SETS_OF_BOOKS
12.2.2
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
Table: GL_SETS_OF_BOOKS
12.1.1
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
Table: GL_CODE_COMBINATIONS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_CODE_COMBINATIONS, object_name:GL_CODE_COMBINATIONS, status:VALID, product: GL - General Ledger , description: Account combinations , implementation_dba_data: GL.GL_CODE_COMBINATIONS ,
-
Table: GL_CODE_COMBINATIONS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_CODE_COMBINATIONS, object_name:GL_CODE_COMBINATIONS, status:VALID, product: GL - General Ledger , description: Account combinations , implementation_dba_data: GL.GL_CODE_COMBINATIONS ,