Search Results jtf_task_templates_tl
Overview
The JTF_TASK_TEMPLATES_TL table is a core component of the Oracle E-Business Suite's multi-language support (MLS) architecture within the CRM Foundation (JTF) module. As explicitly defined in the ETRM metadata, it functions as the translation table for the JTF_TASKS_B table. Its primary role is to store language-specific versions of textual attributes for task templates, enabling the application to present task-related information in a user's preferred language. This design separates base transactional data from its translatable descriptions, which is a standard pattern in Oracle EBS for supporting global deployments. The table is valid and operational in both the 12.1.1 and 12.2.2 versions of the suite.
Key Information Stored
The table stores translated content for task template attributes that require localization. According to the provided structure, its primary key is a composite of TASK_TEMPLATE_ID and LANGUAGE, ensuring a unique entry for each template and language combination. While the full column list is not detailed in the excerpt, translation tables in this context typically hold columns such as:
- TASK_TEMPLATE_ID: Foreign key linking to the base table JTF_TASK_TEMPLATES_B.
- LANGUAGE: The ISO code for the language of the translated row (e.g., 'US' for American English).
- SOURCE_LANG: Typically denotes the language of the source data from which the translation was made.
- TEMPLATE_NAME: The translated name of the task template.
- DESCRIPTION: The localized description of the task template's purpose.
Common Use Cases and Queries
This table is primarily accessed by the application's MLS engine to retrieve locale-specific text. A common reporting use case is to generate a list of all available task templates with their descriptions in a specific language for a setup or audit report. Developers often join this table with its base table using the LANGUAGE column with the user's session language (via the USERENV('LANG') or NLS_LANGUAGE context). A typical query pattern is:
SELECT b.template_number, tl.template_name, tl.description
FROM jtf_task_templates_b b,
jtf_task_templates_tl tl
WHERE b.task_template_id = tl.task_template_id
AND tl.language = USERENV('LANG');
Administrators may also query it to identify missing translations for critical templates by checking for gaps between the base table and translations for installed languages.
Related Objects
As a translation table, JTF_TASK_TEMPLATES_TL has a direct and mandatory relationship with its base table, JTF_TASK_TEMPLATES_B, which holds the non-translatable, structural data for task templates. It is part of the larger JTF task management schema, which includes core tables like JTF_TASKS_B and JTF_TASKS_TL for actual task instances. The table is accessed through standard Oracle MLS APIs and likely through public views provided by the CRM Foundation module that automatically handle the language join logic for application developers. The primary key constraint JTF_TASK_TEMPLATES_TL_PK enforces data integrity for the translation records.
-
Table: JTF_TASK_TEMPLATES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMPLATES_TL, object_name:JTF_TASK_TEMPLATES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_TASKS_B. It is used to store all columns and data that are needed for Multi-Language Support. , implementation_dba_data: JTF.JTF_TASK_TEMPLATES_TL ,
-
Table: JTF_TASK_TEMPLATES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMPLATES_TL, object_name:JTF_TASK_TEMPLATES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_TASKS_B. It is used to store all columns and data that are needed for Multi-Language Support. , implementation_dba_data: JTF.JTF_TASK_TEMPLATES_TL ,
-
APPS.JTF_TASK_TEMPLATES_PUB dependencies on JTF_TASK_TEMPLATES_TL
12.2.2
-
APPS.JTF_TASK_RESOURCES_PVT dependencies on JTF_TASK_TEMPLATES_TL
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PVT dependencies on JTF_TASK_TEMPLATES_TL
12.2.2
-
APPS.JTF_TASK_TEMPLATES_PKG dependencies on JTF_TASK_TEMPLATES_TL
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PVT dependencies on JTF_TASK_TEMPLATES_TL
12.1.1
-
APPS.JTF_TASK_RESOURCES_PUB dependencies on JTF_TASK_TEMPLATES_TL
12.2.2
-
APPS.JTF_TASK_RESOURCES_PVT dependencies on JTF_TASK_TEMPLATES_TL
12.2.2
-
APPS.JTF_TASK_TEMPLATES_PKG dependencies on JTF_TASK_TEMPLATES_TL
12.2.2
-
APPS.JTF_TASK_RESOURCES_PUB dependencies on JTF_TASK_TEMPLATES_TL
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PUB dependencies on JTF_TASK_TEMPLATES_TL
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PKG SQL Statements
12.1.1
-
VIEW: JTF.JTF_TASK_TEMPLATES_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_TASK_TEMPLATES_TL#, status:VALID,
-
APPS.JTF_TASK_TEMPLATES_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.JTF_TASK_TEMPLATES_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PKG
12.1.1
-
VIEW: JTF.JTF_TASK_TEMPLATES_TL#
12.2.2
-
SYNONYM: APPS.JTF_TASK_TEMPLATES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_TEMPLATES_TL, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PKG
12.2.2
-
TRIGGER: APPS.JTF_TASK_TEMPLATES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_TASK_TEMPLATES_TL+, status:VALID,
-
SYNONYM: APPS.JTF_TASK_TEMPLATES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_TEMPLATES_TL, status:VALID,
-
View: JTF_TASK_TEMPLATES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_TEMPLATES_VL, object_name:JTF_TASK_TEMPLATES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_TEMPLATES_B and JTF_TASK_TEMPLATES_TL. , implementation_dba_data: APPS.JTF_TASK_TEMPLATES_VL ,
-
TRIGGER: APPS.JTF_TASK_TEMPLATES_TL+
12.2.2
-
APPS.JTF_TASK_TEMPLATES_PKG dependencies on JTF_TASK_TEMPLATES_B
12.2.2
-
VIEW: APPS.JTF_TASK_TEMPLATES_VL
12.1.1
-
VIEW: APPS.JTF_TASK_TEMPLATES_VL
12.2.2
-
View: JTF_TASK_TEMPLATES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_TEMPLATES_VL, object_name:JTF_TASK_TEMPLATES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_TEMPLATES_B and JTF_TASK_TEMPLATES_TL. , implementation_dba_data: APPS.JTF_TASK_TEMPLATES_VL ,
-
APPS.JTF_TASK_TEMPLATES_PKG dependencies on JTF_TASK_TEMPLATES_B
12.1.1
-
TABLE: JTF.JTF_TASK_TEMPLATES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMPLATES_TL, object_name:JTF_TASK_TEMPLATES_TL, status:VALID,
-
FUNCTION: APPS.JTF_TASK_TEMPLATES_TL=
12.2.2
-
TABLE: JTF.JTF_TASK_TEMPLATES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMPLATES_TL, object_name:JTF_TASK_TEMPLATES_TL, status:VALID,
-
FUNCTION: APPS.JTF_TASK_TEMPLATES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_TASK_TEMPLATES_TL=, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_RESOURCES_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_RESOURCES_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_TEMPLATES_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_TEMPLATES_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_TEMPLATES_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_TEMPLATES_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_RESOURCES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_RESOURCES_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_RESOURCES_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_RESOURCES_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_TEMPLATES_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_RESOURCES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_RESOURCES_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_TEMPLATES_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_TEMPLATES_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.JTF_TASK_TEMPLATES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_TEMPLATES_VL, object_name:JTF_TASK_TEMPLATES_VL, status:VALID,
-
VIEW: APPS.JTF_TASK_TEMPLATES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_TEMPLATES_VL, object_name:JTF_TASK_TEMPLATES_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1