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 ,
-
APPS.CAC_VIEW_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.CSM_EMAIL_QUERY_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_TASKS_PUB dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.CAC_VIEW_WF_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_EC_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_TASKS_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASK_WF_UTIL dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.CS_ERES_INT_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PUB dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.CAC_VIEW_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_CAL_UTILITY_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_TASK_WORKFLOW_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASKS_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.CS_ERES_INT_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_CAL_UTILITY_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.IEU_WPACTIONS_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASK_PRIORITIES_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASK_PRIORITIES_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_CAL_WF_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PUB dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASK_WORKFLOW_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_TASKS_PUB dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.CAC_VIEW_WF_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_CAL_WF_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.IEU_WPACTIONS_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_TASK_WF_UTIL dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTF_EC_PVT dependencies on JTF_TASK_PRIORITIES_TL
12.1.1
-
APPS.JTF_TASK_PRIORITIES_PKG SQL Statements
12.2.2
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.JTF_TASK_PRIORITIES_PKG SQL Statements
12.1.1
-
VIEW: JTF.JTF_TASK_PRIORITIES_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_TASK_PRIORITIES_TL#, status:VALID,
-
APPS.CSF_GANTT_DATA_PKG dependencies on HZ_PARTY_SITES
12.2.2
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASKS_TL
12.2.2
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASK_TYPES_B
12.2.2
-
VIEW: APPS.CSM_TASK_PRIORITIES_V
12.1.1
-
APPS.CAC_VIEW_PVT dependencies on JTF_TASK_TYPES_TL
12.1.1
-
VIEW: APPS.JTM_JTF_TASK_PRIORITIES_V
12.1.1
-
APPS.JTF_TASK_PRIORITIES_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.JTF_TASK_PRIORITIES_PKG dependencies on FND_LANGUAGES
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_PRIORITIES_PKG
12.1.1
-
VIEW: APPS.JTM_H_TASK_PRIORITIES_V
12.1.1
-
VIEW: APPS.JTM_H_TASK_PRIORITIES_V
12.2.2
-
TRIGGER: APPS.JTF_TASK_PRIORITIES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_TASK_PRIORITIES_TL+, status:VALID,
-
APPS.CAC_VIEW_PVT dependencies on JTF_TASK_TYPES_TL
12.2.2
-
APPS.CAC_VIEW_PVT dependencies on JTF_TASK_STATUSES_VL
12.1.1
-
APPS.CAC_VIEW_PVT dependencies on JTF_TASKS_VL
12.2.2
-
APPS.CAC_VIEW_PVT dependencies on JTF_TASKS_VL
12.1.1