Search Results jtf_task_priorities_b
Overview
The JTF_TASK_PRIORITIES_B table is a core master data table within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the central repository for defining and storing all task priority codes available for use across the application. As a foundational setup table, it provides the valid list of priority values (such as High, Medium, Low) that can be assigned to tasks, templates, and service requests. Its primary role is to enforce data integrity and consistency by acting as a reference point for the TASK_PRIORITY_ID foreign key in numerous transactional tables, ensuring that only predefined priorities are utilized in business processes.
Key Information Stored
While the provided ETRM excerpt does not list individual columns beyond the primary key, the structure of such master tables in Oracle EBS typically follows a standard pattern. The central column is the numeric TASK_PRIORITY_ID, which serves as the unique identifier (Primary Key) for each priority record. Other standard columns common to JTF setup tables and likely present include MEANING and DESCRIPTION for the display name and a longer explanation of the priority, respectively. Additional columns would manage the record's lifecycle, such as START_DATE_ACTIVE, END_DATE_ACTIVE for enabling and disabling values, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY for auditing, and ENABLED_FLAG. The '_B' suffix indicates it is the base table for a multi-language setup, with a corresponding _TL (translation) table storing language-specific descriptions.
Common Use Cases and Queries
This table is primarily referenced for validation, reporting, and setup. A common operational use case is when a user selects a priority from a list of values (LOV) while creating or updating a task in the UI; the LOV queries this table for active priorities. For reporting, analysts join this table to task data to categorize and analyze work volumes by priority level. Administrators query and maintain the table to implement new business priorities or deactivate obsolete ones. Sample SQL patterns include fetching the active list for an LOV: SELECT TASK_PRIORITY_ID, MEANING FROM JTF_TASK_PRIORITIES_B WHERE SYSDATE BETWEEN START_DATE_ACTIVE AND NVL(END_DATE_ACTIVE, SYSDATE) AND ENABLED_FLAG = 'Y' ORDER BY MEANING; A typical reporting join to get task details with priority text would be: SELECT t.TASK_NUMBER, p.MEANING AS PRIORITY FROM JTF_TASKS_B t, JTF_TASK_PRIORITIES_B p WHERE t.TASK_PRIORITY_ID = p.TASK_PRIORITY_ID;
Related Objects
As indicated by the foreign key relationships in the metadata, JTF_TASK_PRIORITIES_B is a critical parent table referenced by several key transactional and setup objects. The primary relationship is with JTF_TASKS_B, where the TASK_PRIORITY_ID column links a task instance to its defined priority. It is also referenced by JTF_TASK_TEMPLATES_B to set a default priority for templated tasks. The audit history table, JTF_TASK_AUDITS_B, references it twice (OLD_TASK_PRIORITY_ID and NEW_TASK_PRIORITY_ID) to track priority changes over a task's lifecycle. Within the Service module, the CUG_SR_TASK_TYPE_DETS_B table references it to define allowed priorities for specific task types in service request workflows. For multi-language support, a related JTF_TASK_PRIORITIES_TL table is expected to exist.
-
Table: JTF_TASK_PRIORITIES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_PRIORITIES_B, object_name:JTF_TASK_PRIORITIES_B, status:VALID, product: JTF - CRM Foundation , description: This table stores information for all task priorities. , implementation_dba_data: JTF.JTF_TASK_PRIORITIES_B ,
-
Table: JTF_TASK_PRIORITIES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_PRIORITIES_B, object_name:JTF_TASK_PRIORITIES_B, status:VALID, product: JTF - CRM Foundation , description: This table stores information for all task priorities. , implementation_dba_data: JTF.JTF_TASK_PRIORITIES_B ,
-
APPS.JTF_TASKS_PUB dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.CSM_EMAIL_QUERY_PKG dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.JTF_EC_PVT dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.CAC_SYNC_TASK_COMMON dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.JTF_TASK_PRIORITIES_PKG dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.CUG_GENERIC_WF_PKG dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PUB dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.JTF_TASK_UTL dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.JTF_EC_PVT dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.JTF_TASK_UTL dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.JTF_TASK_TEMPLATES_PUB dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.CUG_GENERIC_WF_PKG dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.JTF_TASKS_PUB dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.CAC_SYNC_TASK_COMMON dependencies on JTF_TASK_PRIORITIES_B
12.1.1
-
APPS.JTF_TASK_PRIORITIES_PKG dependencies on JTF_TASK_PRIORITIES_B
12.2.2
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASK_PRIORITIES_TL
12.2.2
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASKS_TL
12.1.1
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASKS_TL
12.1.1
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASKS_TL
12.2.2
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASKS_TL
12.2.2
-
VIEW: APPS.JTF_TASK_PRIORITIES_B_DFV
12.1.1
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASKS_TL
12.2.2
-
VIEW: APPS.JTM_H_TASK_PRIORITIES_V
12.1.1
-
VIEW: JTF.JTF_TASK_PRIORITIES_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_TASK_PRIORITIES_B#, status:VALID,
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASK_ALL_ASSIGNMENTS
12.1.1
-
VIEW: APPS.CSM_TASK_PRIORITIES_V
12.1.1
-
TRIGGER: APPS.JTF_TASK_PRIORITIES_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_TASK_PRIORITIES_B+, status:VALID,
-
VIEW: APPS.JTM_JTF_TASK_PRIORITIES_V
12.1.1
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASK_STATUSES_B
12.2.2
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASK_RECUR_RULES
12.2.2
-
VIEW: APPS.CSM_TASK_PRIORITIES_V
12.2.2
-
APPS.CSF_GANTT_DATA_PKG dependencies on JTF_TASK_TYPES_B
12.2.2
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASK_RECUR_RULES
12.1.1
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASK_ALL_ASSIGNMENTS
12.1.1
-
VIEW: APPS.JTF_TASK_PRIORITIES_B_DFV
12.2.2
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASK_RECUR_RULES
12.2.2
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASK_STATUSES_B
12.2.2
-
APPS.CAC_SYNC_TASK_CURSORS dependencies on JTF_TASK_ALL_ASSIGNMENTS
12.2.2
-
SYNONYM: APPS.JTF_TASK_PRIORITIES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_PRIORITIES_B, status:VALID,
-
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 ,
-
APPS.JTA_SYNC_TASK_CURSORS dependencies on JTF_TASK_ALL_ASSIGNMENTS
12.2.2
-
SYNONYM: APPS.JTF_TASK_PRIORITIES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_PRIORITIES_B, status:VALID,