Search Results amw_process_hierarchy_v
Overview
AMW_PROCESS_HIERARCHY_V is a reporting view owned by the APPS schema within the Oracle E-Business Suite Internal Controls Manager (AMW) product family. It exposes the parent-child relationships that define the process hierarchy used by Internal Controls Manager, allowing consumers to traverse the structure of business processes modeled in the EBS workflow metadata repository. The view is documented as VALID in both Oracle EBS 12.1.1 and 12.2.2 and returns information about process hierarchy.
Because the object is a view rather than a base table, it presents no persisted data of its own; instead it joins workflow activity definitions with AMW process registrations to produce a flat, query-friendly representation of what is conceptually a tree. This makes it suitable for reporting, ad-hoc SQL, and integration extracts where a hierarchical parent-child listing is required without the caller needing to understand the underlying WF_ACTIVITIES and AMW_PROCESS data model.
Underlying Base Objects
Although the ETRM metadata records no documented base objects, the view text reveals its composition. It is defined over the following dictionary objects:
- AMW_PROCESS (aliased AMWP1 and AMWP2) — the AMW registration of processes, supplying PROCESS_ID, NAME, and ITEM_TYPE for both the parent and child sides of each relationship.
- WF_PROCESS_ACTIVITIES (WPA) — the workflow association table linking a process (PROCESS_ITEM_TYPE, PROCESS_NAME, PROCESS_VERSION) to its constituent activity (ACTIVITY_ITEM_TYPE, ACTIVITY_NAME).
- WF_ACTIVITIES (WA and WA2) — the master activity definitions, used to resolve names, versions, and end dates for parent and child.
- WF_ACTIVITIES_TL (WA_TL and WA_TL1) — the translated activity names, filtered by the session language via USERENV('LANG').
The joins require that parent and child activities are both currently active (WA.END_DATE IS NULL and WA2.END_DATE IS NULL) and that AMW process entries align with workflow activity names and item types. Translated display names are obtained through the language-specific TL tables, ensuring the view returns language-appropriate labels.
Key Columns
- PARENT_PROCESS_ID / CHILD_PROCESS_ID — numeric identifiers of the parent and child processes from AMW_PROCESS.
- PARENT_PROCESS_NAME / PROCESS_NAME — translated display names from WF_ACTIVITIES_TL for the parent and child respectively.
- PARENT_NONDISP_NAME / CHILD_NONDISP_NAME — internal (non-display) activity names from WF_ACTIVITIES.
- PROCESS_ACTIVITY_TYPE — the activity item type of the child, indicating the type of the related process activity.
- PROCESS — a literal 'PROCESS' value used to distinguish this relationship type.
- ORGANIZATION, PROCESSOWNER, CERTIFICATION_STATUS, APPROVAL_STATUS, LAST_AUDIT_STATUS, LAST_AUDIT_DATE, NEXT_AUDIT_DATE — these columns are returned as TO_CHAR(NULL) placeholders, present in the projection but not populated by this view.
Common Use Cases and Queries
Typical usage includes rendering the process hierarchy in custom OAF or BI Publisher reports, driving drill-down navigation in Internal Controls Manager dashboards, and feeding hierarchy data into GRC or audit extracts. A basic query returning the parent-child structure is:
- SELECT parent_process_id, child_process_id, parent_process_name, process_name FROM apps.amw_process_hierarchy_v ORDER BY parent_process_name, process_name;
- SELECT parent_process_name, process_name FROM apps.amw_process_hierarchy_v WHERE parent_process_id = :process_id;
- SELECT process_name, process_activity_type FROM apps.amw_process_hierarchy_v WHERE child_process_id = :child_id;
Because the ORG and status columns are null placeholders, consumers requiring organization, owner, or audit status information must join to the appropriate AMW tables rather than relying on this view alone. The view is best treated as a structural, hierarchy-only projection.
-
View: AMW_PROCESS_HIERARCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_HIERARCHY_V, object_name:AMW_PROCESS_HIERARCHY_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns information about Process Hierarchy , implementation_dba_data: APPS.AMW_PROCESS_HIERARCHY_V ,
-
View: AMW_PROCESS_HIERARCHY_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns information about Process Hierarchy , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_PROCESS_ORG_HIERARCHY_V
12.1.1
-
View: AMW_PROCESS_ORG_HIERARCHY_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns information about Process Organization Hierarchy , implementation_dba_data: Not implemented in this database ,
-
View: AMW_PROCESS_ORG_HIERARCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORG_HIERARCHY_V, object_name:AMW_PROCESS_ORG_HIERARCHY_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns information about Process Organization Hierarchy , implementation_dba_data: APPS.AMW_PROCESS_ORG_HIERARCHY_V ,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.WF_ACTIVITIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_ACTIVITIES_TL, status:VALID,
-
PACKAGE BODY: APPS.AMW_WF_HIERARCHY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_WF_HIERARCHY_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMW_PROC_ORG_HIERARCHY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_PROC_ORG_HIERARCHY_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.AMW_PROCESS_ORG_HIERARCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORG_HIERARCHY_V, object_name:AMW_PROCESS_ORG_HIERARCHY_V, status:VALID,
-
SYNONYM: APPS.AMW_PROCESS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS, status:VALID,
-
VIEW: APPS.AMW_PROCESS_HIERARCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_HIERARCHY_V, object_name:AMW_PROCESS_HIERARCHY_V, status:VALID,
-
VIEW: APPS.AMW_WF_ORG_HIERARCHY_MAIN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WF_ORG_HIERARCHY_MAIN_V, object_name:AMW_WF_ORG_HIERARCHY_MAIN_V, status:VALID,
-
VIEW: APPS.AMW_WF_ORG_HIERARCHY_MAIN_V
12.1.1
-
SYNONYM: APPS.WF_ACTIVITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_ACTIVITIES, status:VALID,
-
View: AMW_WF_ORG_HIERARCHY_MAIN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WF_ORG_HIERARCHY_MAIN_V, object_name:AMW_WF_ORG_HIERARCHY_MAIN_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns the Details about Parent Child Process Hierarchy in Organization Context , implementation_dba_data: APPS.AMW_WF_ORG_HIERARCHY_MAIN_V ,
-
View: AMW_WF_ORG_HIERARCHY_MAIN_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns the Details about Parent Child Process Hierarchy in Organization Context , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_PROC_ORG_HIERARCHY_PVT SQL Statements
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_PROCESS_HIERARCHY_V
12.1.1
-
APPS.AMW_PROC_ORG_HIERARCHY_PVT dependencies on AMW_PROCESS_HIERARCHY_V
12.1.1
-
SYNONYM: APPS.WF_PROCESS_ACTIVITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_PROCESS_ACTIVITIES, status:VALID,
-
PACKAGE BODY: APPS.AMW_PROC_ORG_HIERARCHY_PVT
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG SQL Statements
12.1.1
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,
-
APPS.AMW_PROC_ORG_HIERARCHY_PVT dependencies on AMW_PROCESS
12.1.1
-
APPS.AMW_PROC_ORG_HIERARCHY_PVT dependencies on AMW_PROCESS_ORGANIZATION
12.1.1
-
PACKAGE BODY: APPS.AMW_WF_HIERARCHY_PKG
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_PROCESS
12.1.1
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,
-
12.1.1 DBA Data
12.1.1