Search Results wf_item_activity_statuses
Overview
The WF_ITEM_ACTIVITY_STATUSES table is a core runtime table within the Oracle E-Business Suite (EBS) Workflow engine, owned by the APPLSYS schema. As a component of the Application Object Library (FND), its primary role is to persist the execution state of individual activities (steps) for a specific work item instance. Each row in this table represents the status of a single activity within a running workflow process, enabling the engine to track progress, manage transitions, and determine the next steps for an item. It is a critical data store for the operational integrity and state management of the Oracle Workflow runtime environment in both EBS 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is designed to uniquely identify a workflow item and its constituent activities. Its primary key consists of ITEM_TYPE, ITEM_KEY, and PROCESS_ACTIVITY, which together pinpoint a specific activity instance. The ITEM_TYPE and ITEM_KEY columns link to the parent work item in the WF_ITEMS table. The PROCESS_ACTIVITY column is a foreign key to the WF_PROCESS_ACTIVITIES table, identifying the definition of the activity being executed. A critical optional column is NOTIFICATION_ID, which serves as a foreign key to the WF_NOTIFICATIONS table. This link is populated when the activity is a notification, connecting the activity's status to the specific notification sent to a user or role. The table also stores the activity's current status (e.g., ACTIVE, COMPLETE, ERROR), result, start date, and end date, providing a complete historical and current audit trail.
Common Use Cases and Queries
This table is essential for monitoring, troubleshooting, and reporting on workflow processes. Common use cases include diagnosing stalled workflows by identifying activities stuck in an 'ACTIVE' state, analyzing process performance by calculating activity duration, and auditing the complete execution path of a specific item. A typical diagnostic query to find active activities for a specific item is:
- SELECT process_activity, activity_status, begin_date FROM apps.wf_item_activity_statuses WHERE item_type = '<TYPE>' AND item_key = '<KEY>' AND activity_status = 'ACTIVE';
For performance reporting, analysts often join this table with WF_ITEMS and WF_PROCESS_ACTIVITIES to correlate runtime status with process definitions and item attributes, generating metrics on cycle time and step completion rates.
Related Objects
WF_ITEM_ACTIVITY_STATUSES has integral relationships with other core Workflow tables, as defined by its foreign keys. The WF_ITEMS table is the parent, providing the master definition of the work item. The WF_PROCESS_ACTIVITIES table supplies the metadata for the activity being performed. The WF_NOTIFICATIONS table is linked when the activity is a notification type. Key related APIs include the WF_ENGINE package, which reads from and writes to this table during process execution, and the Workflow Monitor, which queries this table to display the runtime status diagram. Direct data manipulation via SQL is generally discouraged; interaction should occur through the supported Workflow engine APIs.
-
Table: WF_ITEM_ACTIVITY_STATUSES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES, object_name:WF_ITEM_ACTIVITY_STATUSES, status:VALID, product: FND - Application Object Library , description: Runtime table for a work item , implementation_dba_data: APPLSYS.WF_ITEM_ACTIVITY_STATUSES ,
-
Table: WF_ITEM_ACTIVITY_STATUSES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES, object_name:WF_ITEM_ACTIVITY_STATUSES, status:VALID, product: FND - Application Object Library , description: Runtime table for a work item , implementation_dba_data: APPLSYS.WF_ITEM_ACTIVITY_STATUSES ,
-
Table: WF_ITEM_ACTIVITY_STATUSES_H
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_H, object_name:WF_ITEM_ACTIVITY_STATUSES_H, status:VALID, product: FND - Application Object Library , description: Stores history of WF_ITEM_ACTIVITY_STATUSES , implementation_dba_data: APPLSYS.WF_ITEM_ACTIVITY_STATUSES_H ,
-
Table: WF_ITEM_ACTIVITY_STATUSES_H
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_H, object_name:WF_ITEM_ACTIVITY_STATUSES_H, status:VALID, product: FND - Application Object Library , description: Stores history of WF_ITEM_ACTIVITY_STATUSES , implementation_dba_data: APPLSYS.WF_ITEM_ACTIVITY_STATUSES_H ,
-
Table: WF_NOTIFICATIONS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_NOTIFICATIONS, object_name:WF_NOTIFICATIONS, status:VALID, product: FND - Application Object Library , description: Runtime table of messages sent , implementation_dba_data: APPLSYS.WF_NOTIFICATIONS ,
-
Table: WF_NOTIFICATIONS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_NOTIFICATIONS, object_name:WF_NOTIFICATIONS, status:VALID, product: FND - Application Object Library , description: Runtime table of messages sent , implementation_dba_data: APPLSYS.WF_NOTIFICATIONS ,
-
Table: WF_PROCESS_ACTIVITIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_PROCESS_ACTIVITIES, object_name:WF_PROCESS_ACTIVITIES, status:VALID, product: FND - Application Object Library , description: Activity data within a process , implementation_dba_data: APPLSYS.WF_PROCESS_ACTIVITIES ,
-
Table: WF_PROCESS_ACTIVITIES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_PROCESS_ACTIVITIES, object_name:WF_PROCESS_ACTIVITIES, status:VALID, product: FND - Application Object Library , description: Activity data within a process , implementation_dba_data: APPLSYS.WF_PROCESS_ACTIVITIES ,
-
Table: WF_ITEMS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_ITEMS, object_name:WF_ITEMS, status:VALID, product: FND - Application Object Library , description: Workflow runtime table , implementation_dba_data: APPLSYS.WF_ITEMS ,
-
Table: WF_ITEMS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.WF_ITEMS, object_name:WF_ITEMS, status:VALID, product: FND - Application Object Library , description: Workflow runtime table , implementation_dba_data: APPLSYS.WF_ITEMS ,
-
View: WF_HA_NTFA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HA_NTFA_V, object_name:WF_HA_NTFA_V, status:VALID, product: FND - Application Object Library , description: Private view for High Availability project. Subject to change without notice. , implementation_dba_data: APPS.WF_HA_NTFA_V ,
-
View: WF_HA_NTFA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HA_NTFA_V, object_name:WF_HA_NTFA_V, status:VALID, product: FND - Application Object Library , description: Private view for High Availability project. Subject to change without notice. , implementation_dba_data: APPS.WF_HA_NTFA_V ,
-
View: WF_HA_NTF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HA_NTF_V, object_name:WF_HA_NTF_V, status:VALID, product: FND - Application Object Library , description: Private view for High Availability project. Subject to change without notice. , implementation_dba_data: APPS.WF_HA_NTF_V ,
-
View: WF_HA_NTF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_HA_NTF_V, object_name:WF_HA_NTF_V, status:VALID, product: FND - Application Object Library , description: Private view for High Availability project. Subject to change without notice. , implementation_dba_data: APPS.WF_HA_NTF_V ,
-
View: WF_ITEM_ACTIVITY_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_V, object_name:WF_ITEM_ACTIVITY_STATUSES_V, status:VALID, product: FND - Application Object Library , description: Public view for accessing Workflow runtime status , implementation_dba_data: APPS.WF_ITEM_ACTIVITY_STATUSES_V ,
-
View: WF_ITEM_ACTIVITY_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_V, object_name:WF_ITEM_ACTIVITY_STATUSES_V, status:VALID, product: FND - Application Object Library , description: Public view for accessing Workflow runtime status , implementation_dba_data: APPS.WF_ITEM_ACTIVITY_STATUSES_V ,
-
View: WF_ITEM_ACTIVITIES_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITIES_HISTORY_V, object_name:WF_ITEM_ACTIVITIES_HISTORY_V, status:VALID, product: FND - Application Object Library , description: All Activity History , implementation_dba_data: APPS.WF_ITEM_ACTIVITIES_HISTORY_V ,
-
View: WF_ITEM_ACTIVITIES_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITIES_HISTORY_V, object_name:WF_ITEM_ACTIVITIES_HISTORY_V, status:VALID, product: FND - Application Object Library , description: All Activity History , implementation_dba_data: APPS.WF_ITEM_ACTIVITIES_HISTORY_V ,