Search Results typ_vl




Overview

APPS.CS_SR_TASKS_V is a reporting and integration view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema. It is part of the TeleService (CS) and Task Manager (JTF) foundation, exposing task records created and tracked within the Service Request and interaction workflow model. The view consolidates a task's structural data with human-readable, translatable names for its task type, status, priority, and owner type, thereby removing the need for consumers to perform multiple lookup joins.

The view is commonly referenced in Service Request reporting, task dashboards, custom concurrent programs, and integration interfaces where a flattened, denormalized task projection is required. Because the definition joins several _VL views (translation-enabled views), the layout is language-aware and returns the display name appropriate to the session's language.

Underlying Base Objects

The documented base objects referenced by the view are:

In effect, CS_SR_TASKS_V drives from JTF_TASKS_VL (alias tsk_vl, the object named in the user's search context "typ_vl" is the alias for the task type view) and performs outer joins to the type, status, priority, and object type translation views. The Oracle Forms-based Task Manager and Service Request forms query these same base objects, so this view presents a report-friendly variant of the same data.

Key Columns

Boolean-style flags such as PALM_FLAG, WINCE_FLAG, LAPTOP_FLAG, PRIVATE_FLAG, and PUBLISH_FLAG are also exposed for device, visibility, and publication reporting.

Common Use Cases and Queries

Typical scenarios include building task aging reports for Service Requests, tracking ownership and effort by task type, and feeding external systems a flattened task snapshot. A representative query filtering on a deleted flag and joining owner and customer context might look like:

SELECT task_number
     , task_type
     , task_status
     , task_priority
     , owner
     , customer_id
     , planned_start_date
     , actual_end_date
     , percentage_complete
  FROM apps.cs_sr_tasks_v
 WHERE deleted_flag = 'N'
   AND task_status NOT IN ('Closed', 'Cancelled')
 ORDER BY planned_start_date;

To aggregate open workload by type and status:

SELECT task_type
     , task_status
     , COUNT(*) task_count
  FROM apps.cs_sr_tasks_v
 WHERE deleted_flag = 'N'
 GROUP BY task_type, task_status
 ORDER BY task_type, task_status;

Because the view resolves owner, type, status, and priority names through translation-enabled base views, queries against it are suitable for user-facing reporting and multilingual deployments, and the Who columns and DFF attributes allow further customization and audit-oriented analysis.