Search Results jtf_task_uwq_v
Overview
JTF_TASK_UWQ_V is a VALID view owned by the APPS schema within the JTF - CRM Foundation product of Oracle E-Business Suite, documented in ETRM for releases 12.1.1 and 12.2.2. Its documented purpose is to retrieve all open tasks and their assignments, with two explicit exclusions: records whose source object type is an appointment, and records whose task type is an escalation. In effect, the view acts as a filtered worklist query over the Task Manager (JTF_TASKS) data model, returning only actionable, non-escalated task assignments that remain open. Because task and assignment data is central to CRM agent dashboards, Universal Work Queue (UWQ) style listings, and cross-module reporting in EBS, a view of this kind serves as a convenience access layer rather than a transactional table. It presents denormalized task context—task identity, type, status, priority, scheduling dates, source object, owner, resource, and customer—in a single flat row per assignment, which simplifies downstream reporting, integration extracts, and custom concurrent programs without requiring consumers to reconstruct the joins against the base JTF tables themselves.
Underlying Base Objects
The documented ETRM metadata lists the objects referenced by APPS.JTF_TASK_UWQ_V: HZ_PARTIES, HZ_TIMEZONES, HZ_TIMEZONES_TL, JTF_OBJECTS_B, JTF_OBJECTS_TL, JTF_TASKS_B, JTF_TASKS_TL, JTF_TASK_ALL_ASSIGNMENTS, JTF_TASK_PRIORITIES_TL, JTF_TASK_STATUSES_VL (a view), JTF_TASK_TYPES_TL, and the JTF_TASK_UTL package. The majority are synonyms to the underlying base tables owned by the JTF and HZ (Trading Community) schemas. The join structure is driven by JTF_TASKS_B as the parent task entity, linked to JTF_TASKS_TL for the translated task name, to JTF_TASK_STATUSES_VL, JTF_TASK_TYPES_TL, and JTF_TASK_PRIORITIES_TL for descriptive status, type, and priority labels, and to JTF_TASK_ALL_ASSIGNMENTS for the assignee or owner rows. Source object context is resolved through JTF_OBJECTS_B and JTF_OBJECTS_TL on the SOURCE_OBJECT_TYPE_CODE. Customer and timezone information is derived from HZ_PARTIES and the HZ_TIMEZONES/HZ_TIMEZONES_TL pair. The JTF_TASK_UTL package is invoked in the SELECT list through JTF_TASK_UTL.GET_OWNER to derive the owner display value. A documented filter, NVL(TASKS_B.DELETED_FLAG,'N') <> 'Y', ensures soft-deleted tasks are excluded. The priority join is outer (PRI.TASK_PRIORITY_ID (+)), so tasks without a priority are retained.
Key Columns
- TASK_ID, TASK_NUMBER, TASK_NAME — task identity and translated name from JTF_TASKS_B and JTF_TASKS_TL.
- TASK_TYPE, TASK_STATUS, TASK_PRIORITY — descriptive labels from JTF_TASK_TYPES_TL, JTF_TASK_STATUSES_VL, and JTF_TASK_PRIORITIES_TL.
- PLANNED_START_DATE, PLANNED_END_DATE, SCHEDULED_START_DATE, SCHEDULED_END_DATE, ACTUAL_START_DATE, ACTUAL_END_DATE — the scheduling lifecycle dates of the task.
- SOURCE_OBJECT_TYPE_CODE, SOURCE_OBJECT_TYPE, SOURCE_OBJECT_ID, SOURCE_OBJECT_NAME — the originating business object the task references; SOURCE_OBJECT_TYPE comes from JTF_OBJECTS_TL.
- RESOURCE_ID, RESOURCE_TYPE, ASSIGNEE_ROLE, OWNED_FLAG, OWNER — assignment detail from JTF_TASK_ALL_ASSIGNMENTS, with OWNER calculated via JTF_TASK_UTL.GET_OWNER and OWNED_FLAG decoding the assignee role to 'A' or 'O'.
- CUSTOMER_NAME — party name from HZ_PARTIES for the associated customer.
- TIMEZONE_NAME, GMT_DEVIATION_HOURS — timezone context from HZ_TIMEZONES and HZ_TIMEZONES_TL.
- DURATION, DURATION_UOM — task effort and unit of measure.
- OBJECT_FUNCTION, OBJECT_PARAMETERS — navigation metadata from JTF_OBJECTS_B, and ENTER_FROM_TASK from the same source.
- CLOSED_FLAG, OWNER_TYPE_CODE, OWNER_ID, CUST_ACCOUNT_NUMBER, ESCALATION_LEVEL, ESCALATION_OWNER — columns present in the projection as literal NULL or fixed values ('N' for CLOSED_FLAG), included to satisfy a common column contract; they carry no data from the base tables.
Common Use Cases and Queries
The view is typically consumed by open-task worklists, agent dashboards, and reconciliation reports that must exclude appointments and escalation tasks. A representative query listing open tasks by assignee is:
SELECT task_id, task_name, task_type, task_status, task_priority, owner, customer_name, planned_end_date FROM jtf_task_uwq_v WHERE resource_id = :p_resource_id ORDER BY planned_end_date;
A second pattern surfaces overdue open items for a date window:
SELECT task_number, task_name, task_status, owner, customer_name, planned_end_date FROM jtf_task_uwq_v WHERE planned_end_date < SYSDATE ORDER BY planned_end_date;
Because the view does not expose a dedicated closed or escalation flag, and several columns are projected as NULL literals, consumers should treat it strictly as a filtered read model and join back to JTF_TASKS_B or JTF_TASK_ALL_ASSIGNMENTS when they require full status history, escalation detail, or customer account numbers. Reports should also account for its translated (TL) and VL master data joins, since language and territory settings influence the descriptive labels returned.
-
View: JTF_TASK_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_V, object_name:JTF_TASK_UWQ_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get all the open tasks, assignments except that source object type is appointment or task type is escalation. , implementation_dba_data: APPS.JTF_TASK_UWQ_V ,
-
View: JTF_TASK_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_V, object_name:JTF_TASK_UWQ_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get all the open tasks, assignments except that source object type is appointment or task type is escalation. , implementation_dba_data: APPS.JTF_TASK_UWQ_V ,
-
VIEW: APPS.IEU_UWQ_TASKS_V
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_SEC_V
12.2.2
-
VIEW: APPS.IEU_UWQ_TASKS_V
12.1.1
-
SYNONYM: APPS.HZ_TIMEZONES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_TIMEZONES_TL, status:VALID,
-
SYNONYM: APPS.HZ_TIMEZONES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_TIMEZONES_TL, status:VALID,
-
SYNONYM: APPS.HZ_TIMEZONES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_TIMEZONES, 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: IEU_UWQ_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_V, object_name:IEU_UWQ_TASKS_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_V ,
-
SYNONYM: APPS.HZ_TIMEZONES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_TIMEZONES, 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_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_TYPES_TL, status:VALID,
-
View: IEU_UWQ_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_V, object_name:IEU_UWQ_TASKS_V, status:VALID, product: IEU - Universal Work Queue , description: View used for UWQ selector SpreadTable. , implementation_dba_data: APPS.IEU_UWQ_TASKS_V ,
-
SYNONYM: APPS.JTF_OBJECTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_ALL_ASSIGNMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_ALL_ASSIGNMENTS, status:VALID,
-
SYNONYM: APPS.JTF_TASKS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_TL, status:VALID,
-
SYNONYM: APPS.JTF_OBJECTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_TL, 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_TASKS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_ALL_ASSIGNMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_ALL_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.JTF_TASK_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_V, object_name:JTF_TASK_UWQ_V, status:VALID,
-
VIEW: APPS.JTF_TASK_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_UWQ_V, object_name:JTF_TASK_UWQ_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_OBJECTS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_B, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_SEC_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEU_UWQ_TASKS_SEC_V, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_V, object_name:IEU_UWQ_TASKS_V, status:VALID,
-
VIEW: APPS.IEU_UWQ_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_TASKS_V, object_name:IEU_UWQ_TASKS_V, status:VALID,
-
SYNONYM: APPS.JTF_OBJECTS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_B, status:VALID,
-
PACKAGE: APPS.JTF_TASK_UTL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_TASK_UTL, status:VALID,
-
PACKAGE: APPS.JTF_TASK_UTL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_TASK_UTL, status:VALID,
-
VIEW: APPS.JTF_TASK_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_STATUSES_VL, object_name:JTF_TASK_STATUSES_VL, status:VALID,
-
VIEW: APPS.JTF_TASK_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_STATUSES_VL, object_name:JTF_TASK_STATUSES_VL, status:VALID,
-
SYNONYM: APPS.JTF_TASKS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_B, status:VALID,
-
SYNONYM: APPS.JTF_TASKS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_B, status:VALID,
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_UTL
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_UTL
12.2.2
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1