Search Results css_def_languages_tl
Overview
The CSS_DEF_LANGUAGES_TL table is a translatable (TL) reference table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments. It is designed to store language descriptions in multiple languages, supporting the internationalization features of the application. As indicated by its product association with "CSS - Support (obsolete)," this table belongs to the Customer Support Services module, which has been marked as obsolete in the provided documentation. Crucially, the metadata states this table is "Not implemented in this database," suggesting it may be a legacy object defined in the data model but not physically instantiated in standard deployments, or it may exist only in specific, older installation contexts. Its primary role was to provide a centralized, multilingual repository for language data used elsewhere in the support module.
Key Information Stored
The table's structure is centered on storing language identifiers alongside their corresponding translated names. Based on the primary key definition, the two critical columns are LANGUAGE_ID and LANGUAGE. The LANGUAGE_ID column likely holds a unique numeric or character identifier for a specific language (e.g., 'US' for American English). The LANGUAGE column holds the actual translated name of that language (e.g., 'English', 'Français', 'Deutsch') in the language specified by the column's value. This standard TL table design in Oracle EBS allows a single LANGUAGE_ID to have multiple rows, each with a different LANGUAGE code, providing the translated description for that language code. Other typical columns for a TL table, such as SOURCE_LANG, CREATION_DATE, and LAST_UPDATE_DATE, are common but not explicitly listed in the provided excerpt.
Common Use Cases and Queries
Given its status and design, common use cases would have involved querying language descriptions for user interfaces or reports within the Support module in a multilingual installation. A typical query would retrieve the description for a specific language ID in the current session's language using the standard EBS TL table pattern. For example, to fetch the language name for a known ID, one might use: SELECT language FROM css_def_languages_tl WHERE language_id = :id AND language = USERENV('LANG');. For reporting purposes, a query might list all available translations: SELECT language_id, language, source_lang FROM css_def_languages_tl ORDER BY language_id, language;. However, due to the object's obsolete status and noted non-implementation, these queries are primarily of historical or diagnostic relevance.
Related Objects
The primary documented relationship for this table is its own primary key constraint, CSS_DEF_LANGUAGES_TL_PK, defined on the composite key (LANGUAGE_ID, LANGUAGE). This structure is typical for TL tables, which depend on a corresponding base table. The base table would likely be named CSS_DEF_LANGUAGES_B, and it would contain the non-translatable columns for the LANGUAGE_ID entity. The LANGUAGE_ID column in the _TL table would be a foreign key referencing the LANGUAGE_ID primary key in the hypothetical _B table. Other tables or views within the obsolete CSS module that required multilingual language descriptions would have foreign key relationships to the LANGUAGE_ID column in this table or, more commonly, would join to the _B table and then to this _TL table for descriptive text.
-
Table: CSS_DEF_LANGUAGES_TL
12.1.1
product: CSS - Support (obsolete) , description: Translatable table for Languages , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_LANGUAGES_TL
12.2.2
product: CSS - Support (Obsolete) , description: Translatable table for Languages , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
View: CSS_DEF_LANGUAGES_VL
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_LANGUAGES_VL
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,