Search Results wf_activities_vl
Overview
WF_ACTIVITIES_VL is a language (translated) view owned by the APPS schema in Oracle E-Business Suite, defined in the FND – Application Object Library product. It functions as the translatable, user-facing representation of the Workflow Activities definition maintained by Oracle Workflow. Workflow activities are the discrete executable units that a workflow process invokes at each node, and WF_ACTIVITIES_VL exposes their technical attributes alongside language-dependent display text, allowing reports, forms, and integration programs to present activity information in the session's current language.
Because it is a view rather than a table, WF_ACTIVITIES_VL does not store data of its own. Instead it resolves the language-specific display name and description at runtime, which is the standard Oracle EBS multilanguage pattern. This makes the view the preferred access point for any query that must surface activity labels to end users, while the underlying base table remains the appropriate choice for bulk technical processing. The view is documented as a VALID object in Oracle EBS Release 12.1.1 and 12.2.2, and its definition carries a header comment dated 2008/03/14, indicating stability across the 12.x releases.
Underlying Base Objects
The ETRM metadata documents two referenced base objects, both resolved through synonyms in the APPS schema:
- WF_ACTIVITIES – the base table holding the language-independent, technical definition of each activity, aliased as B in the view text.
- WF_ACTIVITIES_TL – the translation table holding the language-dependent DISPLAY_NAME and DESCRIPTION, aliased as T.
The view joins the two tables on the composite key ITEM_TYPE, NAME, and VERSION, and filters the translation table with the condition T.LANGUAGE = USERENV('LANG'). As a result, only the row belonging to the language of the current database session is returned, ensuring the display text matches the user's environment.
Key Columns
The view exposes the ROWID of the base activity row plus a broad set of definitional columns:
- ROW_ID – the ROWID of the WF_ACTIVITIES row, useful for direct row access.
- ITEM_TYPE, NAME, VERSION – the composite identity of the activity within its workflow item type.
- TYPE – classification of the activity, distinguishing standard activities from other node types.
- FUNCTION, FUNCTION_TYPE, RESULT_TYPE – the callable function invoked and the data type of its result.
- RERUN, RUNNABLE_FLAG – controls governing whether the activity may be re-executed and whether it is runnable.
- ROLE columns (EXPAND_ROLE, READ_ROLE, WRITE_ROLE, EXECUTE_ROLE) – role-based access and expansion settings.
- PROTECT_LEVEL, CUSTOM_LEVEL – customization protection and user customization levels.
- BEGIN_DATE, END_DATE – validity window of the activity definition.
- ERROR_PROCESS, ERROR_ITEM_TYPE – error-handling targets.
- EVENT_NAME, DIRECTION – event subscription and direction attributes.
- ICON_NAME, MESSAGE – presentation metadata.
- DISPLAY_NAME, DESCRIPTION – the language-dependent text sourced from WF_ACTIVITIES_TL, which differentiates this view from the base table.
Common Use Cases and Queries
Typical uses include building workflow activity reports, validating activity configurations during upgrades, and diagnosing why an activity label appears in an unexpected language. A basic query lists all activities for a given item type with their translated names:
SELECT ITEM_TYPE, NAME, VERSION, DISPLAY_NAME, TYPE FROM WF_ACTIVITIES_VL WHERE ITEM_TYPE = :item_type;SELECT NAME, DISPLAY_NAME, DESCRIPTION FROM WF_ACTIVITIES_VL WHERE ITEM_TYPE = 'WFSTANDARD' ORDER BY NAME;SELECT NAME, FUNCTION, RESULT_TYPE FROM WF_ACTIVITIES_VL WHERE RUNNABLE_FLAG = 'Y';
Because the language filter is embedded in the view definition, queries against WF_ACTIVITIES_VL automatically return text in the session language, simplifying multilingual reporting without the need to join the translation table explicitly.
-
View: WF_ACTIVITIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ACTIVITIES_VL, object_name:WF_ACTIVITIES_VL, status:VALID, product: FND - Application Object Library , description: Language View for WF_ACTIVITIES , implementation_dba_data: APPS.WF_ACTIVITIES_VL ,
-
View: WF_ACTIVITIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ACTIVITIES_VL, object_name:WF_ACTIVITIES_VL, status:VALID, product: FND - Application Object Library , description: Language View for WF_ACTIVITIES , implementation_dba_data: APPS.WF_ACTIVITIES_VL ,
-
VIEW: APPS.ENG_WF_PROCESS_V
12.1.1
-
VIEW: APPS.ENG_WF_PROCESS_V
12.2.2
-
APPS.BIS_WORKFLOW_PROCESS_PVT SQL Statements
12.1.1
-
VIEW: APPS.WF_ITEM_ACTIVITIES_HISTORY_V
12.1.1
-
VIEW: APPS.WF_ITEM_ACTIVITIES_HISTORY_V
12.2.2
-
APPS.WF_TASKFLOW SQL Statements
12.1.1
-
APPS.WF_TASKFLOW SQL Statements
12.2.2
-
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: APPS.AZ_PROCESS_ACTIVITIES_V
12.2.2
-
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 ,
-
VIEW: APPS.WF_RUNNABLE_PROCESSES_V
12.2.2
-
VIEW: APPS.WF_RUNNABLE_PROCESSES_V
12.1.1
-
APPS.HR_WORKFLOW_UTILITY SQL Statements
12.2.2
-
View: ENG_WF_PROCESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_WF_PROCESS_V, object_name:ENG_WF_PROCESS_V, status:VALID, product: ENG - Engineering , description: Lists of all root proceses for 'ECO_APP' item type , implementation_dba_data: APPS.ENG_WF_PROCESS_V ,
-
VIEW: APPS.AZ_PROCESS_ACTIVITIES_V
12.1.1
-
APPS.HR_WORKFLOW_UTILITY SQL Statements
12.1.1
-
View: ENG_WF_PROCESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_WF_PROCESS_V, object_name:ENG_WF_PROCESS_V, status:VALID, product: ENG - Engineering , description: Lists of all root proceses for 'ECO_APP' item type , implementation_dba_data: APPS.ENG_WF_PROCESS_V ,
-
APPS.HR_MEE_WORKFLOW_SERVICE SQL Statements
12.2.2
-
APPS.HR_MEE_WORKFLOW_SERVICE SQL Statements
12.1.1
-
VIEW: APPS.WF_ITEM_ACTIVITY_STATUSES_V
12.1.1
-
VIEW: APPS.AZ_PROCESSES_ALL_V
12.1.1
-
VIEW: APPS.AZ_PROCESSES_ALL_V
12.2.2
-
VIEW: APPS.WF_ITEM_ACTIVITY_STATUSES_V
12.2.2
-
APPS.AR_CREDIT_MEMO_API_PUB SQL Statements
12.2.2
-
APPS.AR_CREDIT_MEMO_API_PUB SQL Statements
12.1.1
-
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_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_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: AZ_PROCESS_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AZ.AZ_PROCESS_ACTIVITIES_V, object_name:AZ_PROCESS_ACTIVITIES_V, status:VALID, product: AZ - Application Implementation , description: Stores the definition of a Wizard process , implementation_dba_data: APPS.AZ_PROCESS_ACTIVITIES_V ,
-
VIEW: APPS.HXC_APPROVAL_COMPS_V
12.2.2
-
View: AZ_PROCESS_ACTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AZ.AZ_PROCESS_ACTIVITIES_V, object_name:AZ_PROCESS_ACTIVITIES_V, status:VALID, product: AZ - Application Implementation , description: Stores the definition of a Wizard process , implementation_dba_data: APPS.AZ_PROCESS_ACTIVITIES_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.HXC_APPROVAL_COMPS_V
12.1.1
-
PACKAGE BODY: APPS.WF_ACTIVITIES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WF_ACTIVITIES_PKG, status:VALID,
-
APPS.AZW_HIER SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BIS_WORKFLOW_PROCESS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_WORKFLOW_PROCESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.WF_ACTIVITIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WF_ACTIVITIES_PKG, status:VALID,
-
PACKAGE BODY: APPS.WF_TASKFLOW
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WF_TASKFLOW, status:VALID,
-
PACKAGE BODY: APPS.HR_MEE_WORKFLOW_SERVICE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_MEE_WORKFLOW_SERVICE, status:VALID,
-
PACKAGE BODY: APPS.HR_MEE_WORKFLOW_SERVICE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_MEE_WORKFLOW_SERVICE, status:VALID,
-
PACKAGE BODY: APPS.WF_TASKFLOW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WF_TASKFLOW, status:VALID,
-
PACKAGE BODY: APPS.JTF_UM_APPROVAL_REQUESTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_UM_APPROVAL_REQUESTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.HR_WORKFLOW_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_WORKFLOW_UTILITY, status:VALID,
-
APPS.AZW_HIER SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BIS_WORKFLOW_PROCESS_PVT
12.1.1
-
PACKAGE BODY: APPS.HR_WORKFLOW_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_WORKFLOW_UTILITY, status:VALID,
-
PACKAGE BODY: APPS.AZW_FLOW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_FLOW, status:VALID,
-
PACKAGE BODY: APPS.AZW_HIER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AZW_HIER, status:VALID,