Search Results jtf_task_temp_groups_b_pk




Overview

The JTF_TASK_TEMP_GROUPS_B table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the master repository for task template groups, which are logical collections of predefined task templates. These groups provide a structured mechanism for associating a set of standardized tasks with various business objects and processes across the EBS suite, such as sales methodologies, service requests, claims, and routes. By centralizing the definition of these groups, the table enables process standardization and automation, ensuring consistent task creation and management in workflows spanning Sales (AS), Service (CS), Marketing (OZF), and other application families.

Key Information Stored

The primary data stored in this table is the unique identifier for each task template group. The key column is TASK_TEMPLATE_GROUP_ID, which serves as the table's primary key (JTF_TASK_TEMP_GROUPS_B_PK). This ID is the critical foreign key referenced by numerous other tables across the application to link their specific entities to a predefined set of tasks. The metadata also indicates a column named SOURCE_OBJECT_TYPE_CODE, which is linked via a foreign key to JTF_OBJECTS_B. This column likely categorizes the type of source object (e.g., 'SALES_METHOD', 'CLAIM') that can utilize the template group, providing context for its intended use.

Common Use Cases and Queries

A primary use case involves configuring sales methodologies within Oracle Sales (AS). Administrators can define a series of stages and tasks for a sales process and link them to a specific task template group stored in this table. When a salesperson progresses an opportunity, the system can automatically generate the associated tasks. A common query would retrieve all template groups used by a specific module, such as identifying groups linked to sales methodologies. The user's search for "as_sales_meth_task_map" directly relates to this, as the AS_SALES_METH_TASK_MAP table references JTF_TASK_TEMP_GROUPS_B.

  • Sample Query: Finding template groups used in Sales Methodologies:
    SELECT DISTINCT g.TASK_TEMPLATE_GROUP_ID
    FROM JTF_TASK_TEMP_GROUPS_B g, AS_SALES_METH_TASK_MAP m
    WHERE g.TASK_TEMPLATE_GROUP_ID = m.TASK_TEMPLATE_GROUP_ID;

Related Objects

JTF_TASK_TEMP_GROUPS_B is a central reference point for task automation. Its primary relationship is with JTF_TASK_TEMPLATES_B, which stores the individual task templates belonging to a group (via TASK_GROUP_ID). Crucially, it is referenced by foreign keys from numerous transactional and setup tables across different products:

This extensive integration highlights its role as a foundational object for configuring task-based workflows throughout Oracle EBS 12.1.1 and 12.2.2.