Search Results jtf_tasks_b




Overview

The JTF_TASKS_B table is the core base table within Oracle E-Business Suite (EBS) CRM Foundation, specifically for releases 12.1.1 and 12.2.2. It serves as the central repository for storing the fundamental, non-transient attributes of a Task. A Task is a fundamental CRM entity representing any unit of work, activity, or assignment that needs to be tracked and managed, such as a service call, a sales follow-up, or a project milestone. This table is part of the underlying data model that supports the Task Manager and related CRM functionalities, providing the structural integrity and relational context for task-related data across the application.

Key Information Stored

The table's primary key is TASK_ID, which uniquely identifies each task record. As indicated by its extensive foreign key relationships, JTF_TASKS_B stores critical relational pointers that define a task's context and properties. Key columns include TASK_TYPE_ID, TASK_STATUS_ID, and TASK_PRIORITY_ID, which link to their respective reference tables to classify and track the task's state. It captures assignment details via ASSIGNED_BY_ID (linking to FND_USER) and customer information via CUSTOMER_ID and CUST_ACCOUNT_ID (linking to HZ_PARTIES and HZ_CUST_ACCOUNTS). The table supports task hierarchy through PARENT_TASK_ID, which self-references JTF_TASKS_B. Furthermore, it enables integration with other EBS objects through SOURCE_OBJECT_TYPE_CODE and SOURCE_OBJECT_ID, allowing tasks to be linked to entities like Service Requests (CS_INCIDENTS_ALL_B). Additional columns manage scheduling, location (ADDRESS_ID), currency (CURRENCY_CODE), and recurrence rules (RECURRENCE_RULE_ID).

Common Use Cases and Queries

This table is central to reporting, data extraction, and custom integrations involving task data. Common scenarios include generating task lists for specific users or teams, analyzing task duration and status trends, and building interfaces to synchronize tasks with external systems. A typical query might join JTF_TASKS_B with its descriptive reference tables to produce a comprehensive task report. For example:

  • Retrieving all open, high-priority tasks for a customer account.
  • Listing child tasks for a given parent task to understand work breakdowns.
  • Identifying tasks created from specific source objects, such as all tasks linked to a particular service request.

Sample SQL Pattern:
SELECT t.task_number, t.planned_start_date, ts.name status, tp.name priority, u.user_name assigned_to FROM jtf.jtf_tasks_b t, jtf.jtf_task_statuses_b ts, jtf.jtf_task_priorities_b tp, fnd_user u WHERE t.task_status_id = ts.task_status_id AND t.task_priority_id = tp.task_priority_id AND t.assigned_to_id = u.user_id AND t.cust_account_id = :p_cust_acct_id;

Related Objects

JTF_TASKS_B has a dense network of relationships within the EBS schema. It is the base for the entity, with corresponding descriptive detail tables (e.g., JTF_TASKS_TL for translatable columns). Its integrity is defined by foreign keys to numerous critical tables:

