Search Results az_tasks_v
Overview
AZ_TASKS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AZ – Application Implementation product family. In both release 12.1.1 and 12.2.2 the object is documented with a status of VALID. Its stated purpose is to provide easy access to assigned use and status, as well as context names, for Wizard tasks generated by the Application Implementation (Wizard) framework.
The view consolidates data held across the Oracle Workflow runtime tables with the AZ_PROCESSES metadata table. Rather than requiring a developer to join workflow item, activity status, and item attribute tables manually, AZ_TASKS_V presents a single flattened row per Wizard task, carrying the owning item type and item key, the root activity (context) under which the task runs, the numeric context identifier, the human-readable context name, the assigned user, task status, begin and end dates, and a computed duration. Because it is defined exclusively over synonyms to base tables, it functions as a read-only reporting and integration surface; no DML is possible through the view.
Underlying Base Objects
According to the documented ETRM metadata for 12.2.2, AZ_TASKS_V references five base objects, all accessed through APPS synonyms:
- AZ_PROCESSES (SYNONYM) — supplies the context name (CONTEXT_NAME) and links a workflow item type plus process name to a numeric CONTEXT_ID.
- WF_ITEMS (SYNONYM) — the master list of workflow items; supplies ITEM_TYPE, ITEM_KEY, ROOT_ACTIVITY, BEGIN_DATE, and END_DATE.
- WF_ITEM_ACTIVITY_STATUSES (SYNONYM) — supplies the current activity identifier (PROCESS_ACTIVITY) and the activity status used to derive the STATUS flag.
- WF_ITEM_ATTRIBUTE_VALUES (SYNONYM) — used twice in the view definition to resolve item attributes: one alias for AZW_IA_ROLE (assigned user) and a second alias for AZW_IA_CTXT_ID (context identifier).
- WF_PROCESS_ACTIVITIES (SYNONYM) — joins the activity instance back to the root process so that ROOT_ACTIVITY is correctly mapped.
The view restricts itself to Wizard item types via the predicate WI.ITEM_TYPE LIKE 'AZW%', ensuring only Application Implementation workflow instances are returned.
Key Columns
- ITEM_TYPE / ITEM_KEY — the workflow item type (AZW-prefixed) and unique item key identifying each task instance.
- ROOT_ACTIVITY — the top-level process name under which the task executes; effectively the Wizard context group.
- CONTEXT_ID — the numeric context identifier, derived by converting the AZW_IA_CTXT_ID attribute TEXT_VALUE to a number.
- CONTEXT_NAME — the descriptive context name sourced from AZ_PROCESSES, resolved by matching CONTEXT_ID.
- ASSIGNED_USER — the role/user responsible for the task, taken from the AZW_IA_ROLE attribute TEXT_VALUE and truncated to 100 characters.
- ACTIVITY_ID — the workflow activity instance identifier (PROCESS_ACTIVITY) for the task.
- STATUS — a decoded single-character flag: 'A' when the activity status is ACTIVE, otherwise 'C' (complete).
- BEGIN_DATE / END_DATE — the task's start and completion timestamps; END_DATE is NULL for tasks still open.
- DURATION — a computed value expressed as months-to-date multiplied by 31 (approximating days), measuring either from BEGIN_DATE to SYSDATE for open tasks or from BEGIN_DATE to END_DATE for completed ones.
Common Use Cases and Queries
The view is typically used to report on the progress of Application Implementation Wizard tasks, to audit user assignments, and to feed downstream status dashboards. A common query lists all open tasks with their owners and contexts:
SELECT item_type, item_key, context_name, assigned_user, status, begin_date FROM az_tasks_v WHERE status = 'A' ORDER BY begin_date;SELECT context_name, COUNT(*) FROM az_tasks_v GROUP BY context_name;SELECT item_key, assigned_user, duration FROM az_tasks_v WHERE assigned_user = :user ORDER BY duration DESC;
When a user searches for "text_value" in connection with this object, the relevant point is that the view does not expose TEXT_VALUE directly; instead it exposes the transformed results of two WF_ITEM_ATTRIBUTE_VALUES attributes — AZW_IA_ROLE into ASSIGNED_USER and AZW_IA_CTXT_ID (numerically cast) into CONTEXT_ID. Queries filtering on the raw text_value must target the underlying WF_ITEM_ATTRIBUTE_VALUES table, since AZ_TASKS_V has already resolved and renamed those values for reporting convenience.
-
View: AZ_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AZ.AZ_TASKS_V, object_name:AZ_TASKS_V, status:VALID, product: AZ - Application Implementation , description: Provides easy access to assigned use and status, as well as context names for Wizard tasks. , implementation_dba_data: APPS.AZ_TASKS_V ,
-
View: AZ_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AZ.AZ_TASKS_V, object_name:AZ_TASKS_V, status:VALID, product: AZ - Application Implementation , description: Provides easy access to assigned use and status, as well as context names for Wizard tasks. , implementation_dba_data: APPS.AZ_TASKS_V ,
-
VIEW: APPS.AZ_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AZ.AZ_TASKS_V, object_name:AZ_TASKS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.AZ_PROCESSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AZ_PROCESSES, status:VALID,
-
SYNONYM: APPS.AZ_PROCESSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AZ_PROCESSES, status:VALID,
-
VIEW: APPS.AZ_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AZ.AZ_TASKS_V, object_name:AZ_TASKS_V, status:VALID,
-
PACKAGE BODY: APPS.AZW_PROC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_PROC, status:VALID,
-
PACKAGE BODY: APPS.AZW_REPORT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_REPORT, status:VALID,
-
PACKAGE BODY: APPS.AZW_ARCHIVE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_ARCHIVE, status:VALID,
-
PACKAGE BODY: APPS.AZW_ARCHIVE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_ARCHIVE, status:VALID,
-
APPS.AZW_REPORT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AZW_PROC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_PROC, status:VALID,
-
PACKAGE BODY: APPS.AZW_REPORT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_REPORT, status:VALID,
-
APPS.AZW_REPORT SQL Statements
12.1.1
-
APPS.AZW_ARCHIVE SQL Statements
12.2.2
-
APPS.AZW_ARCHIVE SQL Statements
12.1.1
-
SYNONYM: APPS.WF_ITEM_ATTRIBUTE_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WF_ITEM_ATTRIBUTE_VALUES, status:VALID,
-
SYNONYM: APPS.WF_ITEM_ATTRIBUTE_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_ITEM_ATTRIBUTE_VALUES, status:VALID,
-
PACKAGE BODY: APPS.AZW_ARCHIVE
12.1.1
-
PACKAGE BODY: APPS.AZW_ARCHIVE
12.2.2
-
APPS.AZW_PROC SQL Statements
12.1.1
-
APPS.AZW_PROC SQL Statements
12.2.2
-
APPS.AZW_REPORT dependencies on AZ_TASKS_V
12.1.1
-
APPS.AZW_PROC dependencies on AZ_TASKS_V
12.1.1
-
PACKAGE BODY: APPS.AZW_REPORT
12.1.1
-
APPS.AZW_ARCHIVE dependencies on AZ_TASKS_V
12.1.1
-
APPS.AZW_PROC dependencies on AZ_TASKS_V
12.2.2
-
APPS.AZW_REPORT dependencies on AZ_TASKS_V
12.2.2
-
APPS.AZW_ARCHIVE dependencies on AZ_TASKS_V
12.2.2
-
PACKAGE BODY: APPS.AZW_REPORT
12.2.2
-
SYNONYM: APPS.WF_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_ITEMS, status:VALID,
-
SYNONYM: APPS.WF_PROCESS_ACTIVITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_PROCESS_ACTIVITIES, status:VALID,
-
SYNONYM: APPS.WF_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WF_ITEMS, status:VALID,
-
SYNONYM: APPS.WF_PROCESS_ACTIVITIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WF_PROCESS_ACTIVITIES, status:VALID,
-
SYNONYM: APPS.WF_ITEM_ACTIVITY_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_ITEM_ACTIVITY_STATUSES, status:VALID,
-
SYNONYM: APPS.WF_ITEM_ACTIVITY_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WF_ITEM_ACTIVITY_STATUSES, status:VALID,
-
eTRM - AZ Tables and Views
12.1.1
description: Templates ,
-
eTRM - AZ Tables and Views
12.2.2
description: Templates ,
-
APPS.AZW_REPORT dependencies on AZ_PROCESSES_ALL_V
12.1.1
-
APPS.AZW_REPORT dependencies on AZ_PROCESSES_ALL_V
12.2.2
-
APPS.AZW_REPORT dependencies on AZ_PROCESSES
12.1.1
-
APPS.AZW_REPORT dependencies on AZ_PROCESSES
12.2.2
-
eTRM - AZ Tables and Views
12.2.2
description: Templates ,
-
APPS.AZW_ARCHIVE dependencies on FND_LOOKUPS
12.1.1
-
APPS.AZW_ARCHIVE dependencies on FND_LOOKUPS
12.2.2
-
APPS.AZW_ARCHIVE dependencies on AZ_PROCESSES_ALL_V
12.1.1