Search Results jtf_task_priorities_tl
Overview
The JTF_TASK_PRIORITIES_TL table is a core data object within the Oracle E-Business Suite (EBS) CRM Foundation (JTF) module, specifically for versions 12.1.1 and 12.2.2. As a translation table (indicated by the '_TL' suffix), its primary role is to enable Multi-Language Support (MLS) for task priority data. It stores the translated, language-specific descriptions and names for task priority codes defined in the base table. This design separates language-invariant data, such as numeric priority codes and internal identifiers, from the language-variant textual descriptions, allowing a single EBS installation to support multiple active languages for global deployments.
Key Information Stored
The table stores the translated attributes for task priorities. Based on standard EBS translation table conventions and the provided metadata, its critical columns include:
- TASK_PRIORITY_ID: The foreign key that links each translation row to its corresponding base record, typically in a table like JTF_TASK_PRIORITIES_B.
- LANGUAGE: The language code (e.g., 'US' for American English, 'KO' for Korean) for which the translated text is valid. This column, combined with TASK_PRIORITY_ID, forms the table's primary key (JTF_TASK_PRIORITIES_TL_PK).
- SOURCE_LANG: A column typically present in TL tables that indicates the original language in which the data was entered.
- PRIORITY_NAME and DESCRIPTION: The most commonly accessed columns, holding the translated name and descriptive text for the task priority in the specified LANGUAGE.
Common Use Cases and Queries
This table is essential for any user-facing functionality or report that displays task priority information in the user's session language. A primary use case is populating translatable list of values (LOVs) in Oracle Forms or Self-Service pages. For reporting, queries must join this table to its base table and filter by the desired language. A standard pattern is to join using the TASK_PRIORITY_ID and filter by the session's language using the USERENV('LANG') function or a view.
Sample Query:
SELECT b.task_priority_code, tl.priority_name, tl.description
FROM jtf_task_priorities_b b,
jtf_task_priorities_tl tl
WHERE b.task_priority_id = tl.task_priority_id
AND tl.language = USERENV('LANG');
This query retrieves the internal code from the base table alongside the translated name and description for the current session language.
Related Objects
The JTF_TASK_PRIORITIES_TL table has a direct functional relationship with several key objects in the JTF module:
- JTF_TASK_PRIORITIES_B: This is the base table where the invariant task priority data is stored. The TL table's TASK_PRIORITY_ID column is a foreign key to this table.
- JTF_TASKS_B: As noted in the ETRM description, this table is the translation table for JTF_TASKS_B, indicating that tasks reference priority codes which are resolved through their translated descriptions.
- FND_LANGUAGES: The LANGUAGE column in the TL table typically corresponds to codes defined in this application dictionary table.
- Views: The EBS environment likely contains language-specific views (e.g., JTF_TASK_PRIORITIES_VL) that perform the standard base-to-translation table join, providing a simplified access layer for developers and reports.
-
Table: JTF_TASK_PRIORITIES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_PRIORITIES_TL, object_name:JTF_TASK_PRIORITIES_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_PRIORITIES_TL ,
-
Table: JTF_TASK_PRIORITIES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_PRIORITIES_TL, object_name:JTF_TASK_PRIORITIES_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_PRIORITIES_TL ,
-
View: JTF_TASK_PRIORITIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PRIORITIES_VL, object_name:JTF_TASK_PRIORITIES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_PRIORITIES_B and JTF_TASK_PRIORITIES_TL. , implementation_dba_data: APPS.JTF_TASK_PRIORITIES_VL ,
-
View: JTF_TASK_PRIORITIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PRIORITIES_VL, object_name:JTF_TASK_PRIORITIES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_PRIORITIES_B and JTF_TASK_PRIORITIES_TL. , implementation_dba_data: APPS.JTF_TASK_PRIORITIES_VL ,
-
View: JTF_TASK_UWQ_MYOWN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_MYOWN_V, object_name:JTF_TASK_UWQ_MYOWN_V, status:VALID, product: JTF - CRM Foundation , description: Internal view used by the UWQ , implementation_dba_data: APPS.JTF_TASK_UWQ_MYOWN_V ,
-
View: JTF_TASK_UWQ_MYOWN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_MYOWN_V, object_name:JTF_TASK_UWQ_MYOWN_V, status:VALID, product: JTF - CRM Foundation , description: Internal view used by the UWQ , implementation_dba_data: APPS.JTF_TASK_UWQ_MYOWN_V ,
-
View: JTF_TASK_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_V, object_name:JTF_TASK_UWQ_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get all the open tasks, assignments except that source object type is appointment or task type is escalation. , implementation_dba_data: APPS.JTF_TASK_UWQ_V ,
-
View: JTF_TASK_UWQ_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_ALL_V, object_name:JTF_TASK_UWQ_ALL_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get all the tasks which has an open assignments , implementation_dba_data: APPS.JTF_TASK_UWQ_ALL_V ,
-
View: JTF_TASK_UWQ_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_ALL_V, object_name:JTF_TASK_UWQ_ALL_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get all the tasks which has an open assignments , implementation_dba_data: APPS.JTF_TASK_UWQ_ALL_V ,
-
View: JTF_TASK_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_V, object_name:JTF_TASK_UWQ_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get all the open tasks, assignments except that source object type is appointment or task type is escalation. , implementation_dba_data: APPS.JTF_TASK_UWQ_V ,
-
View: JTF_BRM_3D_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_BRM_3D_TASK_V, object_name:JTF_BRM_3D_TASK_V, status:VALID, product: JTF - CRM Foundation , description: 3D task view as used by the business rule monitor. , implementation_dba_data: APPS.JTF_BRM_3D_TASK_V ,
-
View: JTF_BRM_3D_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_BRM_3D_TASK_V, object_name:JTF_BRM_3D_TASK_V, status:VALID, product: JTF - CRM Foundation , description: 3D task view as used by the business rule monitor. , implementation_dba_data: APPS.JTF_BRM_3D_TASK_V ,
-
View: JTF_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASKS_V, object_name:JTF_TASKS_V, status:VALID, product: JTF - CRM Foundation , description: Common View with all the task attributes. , implementation_dba_data: APPS.JTF_TASKS_V ,
-
View: JTF_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASKS_V, object_name:JTF_TASKS_V, status:VALID, product: JTF - CRM Foundation , description: Common View with all the task attributes. , implementation_dba_data: APPS.JTF_TASKS_V ,