Search Results wf_runnable_processes_v
Overview
The WF_RUNNABLE_PROCESSES_V view is an Oracle E-Business Suite database object owned by the APPS schema and categorized under the FND – Application Object Library product. It exposes the complete set of workflow process definitions that have been flagged as runnable, meaning each row represents a process that the Oracle Workflow engine is permitted to execute at runtime. Because Oracle Workflow underpins approval routing, notifications, and business event handling across 12.1.1 and 12.2.2, this view serves as the authoritative reference for identifying which processes can be launched programmatically through Workflow APIs such as WF_ENGINE.CreateProcess and WF_ENGINE.StartProcess.
Rather than querying the underlying activity definition tables directly, developers and functional analysts use this view to obtain a clean, filtered list of active process definitions. It abstracts the complexity of date-effective and multilingual storage in the base tables, returning only those processes whose effective date range includes the current system date.
Underlying Base Objects
The view is defined over a single documented base object: WF_ACTIVITIES_VL, itself a view in the APPS schema. WF_ACTIVITIES_VL is the translated (VL, or "view with language") representation of workflow activity definitions, combining the language-independent activity data with language-specific display names. The WF_RUNNABLE_PROCESSES_V definition applies three filters against this source:
RUNNABLE_FLAG = 'Y'— restricts output to activities explicitly marked runnable.TYPE = 'PROCESS'— excludes other activity types such as functions, notifications, and events, returning only process definitions.SYSDATE BETWEEN BEGIN_DATE AND NVL(END_DATE, SYSDATE)— enforces date-effective validity, treating a null end date as open-ended.
Key Columns
The view projects three columns from the base object:
- ITEM_TYPE — the internal name of the workflow item type that owns the process. This identifies the business object or functional area (for example, an order or requisition item type) to which the process belongs.
- PROCESS_NAME — the internal, language-independent name of the runnable process. This is the identifier passed to Workflow engine APIs when launching the process.
- DISPLAY_NAME — the translated, user-facing label for the process, suitable for presentation in concurrent program parameters, custom forms, or reporting output.
The combination of ITEM_TYPE and PROCESS_NAME forms the logical key used to reference a process in integration code.
Common Use Cases and Queries
Typical uses include validating a process name before invoking Workflow APIs, populating a list of values for a custom concurrent program, and auditing which processes are currently runnable for a given item type. A representative query listing all runnable processes for a specific item type is:
SELECT item_type, process_name, display_name FROM wf_runnable_processes_v WHERE item_type = :p_item_type ORDER BY process_name;SELECT item_type, COUNT(*) FROM wf_runnable_processes_v GROUP BY item_type ORDER BY item_type;
Because the view depends on SYSDATE, results reflect only processes valid as of the query execution date, which is important when troubleshooting date-effective changes to workflow definitions.
-
View: WF_RUNNABLE_PROCESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_RUNNABLE_PROCESSES_V, object_name:WF_RUNNABLE_PROCESSES_V, status:VALID, product: FND - Application Object Library , description: All runnable processes , implementation_dba_data: APPS.WF_RUNNABLE_PROCESSES_V ,
-
View: WF_RUNNABLE_PROCESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_RUNNABLE_PROCESSES_V, object_name:WF_RUNNABLE_PROCESSES_V, status:VALID, product: FND - Application Object Library , description: All runnable processes , implementation_dba_data: APPS.WF_RUNNABLE_PROCESSES_V ,
-
VIEW: APPS.JTF_LOOKUPS_BRM_WF_V
12.1.1
-
VIEW: APPS.OKE_CHG_LOGS_V
12.1.1
-
VIEW: APPS.OKE_WORKFLOWS_V
12.2.2
-
VIEW: APPS.OKE_WORKFLOWS_V
12.1.1
-
VIEW: APPS.OKE_CHG_LOGS_V
12.2.2
-
VIEW: APPS.OKE_HOLD_STATUSES_VL
12.2.2
-
VIEW: APPS.JTF_LOOKUPS_BRM_WF_V
12.2.2
-
VIEW: APPS.OKE_CHG_STATUSES_VL
12.1.1
-
APPS.AHL_WF_MAPPING_PVT SQL Statements
12.1.1
-
VIEW: APPS.AHL_WF_MAPPING_V
12.1.1
-
VIEW: APPS.AHL_WF_MAPPING_V
12.2.2
-
VIEW: APPS.OKE_COMM_ACTIONS_VL
12.1.1
-
VIEW: APPS.OKE_COMM_ACTIONS_VL
12.2.2
-
APPS.AHL_WF_MAPPING_PVT SQL Statements
12.2.2
-
APPS.OTA_LRNR_ENROLL_UNENROLL_WF SQL Statements
12.2.2
-
VIEW: APPS.CSD_FLOW_STATUS_RULES_V
12.1.1
-
VIEW: APPS.OKE_CHG_STATUSES_VL
12.2.2
-
VIEW: APPS.OKE_HOLD_STATUSES_VL
12.1.1
-
APPS.OTA_LRNR_ENROLL_UNENROLL_WF SQL Statements
12.1.1
-
VIEW: APPS.CSD_BULLETINS_V
12.1.1
-
VIEW: APPS.CSD_BULLETINS_V
12.2.2
-
VIEW: APPS.CSD_FLOW_STATUS_RULES_V
12.2.2
-
PACKAGE BODY: APPS.FND_FLEX_WF_PROCESSES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_FLEX_WF_PROCESSES, status:VALID,
-
PACKAGE: APPS.HR_WORKFLOW_SS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_WORKFLOW_SS, status:VALID,
-
View: JTF_LOOKUPS_BRM_WF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_LOOKUPS_BRM_WF_V, object_name:JTF_LOOKUPS_BRM_WF_V, status:VALID, product: JTF - CRM Foundation , description: View used to select workflow processes in JTFBRWKB form , implementation_dba_data: APPS.JTF_LOOKUPS_BRM_WF_V ,
-
View: OKE_CHG_LOGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_CHG_LOGS_V, object_name:OKE_CHG_LOGS_V, status:VALID, product: OKE - Project Contracts , description: View for change request logs , implementation_dba_data: APPS.OKE_CHG_LOGS_V ,
-
PACKAGE BODY: APPS.CS_SR_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.FND_FLEX_WF_PROCESSES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_FLEX_WF_PROCESSES, status:VALID,
-
View: JTF_LOOKUPS_BRM_WF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_LOOKUPS_BRM_WF_V, object_name:JTF_LOOKUPS_BRM_WF_V, status:VALID, product: JTF - CRM Foundation , description: View used to select workflow processes in JTFBRWKB form , implementation_dba_data: APPS.JTF_LOOKUPS_BRM_WF_V ,
-
PACKAGE BODY: APPS.PQH_RANK_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_RANK_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.CS_WORKFLOW_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_WORKFLOW_PKG, status:VALID,
-
View: OKE_CHG_LOGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_CHG_LOGS_V, object_name:OKE_CHG_LOGS_V, status:VALID, product: OKE - Project Contracts , description: View for change request logs , implementation_dba_data: APPS.OKE_CHG_LOGS_V ,
-
PACKAGE BODY: APPS.CS_SR_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_UTIL_PKG, status:VALID,
-
PACKAGE: APPS.HR_WORKFLOW_SS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_WORKFLOW_SS, status:VALID,
-
View: AHL_WF_MAPPING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_WF_MAPPING_V, object_name:AHL_WF_MAPPING_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Work flow information , implementation_dba_data: APPS.AHL_WF_MAPPING_V ,
-
PACKAGE BODY: APPS.JTF_TASK_WORKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.AHL_WF_MAPPING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_WF_MAPPING_PVT, status:VALID,
-
PACKAGE BODY: APPS.PQH_RANK_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_RANK_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.WF_ACTIVITIES_VL_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WF_ACTIVITIES_VL_PUB, status:VALID,
-
PACKAGE BODY: APPS.AHL_WF_MAPPING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_WF_MAPPING_PVT, status:VALID,
-
PACKAGE BODY: APPS.WF_INITIATE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WF_INITIATE, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_WORKFLOW_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TASK_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.WF_INITIATE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WF_INITIATE, status:VALID,
-
PACKAGE BODY: APPS.WF_ACTIVITIES_VL_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WF_ACTIVITIES_VL_PUB, status:VALID,
-
PACKAGE BODY: APPS.OTA_LP_NOTIFY_SS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_LP_NOTIFY_SS, status:VALID,
-
PACKAGE BODY: APPS.OTA_LRNR_ENROLL_UNENROLL_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_LRNR_ENROLL_UNENROLL_WF, status:VALID,
-
PACKAGE BODY: APPS.OTA_LP_NOTIFY_SS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_LP_NOTIFY_SS, status:VALID,
-
View: AHL_WF_MAPPING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_WF_MAPPING_V, object_name:AHL_WF_MAPPING_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Work flow information , implementation_dba_data: APPS.AHL_WF_MAPPING_V ,