Applications and APIs, such as those in the JTF Task Manager, interact with this table through public interfaces and views rather than directly, ensuring business logic encapsulation.

  • Table: JTF_TASKS_B 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASKS_B,  object_name:JTF_TASKS_B,  status:VALID,  product: JTF - CRM Foundationdescription: Base Table JTF_TASKS_B stores general information about a given Task. ,  implementation_dba_data: JTF.JTF_TASKS_B

  • Table: JTF_TASKS_B 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASKS_B,  object_name:JTF_TASKS_B,  status:VALID,  product: JTF - CRM Foundationdescription: Base Table JTF_TASKS_B stores general information about a given Task. ,  implementation_dba_data: JTF.JTF_TASKS_B

  • Table: JTF_TASK_AUDITS_B 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_AUDITS_B,  object_name:JTF_TASK_AUDITS_B,  status:VALID,  product: JTF - CRM Foundationdescription: Base Table which stores audit information for a task. ,  implementation_dba_data: JTF.JTF_TASK_AUDITS_B

  • Table: JTF_TASK_AUDITS_B 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_AUDITS_B,  object_name:JTF_TASK_AUDITS_B,  status:VALID,  product: JTF - CRM Foundationdescription: Base Table which stores audit information for a task. ,  implementation_dba_data: JTF.JTF_TASK_AUDITS_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 Foundationdescription: JTF_TASK_STATUSES stores all the task statuses. ,  implementation_dba_data: JTF.JTF_TASK_STATUSES_B

  • 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 Foundationdescription: JTF_TASK_DEPENDS stores the dependency information between the two tasks. ,  implementation_dba_data: JTF.JTF_TASK_DEPENDS

  • 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 Foundationdescription: 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 Foundationdescription: This table stores all the recurrence rules. ,  implementation_dba_data: JTF.JTF_TASK_RECUR_RULES

  • 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 Foundationdescription: 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 Foundationdescription: This table stores information for all task priorities. ,  implementation_dba_data: JTF.JTF_TASK_PRIORITIES_B

  • 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 Foundationdescription: 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 Foundationdescription: JTF_TASK_TYPES stores all task types. ,  implementation_dba_data: JTF.JTF_TASK_TYPES_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 Foundationdescription: JTF_TASK_DEPENDS stores the dependency information between the two tasks. ,  implementation_dba_data: JTF.JTF_TASK_DEPENDS

  • 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 Foundationdescription: JTF_TASK_TYPES stores all task types. ,  implementation_dba_data: JTF.JTF_TASK_TYPES_B

  • Table: JTF_OBJECTS_B 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_OBJECTS_B,  object_name:JTF_OBJECTS_B,  status:VALID,  product: JTF - CRM Foundationdescription: This table stores the details of objects(modules). ,  implementation_dba_data: JTF.JTF_OBJECTS_B

  • Table: JTF_OBJECTS_B 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_OBJECTS_B,  object_name:JTF_OBJECTS_B,  status:VALID,  product: JTF - CRM Foundationdescription: This table stores the details of objects(modules). ,  implementation_dba_data: JTF.JTF_OBJECTS_B

  • Table: JTF_TASKS_TL 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASKS_TL,  object_name:JTF_TASKS_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TASKS_TL

  • 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 Foundationdescription: 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_DATES 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_DATES,  object_name:JTF_TASK_DATES,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_DATES stores the actual date values for a task.... ,  implementation_dba_data: JTF.JTF_TASK_DATES

  • Table: JTF_TASKS_TL 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASKS_TL,  object_name:JTF_TASKS_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TASKS_TL

  • Table: JTF_TASK_AUDITS_TL 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_AUDITS_TL,  object_name:JTF_TASK_AUDITS_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_AUDITS_TL

  • 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 Foundationdescription: 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 Foundationdescription: MLS View for JTF_TASKS_B and JTF_TASKS_TL ,  implementation_dba_data: APPS.JTF_TASKS_VL

  • 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 Foundationdescription: 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_AUDITS_TL 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_AUDITS_TL,  object_name:JTF_TASK_AUDITS_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_AUDITS_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 Foundationdescription: 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_TYPES_TL 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_TYPES_TL,  object_name:JTF_TASK_TYPES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TYPES_TL

  • Table: JTF_TASK_CONTACTS 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_CONTACTS,  object_name:JTF_TASK_CONTACTS,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_CONTACTS stores the contact information for a given customer. ,  implementation_dba_data: JTF.JTF_TASK_CONTACTS

  • Table: JTF_TASK_CONTACTS 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_CONTACTS,  object_name:JTF_TASK_CONTACTS,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_CONTACTS stores the contact information for a given customer. ,  implementation_dba_data: JTF.JTF_TASK_CONTACTS

  • Table: JTF_TASK_TYPES_TL 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_TYPES_TL,  object_name:JTF_TASK_TYPES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TYPES_TL

  • Table: JTF_TASK_TEMPLATES_TL 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_TEMPLATES_TL,  object_name:JTF_TASK_TEMPLATES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TEMPLATES_TL

  • Table: JTF_TASK_DATES 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_DATES,  object_name:JTF_TASK_DATES,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_DATES stores the actual date values for a task.... ,  implementation_dba_data: JTF.JTF_TASK_DATES

  • Table: JTF_TASK_TEMPLATES_TL 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_TEMPLATES_TL,  object_name:JTF_TASK_TEMPLATES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TEMPLATES_TL

  • Table: JTF_TASK_REFERENCES_TL 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_REFERENCES_TL,  object_name:JTF_TASK_REFERENCES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_REFERENCES_TL

  • 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 Foundationdescription: 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_REFERENCES_TL 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_REFERENCES_TL,  object_name:JTF_TASK_REFERENCES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_REFERENCES_TL

  • Table: JTF_TASK_DATE_TYPES_TL 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_DATE_TYPES_TL,  object_name:JTF_TASK_DATE_TYPES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_DATE_TYPES_TL

  • Table: JTF_TASK_DATE_TYPES_TL 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_DATE_TYPES_TL,  object_name:JTF_TASK_DATE_TYPES_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_DATE_TYPES_TL

  • Table: JTF_TASK_TEMP_GROUPS_TL 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_TEMP_GROUPS_TL,  object_name:JTF_TASK_TEMP_GROUPS_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TEMP_GROUPS_TL

  • Table: JTF_TASK_TEMP_GROUPS_TL 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_TEMP_GROUPS_TL,  object_name:JTF_TASK_TEMP_GROUPS_TL,  status:VALID,  product: JTF - CRM Foundationdescription: 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_TEMP_GROUPS_TL

  • Table: JTF_TASK_ASSIGNMENTS 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_ASSIGNMENTS,  object_name:JTF_TASK_ASSIGNMENTS,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_ASSIGNMENTS stores information about the resource assignments associated with the task. ,  implementation_dba_data: JTF.JTF_TASK_ASSIGNMENTS

  • 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 Foundationdescription: JTF_TASK_RSC_REQS contains the resource requirements for a task. ,  implementation_dba_data: JTF.JTF_TASK_RSC_REQS

  • Table: JTF_TASK_REFERENCES_B 12.1.1

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_REFERENCES_B,  object_name:JTF_TASK_REFERENCES_B,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_REFERENCES stores the reference details for a given task. ,  implementation_dba_data: JTF.JTF_TASK_REFERENCES_B

  • Table: JTF_TASK_ASSIGNMENTS 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_ASSIGNMENTS,  object_name:JTF_TASK_ASSIGNMENTS,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_ASSIGNMENTS stores information about the resource assignments associated with the task. ,  implementation_dba_data: JTF.JTF_TASK_ASSIGNMENTS

  • Table: JTF_TASK_REFERENCES_B 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_TASK_REFERENCES_B,  object_name:JTF_TASK_REFERENCES_B,  status:VALID,  product: JTF - CRM Foundationdescription: JTF_TASK_REFERENCES stores the reference details for a given task. ,  implementation_dba_data: JTF.JTF_TASK_REFERENCES_B

  • 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 Foundationdescription: JTF_TASK_RSC_REQS contains the resource requirements for a task. ,  implementation_dba_data: JTF.JTF_TASK_RSC_REQS

  • View: JTF_TASK_UWQ_ALL_REF_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:JTF.JTF_TASK_UWQ_ALL_REF_V,  object_name:JTF_TASK_UWQ_ALL_REF_V,  status:VALID,  product: JTF - CRM Foundationdescription: This view is used to get all the open tasks and assignments except that source object type is appointment or task type is escalation. ,  implementation_dba_data: APPS.JTF_TASK_UWQ_ALL_REF_V

  • View: JTF_TASK_UWQ_ALL_REF_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:JTF.JTF_TASK_UWQ_ALL_REF_V,  object_name:JTF_TASK_UWQ_ALL_REF_V,  status:VALID,  product: JTF - CRM Foundationdescription: This view is used to get all the open tasks and assignments except that source object type is appointment or task type is escalation. ,  implementation_dba_data: APPS.JTF_TASK_UWQ_ALL_REF_V

  • 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 Foundationdescription: 3D task view as used by the business rule monitor. ,  implementation_dba_data: APPS.JTF_BRM_3D_TASK_V

  • Table: JTF_IH_ACTIVITIES 12.2.2

    owner:JTF,  object_type:TABLE,  fnd_design_data:JTF.JTF_IH_ACTIVITIES,  object_name:JTF_IH_ACTIVITIES,  status:VALID,  product: JTF - CRM Foundationdescription: An act performed by a human or automated agent as part of an Interaction. An Interaction Activity can be related to the handling of the Media Items related to the Interaction (example: answering a call, transferring a call, etc.) . An Int ,  implementation_dba_data: JTF.JTF_IH_ACTIVITIES