Search Results wf_items_v
Overview
WF_ITEMS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, classified under the FND — Application Object Library product. Its documented purpose is simply to present a view of WF_ITEMS, the core Workflow runtime item table. In Oracle Workflow, an "item" is the fundamental unit of a running workflow process instance. Each time a business event triggers a workflow — an order being booked, an approval being routed, an expense report being submitted — Workflow creates an item row that tracks that instance from initiation to completion.
WF_ITEMS_V therefore exposes the entire population of workflow item instances across the EBS instance, together with the hierarchical relationships between parent and child items. Its role in reporting and integration is to provide a stable, read-friendly projection of WF_ITEMS that developers and analysts can query for process monitoring, activity auditing, custom dashboarding, and integration extracts. Because it is a thin projection rather than a complex join, it carries a low performance overhead relative to base-table access while offering a cleaner interface for ad hoc SQL and BI Publisher data sources.
For users searching on parent_item_type, this view is the canonical place to resolve that column: it surfaces parent-child item relationships that are otherwise buried in the runtime item table, making it the practical entry point for questions about sub-processes, spawned items, and hierarchical workflow structures.
Underlying Base Objects
The documented base object behind WF_ITEMS_V is a single object: WF_ITEMS, exposed within the APPS schema as a synonym. There are no joins, unions, or aggregations in the view text. The projection is a straight, column-for-column selection of eleven columns from WF_ITEMS:
- ITEM_TYPE
- ITEM_KEY
- USER_KEY
- ROOT_ACTIVITY
- ROOT_ACTIVITY_VERSION
- OWNER_ROLE
- PARENT_ITEM_TYPE
- PARENT_ITEM_KEY
- PARENT_CONTEXT
- BEGIN_DATE
- END_DATE
Because the view adds no filtering and no derived columns, every row in WF_ITEMS_V corresponds one-to-one with a row in WF_ITEMS. Any predicate applied to the view is passed down to the base table, and any index on WF_ITEMS (notably the primary key on ITEM_TYPE plus ITEM_KEY) benefits queries against the view equally. The practical consequence is that WF_ITEMS_V is a naming and abstraction convenience: it isolates consumers from direct dependency on the runtime table while preserving its exact semantics.
Key Columns
The ITEM_TYPE and ITEM_KEY columns together form the unique identifier of a workflow item instance. ITEM_TYPE names the workflow definition (for example, an order or approval process), while ITEM_KEY is the internal instance key within that definition.
USER_KEY is the externally meaningful identifier of the item — typically the primary key of the underlying business entity, such as an order number, invoice identifier, or employee reference. This column is what links a workflow instance back to the transactional record it governs.
ROOT_ACTIVITY and ROOT_ACTIVITY_VERSION identify the top-level activity that initiated the item, allowing queries to group instances by entry point. OWNER_ROLE records the role responsible for the item.
The parent_item_type column, together with PARENT_ITEM_KEY and PARENT_CONTEXT, defines the item's position in a hierarchy. When an item is a sub-process or spawned child, PARENT_ITEM_TYPE holds the item type of the parent instance and PARENT_ITEM_KEY holds that parent's key. For top-level items these columns are null. This trio is the documented mechanism for traversing workflow item trees.
BEGIN_DATE and END_DATE delimit the item's lifetime. A null END_DATE indicates an item still in progress; a populated END_DATE indicates completion.
Common Use Cases and Queries
Typical scenarios include locating the workflow instances associated with a business document, identifying long-running or stalled items, tracing sub-process hierarchies, and feeding workflow status into custom reports or integrations.
To find all items linked to a specific business key:
SELECT item_type, item_key, user_key, begin_date, end_date FROM wf_items_v WHERE user_key = :p_user_key;
To identify all child items spawned by a given parent, using the column the user searched for:
SELECT item_type, item_key, parent_item_type, parent_item_key FROM wf_items_v WHERE parent_item_type = :p_parent_type AND parent_item_key = :p_parent_key;
To find top-level (root) items only, filter on a null parent reference:
SELECT item_type, item_key, user_key, begin_date FROM wf_items_v WHERE parent_item_type IS NULL;
To retrieve still-open items for monitoring:
SELECT item_type, item_key, user_key, owner_role, begin_date FROM wf_items_v WHERE end_date IS NULL AND begin_date < SYSDATE - :p_days;
Because the view mirrors WF_ITEMS exactly, these queries benefit from the base table's indexes and can be combined with WF_ITEM_ACTIVITY_STATUSES queries using ITEM_TYPE and ITEM_KEY to produce full runtime audit reports.
-
View: WF_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEMS_V, object_name:WF_ITEMS_V, status:VALID, product: FND - Application Object Library , description: View of WF_ITEMS , implementation_dba_data: APPS.WF_ITEMS_V ,
-
View: WF_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEMS_V, object_name:WF_ITEMS_V, status:VALID, product: FND - Application Object Library , description: View of WF_ITEMS , implementation_dba_data: APPS.WF_ITEMS_V ,
-
APPS.ZPB_EXCEPTION_ALERT SQL Statements
12.1.1
-
APPS.PA_AUTOALLOC_UTLS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_AUTOALLOC_UTLS
12.1.1
-
APPS.PA_AUTOALLOC_UTLS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_AUTOALLOC_UTLS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_AUTOALLOC_UTLS, status:VALID,
-
PACKAGE BODY: APPS.PA_AUTOALLOC_UTLS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_AUTOALLOC_UTLS, status:VALID,
-
PACKAGE BODY: APPS.PA_AUTOALLOC_UTLS
12.2.2
-
PACKAGE BODY: APPS.PSP_ROLLBACK_EFF_REPORTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_ROLLBACK_EFF_REPORTS, status:VALID,
-
PACKAGE BODY: APPS.OKC_ARTWF_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_ARTWF_PVT, status:VALID,
-
PACKAGE BODY: APPS.MSD_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_WF, status:VALID,
-
PACKAGE BODY: APPS.PSP_ROLLBACK_EFF_REPORTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSP_ROLLBACK_EFF_REPORTS, status:VALID,
-
PACKAGE BODY: APPS.MSD_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_WF, status:VALID,
-
PACKAGE BODY: APPS.PO_PDOI_PRICE_TOLERANCE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PO_PDOI_PRICE_TOLERANCE_PVT, status:VALID,
-
PACKAGE BODY: APPS.XDP_INTERFACES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_INTERFACES, status:VALID,
-
PACKAGE BODY: APPS.PO_PDOI_PRICE_TOLERANCE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PO_PDOI_PRICE_TOLERANCE_PVT, status:VALID,
-
PACKAGE BODY: APPS.XDP_UTILITIES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.ZPB_EXCEPTION_ALERT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ZPB_EXCEPTION_ALERT, status:VALID,
-
PACKAGE BODY: APPS.OE_VALIDATE_HEADER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_VALIDATE_HEADER, status:VALID,
-
PACKAGE BODY: APPS.OKC_ARTWF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_ARTWF_PVT, status:VALID,
-
PACKAGE BODY: APPS.XDP_UTILITIES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.PO_LINES_SV4_832_UPDATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PO_LINES_SV4_832_UPDATE, status:VALID,
-
PACKAGE BODY: APPS.XDP_INTERFACES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XDP_INTERFACES, status:VALID,
-
PACKAGE BODY: APPS.PO_APPROVAL_REMINDER_SV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PO_APPROVAL_REMINDER_SV, status:VALID,
-
PACKAGE BODY: APPS.PO_APPROVAL_REMINDER_SV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PO_APPROVAL_REMINDER_SV, status:VALID,
-
PACKAGE BODY: APPS.ZPB_AC_OPS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ZPB_AC_OPS, status:VALID,
-
PACKAGE BODY: APPS.ZPB_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ZPB_WF, status:VALID,
-
PACKAGE BODY: APPS.OE_VALIDATE_HEADER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_VALIDATE_HEADER, status:VALID,
-
PACKAGE BODY: APPS.AMS_APPROVAL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_APPROVAL_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMS_APPROVAL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_APPROVAL_PVT, status:VALID,
-
VIEW: APPS.WF_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEMS_V, object_name:WF_ITEMS_V, status:VALID,
-
APPS.ZPB_WF SQL Statements
12.1.1
-
APPS.MSD_WF SQL Statements
12.1.1
-
APPS.MSD_WF SQL Statements
12.2.2
-
VIEW: APPS.WF_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEMS_V, object_name:WF_ITEMS_V, status:VALID,
-
PACKAGE BODY: APPS.OE_VALIDATE_LINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_VALIDATE_LINE, status:VALID,
-
APPS.PSP_ROLLBACK_EFF_REPORTS SQL Statements
12.1.1
-
APPS.PO_PDOI_PRICE_TOLERANCE_PVT SQL Statements
12.2.2
-
APPS.PO_PDOI_PRICE_TOLERANCE_PVT SQL Statements
12.1.1
-
APPS.PSP_ROLLBACK_EFF_REPORTS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OE_VALIDATE_LINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_VALIDATE_LINE, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PSP_ROLLBACK_EFF_REPORTS
12.2.2
-
PACKAGE BODY: APPS.PSP_ROLLBACK_EFF_REPORTS
12.1.1
-
APPS.XDP_UTILITIES SQL Statements
12.2.2
-
APPS.XDP_UTILITIES SQL Statements
12.1.1
-
APPS.PO_APPROVAL_REMINDER_SV SQL Statements
12.2.2
-
APPS.PO_APPROVAL_REMINDER_SV SQL Statements
12.1.1