Search Results target_budget_name




Overview

GL_TRANSLATION_STATUSES_V is a General Ledger (GL) reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It provides a denormalized, read-only presentation of the currency translation status of a ledger for a given accounting period. Currency translation is the process by which account balances maintained in a ledger's functional currency are converted into a target (reporting) currency. The view consolidates the tracking record for each translation run and joins it to period-status and budget-version information, producing a single row per ledger, period, target currency, and translation context.

Because the view abstracts the join logic and exposes meaningful column aliases, it is commonly used for reporting, reconciliation, and integration purposes — for example, in custom concurrent programs, BI Publisher reports, or interfaces that must determine whether a period's balances have been translated before downstream consolidation, elimination, or financial statement generation.

Underlying Base Objects

The view is defined over three documented base objects, all referenced through APPS synonyms:

The WHERE clause fixes the GL application context (101) and correlates ledger and period across the status tables, so the view reflects only valid ledger-period combinations.

Key Columns

Common Use Cases and Queries

Typical scenarios include verifying translation completeness before close, identifying periods not yet translated, and reviewing translation history by ledger and currency.

  • Check translated status for a ledger and period:
SELECT period, currency_code, balancing_segment_value, status, date_last_run
FROM   apps.gl_translation_statuses_v
WHERE  ledger_id = :ledger_id
AND    period    = :period_name
ORDER  BY currency_code;
  • Locate untranslated periods or errors:
SELECT period, currency_code, status
FROM   apps.gl_translation_statuses_v
WHERE  status NOT IN ('T')
AND    period_year = :year;
  • Filter by balancing segment value, as implied by the search term:
SELECT period, currency_code, status
FROM   apps.gl_translation_statuses_v
WHERE  balancing_segment_value = :bal_seg_value;

Because the view is read-only and based on standard GL tables, it is safe for ad hoc inquiry but should not be used for updates; status changes must be performed through the GL translation concurrent processes that maintain GL_TRANSLATION_STATUSES.