Search Results jtf_task_templates_b
Overview
The JTF_TASK_TEMPLATES_B table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the primary repository for task template definitions, which are standardized blueprints for creating tasks. These templates are fundamental for automating and standardizing task creation across various CRM processes, including service requests, sales methodologies, and field service activities. The table stores the essential, non-translatable attributes of a task template, forming the base record that is joined with its corresponding translation table (JTF_TASK_TEMPLATES_TL) for language-specific descriptions. Its role is critical for ensuring consistency, efficiency, and adherence to business processes when generating tasks in Oracle EBS 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is defined by a primary key and several foreign key relationships that enforce data integrity. The primary key column is TASK_TEMPLATE_ID, which uniquely identifies each template record. As indicated by the metadata, the table maintains referential integrity with several key reference tables via foreign keys. These include TASK_TYPE_ID (linking to JTF_TASK_TYPES_B), TASK_STATUS_ID (linking to JTF_TASK_STATUSES_B), TASK_PRIORITY_ID (linking to JTF_TASK_PRIORITIES_B), and TASK_GROUP_ID (linking to JTF_TASK_TEMP_GROUPS_B). A significant relationship is with JTF_TASK_RECUR_RULES via RECURRENCE_RULE_ID, which allows templates to define recurring task patterns. While the specific descriptive columns are not listed in the provided metadata, typical attributes stored in such a base table would include creation dates, active status flags, and other non-translatable configuration parameters for the task template.
Common Use Cases and Queries
This table is central to operations involving the generation and management of predefined tasks. A common use case is the automated creation of tasks from a sales methodology or a service request type, where a specific task template is instantiated. Administrators query this table to maintain the library of available templates. For reporting, it is often joined with its translation table and related reference tables to produce lists of active templates. A typical analytical query might involve joining JTF_TASK_TEMPLATES_B with JTF_TASK_TYPES_B to analyze the distribution of templates by task type, or with JTF_TASK_RECUR_RULES to identify all templates configured for recurrence. Sample SQL to retrieve basic template information would be:
- SELECT b.TASK_TEMPLATE_ID, tl.TEMPLATE_NAME, ty.NAME TASK_TYPE
- FROM JTF.JTF_TASK_TEMPLATES_B b,
- JTF.JTF_TASK_TEMPLATES_TL tl,
- JTF.JTF_TASK_TYPES_B ty
- WHERE b.TASK_TEMPLATE_ID = tl.TASK_TEMPLATE_ID
- AND b.TASK_TYPE_ID = ty.TASK_TYPE_ID
- AND tl.LANGUAGE = USERENV('LANG');
Related Objects
As documented in the foreign key relationships, JTF_TASK_TEMPLATES_B is integral to a wider data model. It is the parent table for several key entities. The table JTF_TASK_RSC_REQS (Task Resource Requirements) references it to define resource needs for a template. It is also referenced by AS_SALES_METH_TASK_MAP for sales methodology integration and CSP_PRODUCT_TASKS for product-related task mapping. The table JTF_TASK_DEPENDS references it twice (via TASK_ID and DEPENDENT_ON_TASK_ID) to establish task dependency rules between templates. Crucially, it is linked to the translation table JTF_TASK_TEMPLATES_TL, and its foreign keys tie it to the reference code tables for types, statuses, priorities, groups, and recurrence rules, forming a complete template definition framework.
-
Table: JTF_TASK_TEMPLATES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMPLATES_B, object_name:JTF_TASK_TEMPLATES_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_TEMPLATES_B stores all the Task templates. , implementation_dba_data: JTF.JTF_TASK_TEMPLATES_B ,
-
Table: JTF_TASK_TEMPLATES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMPLATES_B, object_name:JTF_TASK_TEMPLATES_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_TEMPLATES_B stores all the Task templates. , implementation_dba_data: JTF.JTF_TASK_TEMPLATES_B ,
-
Table: JTF_TASK_TEMP_GROUPS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMP_GROUPS_B, object_name:JTF_TASK_TEMP_GROUPS_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_TEMPLATES_B stores all task template groups. , implementation_dba_data: JTF.JTF_TASK_TEMP_GROUPS_B ,
-
Table: JTF_TASK_TEMP_GROUPS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TEMP_GROUPS_B, object_name:JTF_TASK_TEMP_GROUPS_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_TEMPLATES_B stores all task template groups. , implementation_dba_data: JTF.JTF_TASK_TEMP_GROUPS_B ,
-
Table: JTF_TASK_DEPENDS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_DEPENDS, object_name:JTF_TASK_DEPENDS, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_DEPENDS stores the dependency information between the two tasks. , implementation_dba_data: JTF.JTF_TASK_DEPENDS ,
-
Table: JTF_TASK_DEPENDS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_DEPENDS, object_name:JTF_TASK_DEPENDS, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_DEPENDS stores the dependency information between the two tasks. , implementation_dba_data: JTF.JTF_TASK_DEPENDS ,
-
Table: JTF_TASK_RSC_REQS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_RSC_REQS, object_name:JTF_TASK_RSC_REQS, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_RSC_REQS contains the resource requirements for a task. , implementation_dba_data: JTF.JTF_TASK_RSC_REQS ,
-
Table: JTF_TASK_RSC_REQS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_RSC_REQS, object_name:JTF_TASK_RSC_REQS, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_RSC_REQS contains the resource requirements for a task. , implementation_dba_data: JTF.JTF_TASK_RSC_REQS ,
-
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 ,
-
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 ,
-
Table: JTF_TASK_TYPES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TYPES_B, object_name:JTF_TASK_TYPES_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_TYPES stores all task types. , implementation_dba_data: JTF.JTF_TASK_TYPES_B ,
-
Table: JTF_TASK_STATUSES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_STATUSES_B, object_name:JTF_TASK_STATUSES_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_STATUSES stores all the task statuses. , implementation_dba_data: JTF.JTF_TASK_STATUSES_B ,
-
Table: JTF_TASK_RECUR_RULES
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_RECUR_RULES, object_name:JTF_TASK_RECUR_RULES, status:VALID, product: JTF - CRM Foundation , description: This table stores all the recurrence rules. , implementation_dba_data: JTF.JTF_TASK_RECUR_RULES ,
-
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_TYPES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_TYPES_B, object_name:JTF_TASK_TYPES_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_TYPES stores all task types. , implementation_dba_data: JTF.JTF_TASK_TYPES_B ,
-
Table: JTF_TASK_STATUSES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_STATUSES_B, object_name:JTF_TASK_STATUSES_B, status:VALID, product: JTF - CRM Foundation , description: JTF_TASK_STATUSES stores all the task statuses. , implementation_dba_data: JTF.JTF_TASK_STATUSES_B ,
-
Table: JTF_TASK_RECUR_RULES
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_RECUR_RULES, object_name:JTF_TASK_RECUR_RULES, status:VALID, product: JTF - CRM Foundation , description: This table stores all the recurrence rules. , implementation_dba_data: JTF.JTF_TASK_RECUR_RULES ,
-
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 ,