Search Results jtf_task_statuses_tl
Overview
JTF_TASK_STATUSES_TL is the translation (language) table that accompanies JTF_TASKS_B and, more specifically, the task status base table in the JTF — CRM Foundation product. Its documented role is to store all columns and data required for Multi-Language Support, allowing a single task status identifier to carry locale-specific text such as names and descriptions. The table is owned by the JTF schema and is flagged as VALID in the ETRM metadata for 12.1.1 / 12.2.2.
Its primary key, JTF_TASK_STATUSES_TL_PK, is composed of TASK_STATUS_ID and LANGUAGE. The heuristic Data Vault classification mined from the foreign-key structure is standalone. In modeling terms this suggests the object behaves as a reference or lookup table rather than a transaction hub, link, or pure satellite; the multi-language rows effectively act as localized descriptors attached to a status identifier, while the language column supplies the differentiating key.
Key Information Stored
The table contains 12 documented columns. The most operationally significant are:
- TASK_STATUS_ID — surrogate identifier tying the row to the corresponding base task status record and part of the composite primary key.
- LANGUAGE — the language/locale code, completing the primary key and enabling multilingual storage.
- SOURCE_LANG — indicates the source language of the translated text, used by the translation framework to track origin.
- NAME — the translated status name displayed to users in the target language.
- DESCRIPTION — the translated long description of the status.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, enforcing multi-tenant / security-group isolation.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns recording who created and last changed each row.
- ZD_EDITION_NAME — editioning column supporting Online Patching in EBS 12.2, absent from the earlier 12.1.1 architecture.
Two unique indexes are documented: the primary key JTF_TASK_STATUSES_TL_PK (TASK_STATUS_ID, LANGUAGE) and JTF_TASK_STATUSES_TL_U1 (TASK_STATUS_ID, LANGUAGE, ZD_EDITION_NAME). The U1 index is the business-key candidate under the editioning model.
Common Use Cases and Queries
Typical usage resolves the localized name of a task status for a given language, or lists all translations for a status identifier.
- Retrieve the translated name for one status and language:
SELECT name, description FROM jtf.jtf_task_statuses_tl WHERE task_status_id = :id AND language = USERENV('LANG'); - List all available translations for a status:
SELECT language, name FROM jtf.jtf_task_statuses_tl WHERE task_status_id = :id ORDER BY language; - Detect missing translations by comparing against defined statuses in the base table.
- Feed multilingual status pick lists and LOVs in CRM task and activity screens.
Reporting should always constrain by LANGUAGE to avoid duplicate rows, and should join back to the base status table on TASK_STATUS_ID.
Related Objects
- JTF_TASKS_B — the base table this translation table documents; joined on TASK_STATUS_ID.
- FND_SECURITY_GROUPS — referenced by SECURITY_GROUP_ID for security-group isolation.
- FND_LANGUAGES — the standard source of valid LANGUAGE values used in the key.
- JTF_TASK_STATUSES_B / base status table — parent records supplying the surrogate TASK_STATUS_ID.
- FND_APPLICATION / FND_PRODUCT_INSTALLATIONS — context for the JTF CRM Foundation product registration.
- ZD_EDITION_NAME / AD_ZD_* editioning objects — used during Online Patching in 12.2.
The table should be treated as a read-mostly translation store maintained through the CRM Foundation translation utilities rather than direct DML.
-
Table: JTF_TASK_STATUSES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_STATUSES_TL, object_name:JTF_TASK_STATUSES_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_STATUSES_TL ,
-
Table: JTF_TASK_STATUSES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_STATUSES_TL, object_name:JTF_TASK_STATUSES_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_STATUSES_TL ,
-
VIEW: JTF.JTF_TASK_STATUSES_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_TASK_STATUSES_TL#, status:VALID,
-
VIEW: APPS.OKC_LAUNCH_TASKGRID_V
12.2.2
-
APPS.JTF_TASK_STATUSES_PKG SQL Statements
12.1.1
-
VIEW: APPS.OKC_LAUNCH_TASKGRID_V
12.1.1
-
APPS.JTF_TASK_STATUSES_PKG SQL Statements
12.2.2
-
VIEW: APPS.CSF_M_STATUSES_V
12.2.2
-
VIEW: JTF.JTF_TASK_STATUSES_TL#
12.2.2
-
VIEW: APPS.CSM_TASK_STATUSES_V
12.1.1
-
TRIGGER: APPS.JTF_TASK_STATUSES_TL+
12.2.2
-
TRIGGER: APPS.JTF_TASK_STATUSES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_TASK_STATUSES_TL+, status:VALID,
-
VIEW: APPS.CSM_TASK_STATUSES_V
12.2.2
-
VIEW: APPS.CSF_M_STATUSES_V
12.1.1
-
View: OKC_LAUNCH_TASKGRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_LAUNCH_TASKGRID_V, object_name:OKC_LAUNCH_TASKGRID_V, status:VALID, product: OKC - Contracts Core , description: View for Launchpad schedule tab , implementation_dba_data: APPS.OKC_LAUNCH_TASKGRID_V ,
-
VIEW: APPS.JTM_H_TASK_STATUSES_V
12.1.1
-
VIEW: APPS.JTM_JTF_TASK_STATUSES_V
12.2.2
-
PACKAGE BODY: APPS.JTF_TASK_STATUSES_PKG
12.1.1
-
View: OKC_LAUNCH_TASKGRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_LAUNCH_TASKGRID_V, object_name:OKC_LAUNCH_TASKGRID_V, status:VALID, product: OKC - Contracts Core , description: View for Launchpad schedule tab , implementation_dba_data: APPS.OKC_LAUNCH_TASKGRID_V ,
-
VIEW: APPS.JTM_H_TASK_STATUSES_V
12.2.2
-
VIEW: APPS.JTM_JTF_TASK_STATUSES_V
12.1.1
-
View: JTF_TASK_ALL_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_ALL_STATUSES_VL, object_name:JTF_TASK_ALL_STATUSES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL. ( shows task and escalation statuses ) , implementation_dba_data: APPS.JTF_TASK_ALL_STATUSES_VL ,
-
VIEW: APPS.JTF_TASK_STATUSES_VL
12.2.2
-
VIEW: APPS.JTF_EC_STATUSES_VL
12.1.1
-
View: JTF_TASK_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_STATUSES_VL, object_name:JTF_TASK_STATUSES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL. , implementation_dba_data: APPS.JTF_TASK_STATUSES_VL ,
-
VIEW: APPS.JTF_TASK_ALL_STATUSES_VL
12.1.1
-
VIEW: APPS.JTF_EC_STATUSES_VL
12.2.2
-
View: JTF_TASK_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_STATUSES_VL, object_name:JTF_TASK_STATUSES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL. , implementation_dba_data: APPS.JTF_TASK_STATUSES_VL ,
-
VIEW: APPS.JTF_TASK_STATUSES_VL
12.1.1
-
SYNONYM: APPS.JTF_TASK_STATUSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_STATUSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
View: JTF_TASK_ALL_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_ALL_STATUSES_VL, object_name:JTF_TASK_ALL_STATUSES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL. ( shows task and escalation statuses ) , implementation_dba_data: APPS.JTF_TASK_ALL_STATUSES_VL ,
-
VIEW: APPS.JTF_TASK_ALL_STATUSES_VL
12.2.2
-
PACKAGE BODY: APPS.JTF_TASK_STATUSES_PKG
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_IO_SEC_V
12.2.2
-
VIEW: APPS.AST_TASK_ASSIGNMENTS_V
12.2.2
-
VIEW: APPS.AST_TASK_ASSIGNMENTS_V
12.1.1
-
FUNCTION: APPS.JTF_TASK_STATUSES_TL=
12.2.2
-
TABLE: JTF.JTF_TASK_STATUSES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_STATUSES_TL, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
VIEW: APPS.OKL_CS_TASK_ASSIGNMENTS_UV
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_IA_SEC_V
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_MYOWN_SEC_V
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_GO_SEC_V
12.2.2
-
VIEW: APPS.OKL_CS_TASK_ASSIGNMENTS_UV
12.1.1
-
VIEW: APPS.CSF_SR_TASKS_V
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_TO_SEC_V
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_GO_V
12.1.1
-
VIEW: APPS.CSF_VALIDATE_TASKS_V
12.1.1
-
TABLE: JTF.JTF_TASK_STATUSES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_STATUSES_TL, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_GA_SEC_V
12.2.2