Search Results fnd_conc_release_periods_tl




Overview

The FND_CONC_RELEASE_PERIODS_TL table is a core Application Object Library table within the Oracle E-Business Suite (EBS) architecture, specifically versions 12.1.1 and 12.2.2. As a translation table (denoted by the '_TL' suffix), its primary role is to store multilingual translations for the descriptive, user-facing content associated with concurrent processing release periods. It operates in conjunction with its base table, FND_CONC_RELEASE_PERIODS, enabling the EBS application to present period names and descriptions in the language of the end-user's session. This design is fundamental to supporting global deployments and is a standard pattern for translatable entities across the Oracle EBS product suite.

Key Information Stored

The table stores translated text for each concurrent release period, keyed by a unique combination of identifiers and language. Its structure includes both transactional and system columns. The primary key columns, which uniquely identify a translation row, are APPLICATION_ID, CONCURRENT_PERIOD_ID, and LANGUAGE. The core translated content is held in columns such as PERIOD_NAME and DESCRIPTION. Critical system columns include SOURCE_LANG, which indicates the original language of the translation entry, and standard EBS WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) for auditing. The table maintains referential integrity through foreign keys to FND_CONC_RELEASE_PERIODS (the base data), FND_LANGUAGES (for LANGUAGE and SOURCE_LANG), and FND_USER and FND_LOGINS for the WHO columns.

Common Use Cases and Queries

This table is primarily accessed by the application's internal logic to retrieve localized strings for the Concurrent Manager: Periods form and related reports. Common operational and reporting queries involve joining the translation table with its base table and filtering by the user's session language. A typical pattern for retrieving translated period information for a specific application and language would be:

  • SELECT fcrp.concurrent_period_id, fcrpt.period_name, fcrpt.description FROM fnd_conc_release_periods fcrp, fnd_conc_release_periods_tl fcrpt WHERE fcrp.application_id = fcrpt.application_id AND fcrp.concurrent_period_id = fcrpt.concurrent_period_id AND fcrpt.language = USERENV('LANG');

Administrators or developers may also query this table to audit translation coverage, identify missing translations for a new language, or troubleshoot data issues where period names do not display correctly in non-base language environments.

Related Objects

The FND_CONC_RELEASE_PERIODS_TL table has direct dependencies on several key Application Object Library tables. Its primary relationship is with the base table FND_CONC_RELEASE_PERIODS, which holds the non-translatable attributes of a release period. It is also integrally linked to FND_LANGUAGES for valid language codes. As documented in the metadata, it maintains foreign key relationships to FND_USER (for user identification in WHO columns) and FND_LOGINS. While not explicitly listed in the provided excerpt, this translation table is typically accessed via public APIs or views provided by Oracle, and it is a child entity within the broader Concurrent Processing setup data model.