Search Results refs_b




Overview

APPS.JTF_ESC_UWQ_V is a reporting view in the Oracle E-Business Suite CRM Task Manager (JTF) schema. Its name indicates its purpose: it exposes the escalation "Universal Work Queue" (UWQ) records for tasks. In release 12.1.1 and 12.2.2, the Universal Work Queue is the framework that routes work items — including escalations — to the appropriate resource or agent. This view flattens the join between the task, its status, its escalation level, its owner, and any associated reference document into a single queryable rowset suitable for reporting and integration.

The view is deliberately filtered. It selects only tasks whose task_type_id = 22 (the escalation task type), excludes deleted, closed, cancelled, completed, and rejected tasks, and restricts references to those with reference_code = 'ESC'. In practice, therefore, the view presents the population of currently open escalations and their linkage to the document or object that triggered them.

Underlying Base Objects

The view is defined over the following documented base objects:

The joins to refs_b and o are outer joins ((+)), so a task without an associated reference or object is still returned.

Key Columns

Common Use Cases and Queries

Typical uses include escalation dashboards, workload analysis by owner or resource, and integration feeds into external workflow or notification engines. A representative query lists open escalations with their level and owner:

  • SELECT task_number, description, task_status, escalation_level_name, owner, customer_name FROM apps.jtf_esc_uwq_v ORDER BY actual_start_date DESC;
  • SELECT owner, COUNT(*) FROM apps.jtf_esc_uwq_v GROUP BY owner;
  • SELECT task_number, ref_doc_number, object_code FROM apps.jtf_esc_uwq_v WHERE ref_doc_number IS NOT NULL;

Because the view filters by USERENV('lang') for translated columns, results are returned in the session language. Reports should therefore set the language consistently where multilingual output is required.