Search Results gl_translation_statuses
Overview
GL_TRANSLATION_STATUSES is a General Ledger table owned by the GL schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It records the foreign currency translation status of accounting periods, tracking which ledger, period, and balancing segment have been translated into a given target currency and whether that translation run completed successfully. In an EBS implementation, this table acts as the operational control record that the Translation and Revaluation programs consult and update, preventing duplicate translation runs and providing audit evidence of translation activity across the fiscal calendar.
Under a heuristic Data Vault classification mined from its foreign key structure, the table is best modeled as a link. Its composite identity ties together multiple reference entities — a ledger, a period, a balancing segment value, a target currency, an average-translation indicator, and a budget version — so it functions as an associative record connecting these dimensions rather than as an independent hub or a pure descriptive satellite. No single-column surrogate key is documented; identity is expressed entirely through the composite business key.
Key Information Stored
The table contains 18 documented columns. The most significant include:
- LEDGER_ID — Identifies the ledger (set of books) whose balances were translated; part of the primary key and a foreign key to GL_SETS_OF_BOOKS_11I.
- PERIOD_NAME — The accounting period for which translation status is recorded; part of the primary key.
- BAL_SEG_VALUE — The balancing segment value qualifying the translation scope; part of the primary key.
- TARGET_CURRENCY — The currency into which balances were translated; part of the primary key and a foreign key to FND_CURRENCIES.
- AVERAGE_TRANSLATION_FLAG — Indicates whether average-rate translation was applied; part of the primary key.
- TARGET_BUDGET_VERSION_ID — Identifies the budget version targeted when translating budget balances; a foreign key to GL_BUDGET_VERSIONS.
- ACTUAL_FLAG — Distinguishes actual versus budget balance translation.
- STATUS — The outcome state of the translation run for the qualifying key combination.
- LAST_RUN_DATE — Timestamp of the most recent translation attempt.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent request and program identifiers supporting traceability back to the submitting concurrent program.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns.
The composite primary key GL_TRANSLATION_STATUSES_PK spans LEDGER_ID, PERIOD_NAME, BAL_SEG_VALUE, TARGET_CURRENCY, AVERAGE_TRANSLATION_FLAG, and TARGET_BUDGET_VERSION_ID. The unique index GL_TRANSLATION_STATUSES_U1 carries the identical column list, confirming this set as the business-key candidate. There is no separate single-column surrogate key.
Common Use Cases and Queries
Typical scenarios include confirming whether a period has been translated before closing, auditing translation history for a ledger, and diagnosing concurrent request failures. A representative query retrieves the latest status per ledger and period:
SELECT ledger_id, period_name, target_currency, status, last_run_date FROM gl_translation_statuses WHERE ledger_id = :ledger_id AND period_name = :period_name ORDER BY last_run_date DESC;- Filtering by
actual_flagseparates actual from budget translation records, whiletarget_budget_version_idisolates a specific budget version. - Joining to FND_CURRENCIES resolves the target currency name; joining to GL_SETS_OF_BOOKS_11I resolves ledger attributes.
- Reporting by
request_idlinks the status row to the concurrent request log for root-cause analysis of failed runs.
Related Objects
- GL_SETS_OF_BOOKS_11I — referenced via GL_TRANSLATION_STATUSES.LEDGER_ID, supplying ledger definition and currency context.
- FND_CURRENCIES — referenced via TARGET_CURRENCY, providing currency names and precision attributes.
- GL_BUDGET_VERSIONS — referenced via TARGET_BUDGET_VERSION_ID, identifying the budget version translated.
- GL_BALANCES — holds the translated balances the status rows describe, joined by ledger, period, and currency.
- GL_PERIOD_STATUSES — controls the open/closed state of the periods against which translation status is evaluated.
- FND_CONCURRENT_REQUESTS — joined via REQUEST_ID to trace the translation or revaluation program execution.
-
Table: GL_TRANSLATION_STATUSES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES, object_name:GL_TRANSLATION_STATUSES, status:VALID, product: GL - General Ledger , description: Foreign currency translation status of periods , implementation_dba_data: GL.GL_TRANSLATION_STATUSES ,
-
Table: GL_TRANSLATION_STATUSES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES, object_name:GL_TRANSLATION_STATUSES, status:VALID, product: GL - General Ledger , description: Foreign currency translation status of periods , implementation_dba_data: GL.GL_TRANSLATION_STATUSES ,
-
VIEW: GL.GL_TRANSLATION_STATUSES#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_TRANSLATION_STATUSES#, status:VALID,
-
SYNONYM: APPS.GL_TRANSLATION_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_TRANSLATION_STATUSES, status:VALID,
-
SYNONYM: APPS.GL_TRANSLATION_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_TRANSLATION_STATUSES, status:VALID,
-
VIEW: GL.GL_TRANSLATION_STATUSES#
12.2.2
-
TABLE: GL.GL_TRANSLATION_STATUSES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES, object_name:GL_TRANSLATION_STATUSES, status:VALID,
-
VIEW: APPS.GL_TRANSLATION_STATUSES_V
12.2.2
-
TABLE: GL.GL_TRANSLATION_STATUSES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES, object_name:GL_TRANSLATION_STATUSES, status:VALID,
-
VIEW: APPS.GL_TRANSLATION_STATUSES_V
12.1.1
-
APPS.GL_CONS_WRK_PKG SQL Statements
12.2.2
-
APPS.GL_CONS_WRK_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GL_CONS_WRK_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_CONS_WRK_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_CONS_WRK_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_CONS_WRK_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_TRANS_STATUSES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_TRANS_STATUSES_PKG, status:VALID,
-
APPS.GL_TRANS_STATUSES_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GL_TRANS_STATUSES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_TRANS_STATUSES_PKG, status:VALID,
-
APPS.GL_TRANS_STATUSES_PKG SQL Statements
12.1.1
-
View: GL_TRANSLATION_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES_V, object_name:GL_TRANSLATION_STATUSES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_TRANSLATION_STATUSES_V ,
-
View: GL_TRANSLATION_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES_V, object_name:GL_TRANSLATION_STATUSES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_TRANSLATION_STATUSES_V ,
-
Table: GL_BUDGET_VERSIONS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_VERSIONS, object_name:GL_BUDGET_VERSIONS, status:VALID, product: GL - General Ledger , description: Budget version definitions , implementation_dba_data: GL.GL_BUDGET_VERSIONS ,
-
Table: GL_BUDGET_VERSIONS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BUDGET_VERSIONS, object_name:GL_BUDGET_VERSIONS, status:VALID, product: GL - General Ledger , description: Budget version definitions , implementation_dba_data: GL.GL_BUDGET_VERSIONS ,
-
PACKAGE BODY: APPS.GL_TRANS_STATUSES_PKG
12.1.1
-
VIEW: APPS.GL_TRANSLATION_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES_V, object_name:GL_TRANSLATION_STATUSES_V, status:VALID,
-
PACKAGE BODY: APPS.GL_TRANS_STATUSES_PKG
12.2.2
-
VIEW: APPS.GL_TRANSLATION_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_TRANSLATION_STATUSES_V, object_name:GL_TRANSLATION_STATUSES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.GL_CONS_WRK_PKG
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GL_CONS_WRK_PKG
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: GL_SETS_OF_BOOKS_11I
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS_11I, object_name:GL_SETS_OF_BOOKS_11I, status:VALID, product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: GL.GL_SETS_OF_BOOKS_11I ,
-
12.2.2 DBA Data
12.2.2
-
Table: GL_SETS_OF_BOOKS_11I
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS_11I, object_name:GL_SETS_OF_BOOKS_11I, status:VALID, product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: GL.GL_SETS_OF_BOOKS_11I ,
-
Table: FND_CURRENCIES
12.1.1
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 ,
-
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 ,
-
APPS.GL_TRANS_STATUSES_PKG dependencies on GL_TRANSLATION_STATUSES
12.2.2
-
APPS.GL_TRANS_STATUSES_PKG dependencies on GL_TRANSLATION_STATUSES
12.1.1
-
APPS.GL_CONS_WRK_PKG dependencies on GL_TRANSLATION_STATUSES
12.1.1
-
APPS.GL_CONS_WRK_PKG dependencies on GL_TRANSLATION_STATUSES
12.2.2
-
APPS.GL_TRANS_STATUSES_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.GL_TRANS_STATUSES_PKG dependencies on APP_EXCEPTION
12.2.2
-
APPS.GL_TRANS_STATUSES_PKG dependencies on FND_FLEX_KEYVAL
12.2.2
-
APPS.GL_TRANS_STATUSES_PKG dependencies on FND_MESSAGE
12.1.1