Search Results jtf_tasks_v
Overview
JTF_TASKS_V is a common view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the JTF – CRM Foundation product. It is classified in ETRM as a VIEW with VALID status, and its documented purpose is to expose all task attributes in a single, denormalized structure. In Oracle EBS 12.1.1 and 12.2.2, the object is not a transactional interface but a read-optimized consolidation layer over the task entity model. Tasks in CRM Foundation represent activities, to-dos, appointments, and similar work items that can be associated with parties, accounts, resources, and source objects.
Because JTF_TASKS_V joins the base task definition to lookup translation tables, owner resolution utilities, customer and address data, timezone metadata, workflow information, and source object attributes, it serves as the primary reporting surface for task-oriented inquiries. Reports, dashboards, and integrations use it to avoid reimplementing the complex joins and package calls required to present a task with human-readable status, type, priority, owner, and customer names.
Underlying Base Objects
The view is defined over a set of CRM Foundation and Trading Community Architecture objects. Documented referenced objects include JTF_TASKS_VL (VIEW), JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL, JTF_TASK_TYPES_B and JTF_TASK_TYPES_TL, JTF_TASK_PRIORITIES_TL, JTF_OBJECTS_B and JTF_OBJECTS_TL, HZ_PARTIES, HZ_CUST_ACCOUNTS, HZ_LOCATIONS, HZ_PARTY_SITES, and FND_TIMEZONES_VL.
Two PL/SQL components are also referenced: JTF_TASK_UTL, used for owner and user name resolution, and JTF_TASK_WORKFLOW_PKG, used to determine workflow activity and display names. The task header data itself is sourced from JTF_TASKS_VL, while the _TL tables supply translated lookup names and the _B tables supply base lookup identifiers. The HZ tables provide party, account, and address attributes, and FND_TIMEZONES_VL supplies timezone name and GMT offset. This combination makes the view dependent on both CRM Foundation and TCA data, which is important for performance and security assessment in reporting environments.
Key Columns
The view exposes identifiers and audit columns such as ROW_ID, TASK_ID, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN. Descriptive attributes include TASK_NUMBER, TASK_NAME, and DESCRIPTION.
- Task classification: TASK_TYPE_ID and TASK_TYPE, TASK_STATUS_ID and TASK_STATUS, and CLOSED, derived through NVL(JTSB.CLOSED_FLAG, 'N'). TASK_PRIORITY_ID and TASK_PRIORITY provide priority lookup values.
- Ownership and assignment: OWNER_ID, OWNER_TYPE_CODE, OWNER_TYPE, OWNER, ASSIGNED_BY_ID, and ASSIGNED_BY_NAME. The OWNER and ASSIGNED_BY_NAME columns are populated via JTF_TASK_UTL package functions.
- Customer and address: CUSTOMER_ID, CUSTOMER_NAME, CUSTOMER_NUMBER, CUST_ACCOUNT_ID, CUST_ACCOUNT_NUMBER, ADDRESS_ID, ADDRESS1, ADDRESS2, and ADDRESS3, where address lines are concatenated from HZ_LOCATIONS attributes.
- Dates and scheduling: PLANNED_START_DATE, PLANNED_END_DATE, SCHEDULED_START_DATE, SCHEDULED_END_DATE, ACTUAL_START_DATE, ACTUAL_END_DATE, and DURATION with DURATION_UOM.
- Timezone and workflow: TIMEZONE_ID with name and GMT_OFFSET, plus WORKFLOW_PROCESS_ID, ACTIVE_WF_PROCESS, WORKFLOW_PROCESS_NAME, and WORKFLOW_DISPLAY_NAME.
- Source object: SOURCE_OBJECT_TYPE_CODE, SOURCE_OBJECT_TYPE, SOURCE_OBJECT_ID, SOURCE_OBJECT_NAME, OBJECT_FUNCTION, and OBJECT_PARAMETERS link the task to its originating business object.
Common Use Cases and Queries
Typical usage includes open task listings, owner workload analysis, customer activity reports, and workflow status checks. The following query returns open tasks for a given owner with customer and status information:
SELECT task_number, task_name, task_status, task_priority, owner, customer_name, planned_start_date FROM jtf_tasks_v WHERE closed = 'N' AND owner_id = :owner_id ORDER BY planned_start_date;
For customer-facing reporting, the CUSTOMER_NAME and CUST_ACCOUNT_NUMBER columns allow tasks to be grouped by party without joining HZ tables manually:
SELECT customer_name, task_status, COUNT(*) task_count FROM jtf_tasks_v WHERE customer_id IS NOT NULL GROUP BY customer_name, task_status;
Because the view invokes PL/SQL functions during row retrieval, queries should be filtered by indexed columns such as TASK_ID, TASK_NUMBER, OWNER_ID, or date ranges to limit the number of function executions. The view is suitable for ad hoc reporting and integration extracts, but high-volume or high-frequency processing should consider targeted joins to the base tables instead.
-
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 ,
-
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: APPS.AMS_TASKS_V
12.1.1
-
VIEW: APPS.AMS_TASKS_V
12.2.2
-
APPS.JTF_TASK_WORKFLOW_PKG SQL Statements
12.2.2
-
APPS.JTF_TASK_WORKFLOW_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.JTF_TASK_WORKFLOW_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_TASK_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKC_TASK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_TASK_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_WORKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKC_TASK_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_TASK_PVT, status:VALID,
-
PACKAGE: APPS.JTF_TASK_WORKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_TASK_WORKFLOW_PKG, status:VALID,
-
SYNONYM: APPS.JTF_TASK_PRIORITIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_PRIORITIES_TL, status:VALID,
-
View: AMS_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TASKS_V, object_name:AMS_TASKS_V, status:VALID, product: AMS - Marketing , description: This view returns the task and task assignment details. , implementation_dba_data: APPS.AMS_TASKS_V ,
-
PACKAGE: APPS.JTF_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_TASKS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_WF_ACTIVITIES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WF_ACTIVITIES_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_WORKFLOW_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKC_TASK_ALERT_ESCL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_TASK_ALERT_ESCL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_TASK_ALERT_ESCL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_TASK_ALERT_ESCL_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_ESCWFACTIVITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_ESCWFACTIVITY_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_ESCWFACTIVITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_ESCWFACTIVITY_PVT, status:VALID,
-
SYNONYM: APPS.JTF_TASK_STATUSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_PRIORITIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_PRIORITIES_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_STATUSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
PACKAGE BODY: APPS.CS_EA_AUTOGEN_TASKS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_EA_AUTOGEN_TASKS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_WF_ACTIVITIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WF_ACTIVITIES_PKG, status:VALID,
-
PACKAGE: APPS.JTF_TASKS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_TASKS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_EA_AUTOGEN_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_EA_AUTOGEN_TASKS_PVT, status:VALID,
-
View: AMS_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TASKS_V, object_name:AMS_TASKS_V, status:VALID, product: AMS - Marketing , description: This view returns the task and task assignment details. , implementation_dba_data: APPS.AMS_TASKS_V ,
-
SYNONYM: APPS.JTF_TASK_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_TYPES_TL, status:VALID,
-
SYNONYM: APPS.JTF_OBJECTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_TYPES_B, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASKS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASKS_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASKS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CUG_GENERIC_WF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_GENERIC_WF_PKG, status:VALID,
-
SYNONYM: APPS.JTF_TASK_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_TYPES_B, status:VALID,
-
PACKAGE BODY: APPS.CUG_GENERIC_WF_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_GENERIC_WF_PKG, status:VALID,
-
SYNONYM: APPS.JTF_TASK_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_TYPES_TL, status:VALID,
-
SYNONYM: APPS.JTF_OBJECTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_TL, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASKS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASKS_PUB, status:VALID,
-
VIEW: APPS.JTF_BRM_3D_TASK_V
12.2.2
-
PACKAGE BODY: APPS.JTF_TASKS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASKS_PUB, status:VALID,
-
VIEW: APPS.JTF_BRM_3D_TASK_V
12.1.1
-
PACKAGE: APPS.JTF_TASKS_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_TASKS_PUB, status:VALID,
-
VIEW: APPS.FND_TIMEZONES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TIMEZONES_VL, object_name:FND_TIMEZONES_VL, status:VALID,
-
PACKAGE: APPS.JTF_TASKS_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_TASKS_PUB, status:VALID,
-
SYNONYM: APPS.JTF_TASK_STATUSES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_B, status:VALID,
-
SYNONYM: APPS.JTF_TASK_STATUSES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_B, status:VALID,
-
VIEW: APPS.FND_TIMEZONES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TIMEZONES_VL, object_name:FND_TIMEZONES_VL, status:VALID,
-
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 ,
-
12.1.1 DBA Data
12.1.1