Search Results fnd_iso_languages_tl
Overview
FND_ISO_LANGUAGES_TL is the translation table for FND_ISO_LANGUAGES in the Oracle E-Business Suite Application Object Library (FND) schema APPLSYS. It stores the language-specific, user-facing text attributes (notably NAME and DESCRIPTION) for each ISO language code registered in the base table. The _TL suffix follows the standard Oracle EBS multilingual design pattern, in which language-independent attributes reside in the base table and translated attributes are held here, keyed by a language code and a source language for translation bookkeeping. Because the table carries descriptive, attribute-level detail that changes over time, the mined Data Vault classification heuristic suggests modeling it as a satellite; the metadata labels it standalone, meaning no enforced foreign key relationships were mined from the FK structure.
Key Information Stored
The table contains 11 documented columns. The most operationally significant are:
ISO_LANGUAGE_3— The three-character ISO 639-2 language code (for example,ENG,FRA,DEU). This is the primary business identifier carried from the base table and the column most frequently referenced in queries.LANGUAGE— The Oracle language code identifying the translation in whichNAMEandDESCRIPTIONare rendered. This is the second component of the composite key.NAME— The translated display name of the ISO language, presented in the language identified byLANGUAGE.DESCRIPTION— A longer translated description of the ISO language entry.SOURCE_LANG— The language from which the row was originally translated, supporting Oracle's translation synchronization logic (for example,US).ZD_EDITION_NAME— The editioning column introduced by the Oracle EBS 12.2 online patching architecture, identifying the edition to which the row belongs.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— Standard EBS audit columns recording who created and last modified the row and when.
The declared primary key is FND_ISO_LANGUAGES_TL_PK, defined on the composite of ISO_LANGUAGE_3 and LANGUAGE. Two unique indexes are documented as business-key candidates: FND_ISO_LANGUAGES_TL_U1 on (ISO_LANGUAGE_3, LANGUAGE, ZD_EDITION_NAME) and FND_ISO_LANGUAGES_TL_U2 on (DESCRIPTION, LANGUAGE, ZD_EDITION_NAME). The edition-aware U1 index effectively supersedes the primary key under 12.2 editioning.
Common Use Cases and Queries
Typical uses include retrieving a language's display name in a specific locale, validating that a three-letter ISO code is registered, and building multilingual selection lists. A standard lookup filters by both the ISO code and the session language:
SELECT name, description FROM fnd_iso_languages_tl WHERE iso_language_3 = :p_code AND language = userenv('LANG');- Reporting available translations for one code:
SELECT language, name FROM fnd_iso_languages_tl WHERE iso_language_3 = 'ENG' ORDER BY language; - Confirming translation coverage by comparing distinct
LANGUAGEvalues againstFND_LANGUAGES.
Reporting scenarios commonly join this table to the base FND_ISO_LANGUAGES to combine code-level attributes with translated text, and to FND_LANGUAGES to resolve language descriptions. Because translation rows exist only for installed or seeded languages, queries should tolerate missing rows by using outer joins and defaulting to the base-language text.
Related Objects
FND_ISO_LANGUAGES— The base (non-translated) table; join onISO_LANGUAGE_3to obtain language-independent attributes alongside translated text.FND_LANGUAGESandFND_LANGUAGES_TL— Provide the description and installed-language context for theLANGUAGEcolumn.FND_TERRITORIES_TL— Parallel translation table used together with ISO languages in territory/language combination lookups.FND_LANGUAGEandFND_ISO_LANGUAGES_VL— The view layer that exposes base and translated columns as a single logical entity; application code typically queries the VL view rather than the TL table directly.FND_SESSION/USERENV('LANG')— The runtime source of the language code used to filter translation rows for the current session.
Writers should query the _VL view for display purposes and restrict direct DML on the _TL table to seeded data maintenance or controlled patches, respecting the ZD_EDITION_NAME editioning column in 12.2 environments.
-
Table: FND_ISO_LANGUAGES_TL
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_ISO_LANGUAGES_TL, object_name:FND_ISO_LANGUAGES_TL, status:VALID, product: FND - Application Object Library , description: Translations for FND_ISO_LANGUAGES , implementation_dba_data: APPLSYS.FND_ISO_LANGUAGES_TL ,
-
Table: FND_ISO_LANGUAGES_TL
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_ISO_LANGUAGES_TL, object_name:FND_ISO_LANGUAGES_TL, status:VALID, product: FND - Application Object Library , description: Translations for FND_ISO_LANGUAGES , implementation_dba_data: APPLSYS.FND_ISO_LANGUAGES_TL ,
-
APPS.FND_ISO_LANGUAGES_PKG SQL Statements
12.1.1
-
APPS.FND_ISO_LANGUAGES_PKG SQL Statements
12.2.2
-
VIEW: APPLSYS.FND_ISO_LANGUAGES_TL#
12.2.2
owner:APPLSYS, object_type:VIEW, object_name:FND_ISO_LANGUAGES_TL#, status:VALID,
-
SYNONYM: APPS.FND_ISO_LANGUAGES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_ISO_LANGUAGES_TL, status:VALID,
-
VIEW: APPS.FND_ISO_LANGUAGES_VL
12.1.1
-
VIEW: APPS.FND_ISO_LANGUAGES_VL
12.2.2
-
PACKAGE BODY: APPS.FND_ISO_LANGUAGES_PKG
12.2.2
-
TRIGGER: APPS.FND_ISO_LANGUAGES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:FND_ISO_LANGUAGES_TL+, status:VALID,
-
PACKAGE BODY: APPS.FND_ISO_LANGUAGES_PKG
12.1.1
-
SYNONYM: APPS.FND_ISO_LANGUAGES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_ISO_LANGUAGES_TL, status:VALID,
-
VIEW: APPLSYS.FND_ISO_LANGUAGES_TL#
12.2.2
-
TRIGGER: APPS.FND_ISO_LANGUAGES_TL+
12.2.2
-
FUNCTION: APPS.FND_ISO_LANGUAGES_TL=
12.2.2
-
FUNCTION: APPS.FND_ISO_LANGUAGES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:FND_ISO_LANGUAGES_TL=, status:VALID,
-
View: FND_ISO_LANGUAGES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_ISO_LANGUAGES_VL, object_name:FND_ISO_LANGUAGES_VL, status:VALID, product: FND - Application Object Library , description: Multilingual view for language table based on ISO-649 , implementation_dba_data: APPS.FND_ISO_LANGUAGES_VL ,
-
TABLE: APPLSYS.FND_ISO_LANGUAGES_TL
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_ISO_LANGUAGES_TL, object_name:FND_ISO_LANGUAGES_TL, status:VALID,
-
TABLE: APPLSYS.FND_ISO_LANGUAGES_TL
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_ISO_LANGUAGES_TL, object_name:FND_ISO_LANGUAGES_TL, status:VALID,
-
PACKAGE BODY: APPS.FND_ISO_LANGUAGES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_ISO_LANGUAGES_PKG, status:VALID,
-
PACKAGE BODY: APPS.FND_ISO_LANGUAGES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_ISO_LANGUAGES_PKG, status:VALID,
-
View: FND_ISO_LANGUAGES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_ISO_LANGUAGES_VL, object_name:FND_ISO_LANGUAGES_VL, status:VALID, product: FND - Application Object Library , description: Multilingual view for language table based on ISO-649 , implementation_dba_data: APPS.FND_ISO_LANGUAGES_VL ,
-
VIEW: APPS.FND_ISO_LANGUAGES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_ISO_LANGUAGES_VL, object_name:FND_ISO_LANGUAGES_VL, status:VALID,
-
VIEW: APPS.FND_ISO_LANGUAGES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_ISO_LANGUAGES_VL, object_name:FND_ISO_LANGUAGES_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
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 FND Design Data
12.1.1
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_ISO_LANGUAGES_TL
12.1.1
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_ISO_LANGUAGES_TL
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_ISO_LANGUAGES
12.2.2
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_ISO_LANGUAGES
12.1.1
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_LANGUAGES
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_LOAD_UTIL
12.2.2
-
APPS.FND_ISO_LANGUAGES_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,