Search Results jtf_dsp_context_tl
Overview
The JTF_DSP_CONTEXT_TL table is a core translation table within the Oracle E-Business Suite (EBS) CRM Foundation (JTF) module. It serves as the multilingual repository for descriptive, user-facing text associated with Display Contexts. Its primary role is to support the internationalization of the application by storing translated names and descriptions for the base entities defined in the JTF_DSP_CONTEXT_B table. This separation of base data (in the "_B" table) from its translations (in the "_TL" table) is a standard architectural pattern in Oracle EBS, enabling a single application installation to support multiple languages concurrently.
Key Information Stored
The table stores translated text for each Display Context record across different installed languages. The key columns that define its structure and purpose are:
- CONTEXT_ID: The foreign key that uniquely links each translation row to its corresponding base record in the JTF_DSP_CONTEXT_B table.
- LANGUAGE: A code (e.g., 'US' for American English, 'KO' for Korean) that identifies the language of the translated text for the associated CONTEXT_ID. Together with CONTEXT_ID, this column forms the table's primary key.
- NAME: The translated name of the Display Context, as it should appear in the user interface for the specified LANGUAGE.
- DESCRIPTION: A translated description providing further detail about the Display Context.
- SOURCE_LANG: A column typically indicating the original language in which the data was created, which is often used by synchronization processes.
Common Use Cases and Queries
This table is primarily accessed indirectly by the application runtime to display context-appropriate labels based on the user's session language. From a technical or reporting perspective, common interactions include retrieving a complete set of translations for a specific context or joining to the base table for multilingual reports. A typical query to fetch all translations for a known context name would be:
SELECT tl.language, tl.name, tl.description
FROM jtf_dsp_context_b b, jtf_dsp_context_tl tl
WHERE b.context_id = tl.context_id
AND b.name = 'MY_CONTEXT_NAME';
For reporting or data extraction, a standard pattern is to join the base and translation tables while filtering on the session language using the NLS_LANGUAGE database session parameter or a specific language code to ensure the correct translation is selected for the report output.
Related Objects
The table has a direct and fundamental relationship with its base table, as documented in the provided metadata:
- JTF_DSP_CONTEXT_B: This is the primary related object. The foreign key constraint defines that JTF_DSP_CONTEXT_TL.CONTEXT_ID references JTF_DSP_CONTEXT_B. All translation records are dependent on a parent record existing in this base table. The join column is CONTEXT_ID.
-
Table: JTF_DSP_CONTEXT_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_TL, object_name:JTF_DSP_CONTEXT_TL, status:VALID, product: JTF - CRM Foundation , description: Translations for JTF_DSP_CONTEXT_B. , implementation_dba_data: JTF.JTF_DSP_CONTEXT_TL ,
-
Table: JTF_DSP_CONTEXT_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_TL, object_name:JTF_DSP_CONTEXT_TL, status:VALID, product: JTF - CRM Foundation , description: Translations for JTF_DSP_CONTEXT_B. , implementation_dba_data: JTF.JTF_DSP_CONTEXT_TL ,
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on JTF_DSP_CONTEXT_TL
12.2.2
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on JTF_DSP_CONTEXT_TL
12.1.1
-
APPS.JTF_DISPLAYCONTEXT_GRP SQL Statements
12.2.2
-
APPS.JTF_DISPLAYCONTEXT_GRP SQL Statements
12.1.1
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on FND_LANGUAGES
12.2.2
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on FND_LANGUAGES
12.1.1
-
VIEW: JTF.JTF_DSP_CONTEXT_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_DSP_CONTEXT_TL#, status:VALID,
-
VIEW: JTF.JTF_DSP_CONTEXT_TL#
12.2.2
-
VIEW: APPS.JTF_DSP_CONTEXT_VL
12.1.1
-
VIEW: APPS.JTF_DSP_CONTEXT_VL
12.2.2
-
SYNONYM: APPS.JTF_DSP_CONTEXT_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_DSP_CONTEXT_TL, status:VALID,
-
SYNONYM: APPS.JTF_DSP_CONTEXT_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_DSP_CONTEXT_TL, status:VALID,
-
TABLE: JTF.JTF_DSP_CONTEXT_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_TL, object_name:JTF_DSP_CONTEXT_TL, status:VALID,
-
TABLE: JTF.JTF_DSP_CONTEXT_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_TL, object_name:JTF_DSP_CONTEXT_TL, status:VALID,
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on JTF_LOGICALCONTENT_GRP
12.1.1
-
PACKAGE BODY: APPS.JTF_DISPLAYCONTEXT_GRP
12.1.1
-
PACKAGE BODY: APPS.JTF_DISPLAYCONTEXT_GRP
12.2.2
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on JTF_LOGICALCONTENT_GRP
12.2.2
-
Table: JTF_DSP_CONTEXT_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_B, object_name:JTF_DSP_CONTEXT_B, status:VALID, product: JTF - CRM Foundation , description: Stores the display contexts associated with templates and media attributes for media. , implementation_dba_data: JTF.JTF_DSP_CONTEXT_B ,
-
View: JTF_DSP_CONTEXT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_CONTEXT_VL, object_name:JTF_DSP_CONTEXT_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_DSP_CONTEXT_VL ,
-
Table: JTF_DSP_CONTEXT_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_DSP_CONTEXT_B, object_name:JTF_DSP_CONTEXT_B, status:VALID, product: JTF - CRM Foundation , description: Stores the display contexts associated with templates and media attributes for media. , implementation_dba_data: JTF.JTF_DSP_CONTEXT_B ,
-
View: JTF_DSP_CONTEXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_CONTEXT_VL, object_name:JTF_DSP_CONTEXT_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_DSP_CONTEXT_VL ,
-
PACKAGE BODY: APPS.JTF_DISPLAYCONTEXT_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_DISPLAYCONTEXT_GRP, status:VALID,
-
PACKAGE BODY: APPS.JTF_DISPLAYCONTEXT_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_DISPLAYCONTEXT_GRP, status:VALID,
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on JTF_DSP_CONTEXT_B
12.1.1
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on JTF_DSP_CONTEXT_B
12.2.2
-
VIEW: APPS.JTF_DSP_CONTEXT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_CONTEXT_VL, object_name:JTF_DSP_CONTEXT_VL, status:VALID,
-
VIEW: APPS.JTF_DSP_CONTEXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_DSP_CONTEXT_VL, object_name:JTF_DSP_CONTEXT_VL, status:VALID,
-
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 FND Design Data
12.1.1
-
12.2.2 FND Design 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
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on FND_API
12.1.1
-
APPS.JTF_DISPLAYCONTEXT_GRP dependencies on FND_API
12.2.2
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,