Search Results cs_kb_used_sum_defs_tl
Overview
The CS_KB_USED_SUM_DEFS_TL table is a core translation (TL) table within the Oracle E-Business Suite Service (CS) module. It functions as the multilingual repository for user-defined summary definitions utilized by the knowledge base (KB) functionality. Its primary role is to store translated text for summary labels or descriptions, enabling the support of multiple languages within the EBS application. This table works in conjunction with its base table, CS_KB_USED_SUM_DEFS_B, which holds the language-independent structural data. The existence of this translation table is a standard Oracle EBS architecture pattern, ensuring that summary definitions presented in the user interface are dynamically served in the user's session language, a critical feature for global deployments of versions 12.1.1 and 12.2.2.
Key Information Stored
The table stores translated attributes for knowledge base summary definitions. The primary key is a composite of DEF_ID and LANGUAGE, which uniquely identifies a single translation for a specific definition. The DEF_ID column is a foreign key linking the record to its corresponding entity in the base table. The LANGUAGE column holds the language code (e.g., 'US', 'FR') and is a foreign key to FND_LANGUAGES. The SOURCE_LANG column, also a foreign key to FND_LANGUAGES, indicates the original language in which the data was entered, serving as the source for any subsequent translations. The most critical translated data column, typically named DESCRIPTION or a similar attribute (implied by the table's purpose though not explicitly listed in the brief metadata), would hold the actual translated text for the summary definition as seen by end-users.
Common Use Cases and Queries
This table is primarily accessed by the application's internal localization engine to render translated content. From a reporting or data extraction standpoint, common use cases involve generating multilingual lists of KB summary definitions or auditing translation completeness. A typical query joins the translation table with its base table and the languages table to retrieve human-readable information.
- Sample Query for Translated Definitions:
SELECT b.DEF_ID, tl.LANGUAGE, tl.DESCRIPTION, l.NLS_LANGUAGE
FROM CS_KB_USED_SUM_DEFS_B b,
CS_KB_USED_SUM_DEFS_TL tl,
FND_LANGUAGES l
WHERE b.DEF_ID = tl.DEF_ID
AND tl.LANGUAGE = l.LANGUAGE_CODE
AND tl.LANGUAGE = USERENV('LANG'); -- For session language - Auditing Translation Coverage: Queries can identify definitions missing translations for specific installed languages by comparing records against the FND_LANGUAGES table where the INSTALLED_FLAG is 'Y'.
Related Objects
The table maintains defined foreign key relationships with several core objects, as documented in the ETRM metadata.
- CS_KB_USED_SUM_DEFS_B: This is the primary related base table. The TL table is a child of the B table via the DEF_ID column (CS_KB_USED_SUM_DEFS_TL.DEF_ID references CS_KB_USED_SUM_DEFS_B). All summary definition entities must exist in the base table before translations can be created.
- FND_LANGUAGES: The table has two distinct foreign key relationships to the FND_LANGUAGES table. The LANGUAGE column references FND_LANGUAGES to validate the translation language code. The SOURCE_LANG column also references FND_LANGUAGES to identify the source language of the original data.
-
Table: CS_KB_USED_SUM_DEFS_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_TL, object_name:CS_KB_USED_SUM_DEFS_TL, status:VALID, product: CS - Service , description: knowledge base Used summary definitions (translation table). , implementation_dba_data: CS.CS_KB_USED_SUM_DEFS_TL ,
-
Table: CS_KB_USED_SUM_DEFS_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_TL, object_name:CS_KB_USED_SUM_DEFS_TL, status:VALID, product: CS - Service , description: knowledge base Used summary definitions (translation table). , implementation_dba_data: CS.CS_KB_USED_SUM_DEFS_TL ,
-
APPS.CS_KB_USED_SUM_DEFS_PKG dependencies on CS_KB_USED_SUM_DEFS_TL
12.2.2
-
APPS.CS_KB_USED_SUM_DEFS_PKG dependencies on CS_KB_USED_SUM_DEFS_TL
12.1.1
-
APPS.CS_KB_USED_SUM_DEFS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.CS_KB_USED_SUM_DEFS_PKG SQL Statements
12.1.1
-
VIEW: CS.CS_KB_USED_SUM_DEFS_TL#
12.2.2
-
TRIGGER: APPS.CS_KB_USED_SUM_DEFS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CS_KB_USED_SUM_DEFS_TL+, status:VALID,
-
VIEW: CS.CS_KB_USED_SUM_DEFS_TL#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_KB_USED_SUM_DEFS_TL#, status:VALID,
-
View: CS_KB_USED_SUM_DEFS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_VL, object_name:CS_KB_USED_SUM_DEFS_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_KB_USED_SUM_DEFS_B and CS_KB_USED_SUM_DEFS_TL tables. , implementation_dba_data: APPS.CS_KB_USED_SUM_DEFS_VL ,
-
APPS.CS_KB_USED_SUM_DEFS_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.CS_KB_USED_SUM_DEFS_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.CS_KB_USED_SUM_DEFS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_KB_USED_SUM_DEFS_TL, status:VALID,
-
SYNONYM: APPS.CS_KB_USED_SUM_DEFS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_KB_USED_SUM_DEFS_TL, status:VALID,
-
TABLE: CS.CS_KB_USED_SUM_DEFS_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_TL, object_name:CS_KB_USED_SUM_DEFS_TL, status:VALID,
-
TRIGGER: APPS.CS_KB_USED_SUM_DEFS_TL+
12.2.2
-
TABLE: CS.CS_KB_USED_SUM_DEFS_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_TL, object_name:CS_KB_USED_SUM_DEFS_TL, status:VALID,
-
VIEW: APPS.CS_KB_USED_SUM_DEFS_VL
12.2.2
-
VIEW: APPS.CS_KB_USED_SUM_DEFS_VL
12.1.1
-
View: CS_KB_USED_SUM_DEFS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_VL, object_name:CS_KB_USED_SUM_DEFS_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_KB_USED_SUM_DEFS_B and CS_KB_USED_SUM_DEFS_TL tables. , implementation_dba_data: APPS.CS_KB_USED_SUM_DEFS_VL ,
-
PACKAGE BODY: APPS.CS_KB_USED_SUM_DEFS_PKG
12.1.1
-
Table: CS_KB_USED_SUM_DEFS_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_B, object_name:CS_KB_USED_SUM_DEFS_B, status:VALID, product: CS - Service , description: Knowledge base used summary definitions(base table). , implementation_dba_data: CS.CS_KB_USED_SUM_DEFS_B ,
-
FUNCTION: APPS.CS_KB_USED_SUM_DEFS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:CS_KB_USED_SUM_DEFS_TL=, status:VALID,
-
PACKAGE BODY: APPS.CS_KB_USED_SUM_DEFS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_KB_USED_SUM_DEFS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CS_KB_USED_SUM_DEFS_PKG
12.2.2
-
FUNCTION: APPS.CS_KB_USED_SUM_DEFS_TL=
12.2.2
-
Table: CS_KB_USED_SUM_DEFS_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_B, object_name:CS_KB_USED_SUM_DEFS_B, status:VALID, product: CS - Service , description: Knowledge base used summary definitions(base table). , implementation_dba_data: CS.CS_KB_USED_SUM_DEFS_B ,
-
APPS.CS_KB_USED_SUM_DEFS_PKG dependencies on CS_KB_USED_SUM_DEFS_B
12.2.2
-
APPS.CS_KB_USED_SUM_DEFS_PKG dependencies on CS_KB_USED_SUM_DEFS_B
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CS_KB_USED_SUM_DEFS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_KB_USED_SUM_DEFS_PKG, status:VALID,
-
Table: FND_LANGUAGES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LANGUAGES, object_name:FND_LANGUAGES, status:VALID, product: FND - Application Object Library , description: National dialects , implementation_dba_data: APPLSYS.FND_LANGUAGES ,
-
Table: FND_LANGUAGES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LANGUAGES, object_name:FND_LANGUAGES, status:VALID, product: FND - Application Object Library , description: National dialects , implementation_dba_data: APPLSYS.FND_LANGUAGES ,
-
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
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CS_KB_USED_SUM_DEFS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_VL, object_name:CS_KB_USED_SUM_DEFS_VL, status:VALID,
-
VIEW: APPS.CS_KB_USED_SUM_DEFS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_USED_SUM_DEFS_VL, object_name:CS_KB_USED_SUM_DEFS_VL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
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.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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
-
eTRM - CS Tables and Views
12.2.2