Search Results cs_kb_visibilities_tl
Overview
The CS_KB_VISIBILITIES_TL table is a translation table within the Oracle E-Business Suite (EBS) Service (CS) module, specifically for versions 12.1.1 and 12.2.2. Its primary role is to support the multilingual capabilities of the Knowledge Base (KB) by storing translated descriptions for visibility codes. In the context of Service Knowledge Management, a visibility defines the access level or audience for a piece of knowledge content (e.g., internal, customer-facing, partner-facing). This table enables the system to present these visibility classifications in the language of the end-user's session, which is a critical requirement for global deployments of Oracle EBS.
Key Information Stored
The table stores language-specific translations for visibility names or descriptions. Based on its structure as a translation table and standard Oracle EBS conventions, its critical columns include:
- VISIBILITY_ID: The foreign key that links the translation to the base data record in the CS_KB_VISIBILITIES_B table. This is part of the table's primary key.
- LANGUAGE: The ISO code for the language of the translated text (e.g., 'US' for American English). This is also part of the primary key, ensuring one translation per language per visibility ID.
- SOURCE_LANG: A column typically present in EBS translation tables that indicates the original language of the source data.
- DESCRIPTION (or a similarly named column): The column holding the actual translated text for the visibility name, which is displayed in the user interface.
The primary key constraint, CS_KB_VISIBILITIES_TL_PK, enforces uniqueness on the combination of VISIBILITY_ID and LANGUAGE.
Common Use Cases and Queries
The primary use case is retrieving a user-friendly visibility description in the current application session language for reporting or UI display. A common SQL pattern involves joining this table with its base table and filtering by the session language. For example, to list all visibilities with their translated descriptions:
SELECT b.VISIBILITY_CODE, tl.DESCRIPTION
FROM CS_KB_VISIBILITIES_B b,
CS_KB_VISIBILITIES_TL tl
WHERE b.VISIBILITY_ID = tl.VISIBILITY_ID
AND tl.LANGUAGE = userenv('LANG');
This table is also central during the implementation of additional languages. Administrators or translators populate this table with new translations, which are then automatically served by the application's multilingual architecture. Reporting on knowledge article access controls by audience type across different regions would also rely on this table for accurate labeling.
Related Objects
CS_KB_VISIBILITIES_TL has a direct and critical relationship with its base table, as documented in the provided metadata.
- CS_KB_VISIBILITIES_B: This is the base table that stores the core, language-independent attributes for a visibility (e.g., VISIBILITY_CODE). The foreign key relationship is defined from CS_KB_VISIBILITIES_TL.VISIBILITY_ID to CS_KB_VISIBILITIES_B. All translations are dependent on a corresponding record existing in this base table.
While not explicitly listed in the provided metadata, this visibility data is foundational to the Service Knowledge Base. It is likely referenced by other core knowledge objects, such as CS_KB_SETS_B (knowledge article sets) or CS_KB_ARTICLES_B, which would use the VISIBILITY_ID to control and categorize article access.
-
Table: CS_KB_VISIBILITIES_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_VISIBILITIES_TL, object_name:CS_KB_VISIBILITIES_TL, status:VALID, product: CS - Service , description: Knowledge Base Visibilities (Translation Table) , implementation_dba_data: CS.CS_KB_VISIBILITIES_TL ,
-
Table: CS_KB_VISIBILITIES_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_VISIBILITIES_TL, object_name:CS_KB_VISIBILITIES_TL, status:VALID, product: CS - Service , description: Knowledge Base Visibilities (Translation Table) , implementation_dba_data: CS.CS_KB_VISIBILITIES_TL ,
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_VISIBILITIES_TL
12.1.1
-
APPS.CS_KB_VISIBILITIES_PKG dependencies on CS_KB_VISIBILITIES_TL
12.1.1
-
APPS.CS_KB_VISIBILITIES_PKG dependencies on CS_KB_VISIBILITIES_TL
12.2.2
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_VISIBILITIES_TL
12.2.2
-
APPS.CS_KB_VISIBILITIES_PKG SQL Statements
12.2.2
-
APPS.CS_KB_VISIBILITIES_PKG SQL Statements
12.1.1
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_CAT_GROUP_DENORM
12.1.1
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_CAT_GROUP_DENORM
12.2.2
-
APPS.CS_KB_VISIBILITIES_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.CS_KB_VISIBILITIES_PKG dependencies on FND_LANGUAGES
12.2.2
-
VIEW: CS.CS_KB_VISIBILITIES_TL#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_KB_VISIBILITIES_TL#, status:VALID,
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_VISIBILITIES_B
12.1.1
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_VISIBILITIES_B
12.2.2
-
SYNONYM: APPS.CS_KB_VISIBILITIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_KB_VISIBILITIES_TL, status:VALID,
-
SYNONYM: APPS.CS_KB_VISIBILITIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_KB_VISIBILITIES_TL, status:VALID,
-
TRIGGER: APPS.CS_KB_VISIBILITIES_TL+
12.2.2
-
VIEW: APPS.CS_KB_VISIBILITIES_VL
12.2.2
-
VIEW: APPS.CS_KB_VISIBILITIES_VL
12.1.1
-
TRIGGER: APPS.CS_KB_VISIBILITIES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CS_KB_VISIBILITIES_TL+, status:VALID,
-
VIEW: CS.CS_KB_VISIBILITIES_TL#
12.2.2
-
PACKAGE BODY: APPS.CS_KB_VISIBILITIES_PKG
12.2.2
-
PACKAGE BODY: APPS.CS_KB_VISIBILITIES_PKG
12.1.1
-
TABLE: CS.CS_KB_VISIBILITIES_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_VISIBILITIES_TL, object_name:CS_KB_VISIBILITIES_TL, status:VALID,
-
APPS.CS_KB_VISIBILITIES_PKG dependencies on CS_KB_VISIBILITIES_B
12.2.2
-
TABLE: CS.CS_KB_VISIBILITIES_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_VISIBILITIES_TL, object_name:CS_KB_VISIBILITIES_TL, status:VALID,
-
FUNCTION: APPS.CS_KB_VISIBILITIES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:CS_KB_VISIBILITIES_TL=, status:VALID,
-
Table: CS_KB_VISIBILITIES_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_VISIBILITIES_B, object_name:CS_KB_VISIBILITIES_B, status:VALID, product: CS - Service , description: Knowledge Base Visibility Levels (Base Table) , implementation_dba_data: CS.CS_KB_VISIBILITIES_B ,
-
APPS.CS_KB_VISIBILITIES_PKG dependencies on CS_KB_VISIBILITIES_B
12.1.1
-
Table: CS_KB_VISIBILITIES_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_VISIBILITIES_B, object_name:CS_KB_VISIBILITIES_B, status:VALID, product: CS - Service , description: Knowledge Base Visibility Levels (Base Table) , implementation_dba_data: CS.CS_KB_VISIBILITIES_B ,
-
FUNCTION: APPS.CS_KB_VISIBILITIES_TL=
12.2.2
-
PACKAGE BODY: APPS.CS_KB_VISIBILITIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_KB_VISIBILITIES_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.CSK_SETUP_UTILITY_PKG SQL Statements
12.1.1
-
APPS.CSK_SETUP_UTILITY_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CS_KB_VISIBILITIES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_KB_VISIBILITIES_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSK_SETUP_UTILITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSK_SETUP_UTILITY_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSK_SETUP_UTILITY_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSK_SETUP_UTILITY_PKG, status:VALID,
-
View: CS_KB_VISIBILITIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_VISIBILITIES_VL, object_name:CS_KB_VISIBILITIES_VL, status:VALID, product: CS - Service , description: Knowledge Base Visibilities Multi Lingual View , implementation_dba_data: APPS.CS_KB_VISIBILITIES_VL ,
-
View: CS_KB_VISIBILITIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_VISIBILITIES_VL, object_name:CS_KB_VISIBILITIES_VL, status:VALID, product: CS - Service , description: Knowledge Base Visibilities Multi Lingual View , implementation_dba_data: APPS.CS_KB_VISIBILITIES_VL ,
-
12.2.2 FND Design Data
12.2.2
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on FND_LANGUAGES
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
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on FND_LANGUAGES
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.CS_KB_VISIBILITIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_VISIBILITIES_VL, object_name:CS_KB_VISIBILITIES_VL, status:VALID,