Search Results task_priority_id
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 ,
-
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_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 ,
-
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 ,
-
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 ,
-
Lookup Type: JTF_TASK_SEARCH_SORT_COLS
12.2.2
product: JTF - CRM Foundation , meaning: Task search display columns (1) , description: Task Search display columns (1) ,
-
Lookup Type: JTF_TASK_SEARCH_SORT_COLS
12.1.1
product: JTF - CRM Foundation , meaning: Task search display columns (1) , description: Task Search display columns (1) ,
-
Lookup Type: JTF_TASK_SEARCH_DISPLAY_COLS
12.1.1
product: JTF - CRM Foundation , meaning: Task search display columns , description: Task Search display columns ,
-
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 ,
-
Lookup Type: JTF_TASK_SEARCH_DISPLAY_COLS
12.2.2
product: JTF - CRM Foundation , meaning: Task search display columns , description: Task Search display columns ,
-
View: JTF_TASK_TERRITORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_TERRITORY_V, object_name:JTF_TASK_TERRITORY_V, status:VALID, product: JTF - CRM Foundation , description: Internal View used by the Assignment Manager , implementation_dba_data: APPS.JTF_TASK_TERRITORY_V ,
-
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 ,
-
View: JTF_TASK_TERRITORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_TERRITORY_V, object_name:JTF_TASK_TERRITORY_V, status:VALID, product: JTF - CRM Foundation , description: Internal View used by the Assignment Manager , implementation_dba_data: APPS.JTF_TASK_TERRITORY_V ,
-
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 ,
-
Lookup Type: JTF_TASK_SUM_DISPLAY_HEADER
12.1.1
product: JTF - CRM Foundation , meaning: Task sum display header , description: Task sum display header ,
-
Lookup Type: JTF_TASK_SUM_DISPLAY_HEADER
12.2.2
product: JTF - CRM Foundation , meaning: Task sum display header , description: Task sum display header ,
-
View: JTF_AM_TASK_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AM_TASK_DTLS_V, object_name:JTF_AM_TASK_DTLS_V, status:VALID, product: JTF - CRM Foundation , description: This is a view to get task details for Assignments , implementation_dba_data: APPS.JTF_AM_TASK_DTLS_V ,
-
View: JTF_TASKS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASKS_VL, object_name:JTF_TASKS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASKS_B and JTF_TASKS_TL , implementation_dba_data: APPS.JTF_TASKS_VL ,
-
View: JTF_TASKS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASKS_VL, object_name:JTF_TASKS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASKS_B and JTF_TASKS_TL , implementation_dba_data: APPS.JTF_TASKS_VL ,
-
View: JTF_AM_TASK_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AM_TASK_DTLS_V, object_name:JTF_AM_TASK_DTLS_V, status:VALID, product: JTF - CRM Foundation , description: This is a view to get task details for Assignments , implementation_dba_data: APPS.JTF_AM_TASK_DTLS_V ,
-
View: JTF_ESCALATION_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_ESCALATION_TASK_V, object_name:JTF_ESCALATION_TASK_V, status:VALID, product: JTF - CRM Foundation , description: Internal View for Escalations , implementation_dba_data: APPS.JTF_ESCALATION_TASK_V ,
-
View: JTF_ESCALATION_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_ESCALATION_TASK_V, object_name:JTF_ESCALATION_TASK_V, status:VALID, product: JTF - CRM Foundation , description: Internal View for Escalations , implementation_dba_data: APPS.JTF_ESCALATION_TASK_V ,
-
View: JTF_AGENDA_TA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AGENDA_TA_V, object_name:JTF_AGENDA_TA_V, status:VALID, product: JTF - CRM Foundation , description: Base view for the JTF_AGENDA_TA_V , implementation_dba_data: APPS.JTF_AGENDA_TA_V ,
-
View: JTF_AGENDA_TA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AGENDA_TA_V, object_name:JTF_AGENDA_TA_V, status:VALID, product: JTF - CRM Foundation , description: Base view for the JTF_AGENDA_TA_V , implementation_dba_data: APPS.JTF_AGENDA_TA_V ,
-
View: JTF_AGENDA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AGENDA_V, object_name:JTF_AGENDA_V, status:VALID, product: JTF - CRM Foundation , description: Calculates predicted start and end times of valid assigned tasks , implementation_dba_data: APPS.JTF_AGENDA_V ,
-
View: JTF_AGENDA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_AGENDA_V, object_name:JTF_AGENDA_V, status:VALID, product: JTF - CRM Foundation , description: Calculates predicted start and end times of valid assigned tasks , implementation_dba_data: APPS.JTF_AGENDA_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 ,
-
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 ,