Search Results jtf_am_task_dtls_v
Overview
The JTF_AM_TASK_DTLS_V view is a CRM Foundation (JTF) reporting and integration object owned by the APPS schema in Oracle EBS 12.1.1 and 12.2.2. Its documented purpose is to expose task details in the context of assignments — that is, it flattens the relationship between a task and the resource to which the task is assigned, together with scheduling, status, priority, and escalation information. The view is commonly consumed by Oracle Assignment Manager (JTF_AM) components, CRM dashboards, and custom escalation or workload reports that need one row per task assignment rather than per task.
Because the view carries denormalized attributes from the task header and the assignment record, it is well suited to feed escalation logic and dispatch processes. This is directly relevant to the escalation_flag search: the view derives an ESCALATION_FLAG column through a DECODE expression that is evaluated at query time, meaning escalation state is computed dynamically rather than stored on the base tables.
Underlying Base Objects
The ETRM 12.2.2 metadata documents the following referenced base objects:
- JTF_TASKS_VL (view) — the translated task header, source of task name, task number, scheduled dates, source object identifiers, and the ESCALATION_LEVEL attribute used in the escalation logic.
- JTF_TASKS_B (synonym) — the base task table joined for task-level attributes such as DELETED_FLAG.
- JTF_TASK_ASSIGNMENTS (synonym) — the assignment table aliased as A; supplies resource, assignment status, travel duration, and audit columns.
- JTF_TASK_REFERENCES_B (synonym) — joined via an outer join on OBJECT_ID = A.TASK_ID with REFERENCE_CODE = 'ESC' and OBJECT_TYPE_CODE = 'TASK'; provides the escalation reference used in the flag computation.
- JTF_TASK_STATUSES_B (synonym) — provides the status definitions (CLOSED_FLAG, COMPLETED_FLAG, CANCELLED_FLAG, REJECTED_FLAG) that determine whether an escalation applies.
The joins are predominantly outer joins (the (+) operator), ensuring that tasks without a matching escalation reference or status row are still returned.
Key Columns
- ROW_ID — the ROWID from the assignment table, used as a unique row identifier.
- TASK_ID, TASK_ASSIGNMENT_ID — primary keys linking the task and its assignment.
- RESOURCE_TYPE_CODE, RESOURCE_ID — the type and identifier of the assigned resource.
- SCHEDULED_START_DATE, SCHEDULED_END_DATE, SCHED_TRAVEL_DURATION — scheduling attributes for the assignment.
- SOURCE_OBJECT_TYPE_CODE, SOURCE_OBJECT_ID, SOURCE_OBJECT_NAME — the originating CRM entity for the task.
- TASK_NUMBER, TASK_NAME, TASK_TYPE_ID, TASK_STATUS_ID — identifying task attributes.
- ASSIGNMENT_STATUS_ID, TASK_PRIORITY_ID — assignment and priority context.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns.
- ESCALATION_FLAG — computed via DECODE: it returns 'Y' only when the task type, 'ESC' reference code, and the closed/completed/cancelled/rejected/deleted flags match the pattern '22ESCNNNNN'; otherwise 'N'. Note the escalation level 'DE' and 'NE' short-circuit to 'N'.
Common Use Cases and Queries
A typical escalation monitoring query filters on the computed flag:
SELECT task_id, task_assignment_id, task_name, escalation_flag FROM apps.jtf_am_task_dtls_v WHERE escalation_flag = 'Y';- Workload reports by resource:
SELECT resource_id, COUNT(*) FROM apps.jtf_am_task_dtls_v WHERE scheduled_start_date BETWEEN :p_from AND :p_to GROUP BY resource_id; - Audit tracking using the standard columns:
SELECT task_id, last_updated_by, last_update_date FROM apps.jtf_am_task_dtls_v WHERE last_update_date >= :p_since;
Because ESCALATION_FLAG is derived through DECODE rather than persisted, consumers cannot index it directly; performance-sensitive queries should materialize the view or restructure the DECODE logic. Custom code should treat the view as read-only and avoid direct DML against the underlying JTF task tables.
-
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_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 ,
-
SYNONYM: APPS.JTF_TASK_REFERENCES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_REFERENCES_B, status:VALID,
-
SYNONYM: APPS.JTF_TASK_REFERENCES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_REFERENCES_B, status:VALID,
-
SYNONYM: APPS.JTF_TASK_ASSIGNMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_ASSIGNMENTS, status:VALID,
-
SYNONYM: APPS.JTF_TASK_STATUSES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_B, status:VALID,
-
SYNONYM: APPS.JTF_TASK_ASSIGNMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_ASSIGNMENTS, status:VALID,
-
SYNONYM: APPS.JTF_TASK_STATUSES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_B, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.JTF_TASKS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_B, status:VALID,
-
SYNONYM: APPS.JTF_TASKS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_B, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,