Search Results next_audit_date
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_LATEST_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_REV_ORG_V, object_name:AMW_LATEST_REV_ORG_V, status:VALID,
-
VIEW: APPS.AMW_INACTIVE_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_INACTIVE_REV_ORG_V, object_name:AMW_INACTIVE_REV_ORG_V, 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_PROCESS_HIERARCHY_V
12.1.1
-
VIEW: APPS.AMW_CURR_APPROVED_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APPROVED_REV_ORG_V, object_name:AMW_CURR_APPROVED_REV_ORG_V, status:VALID,
-
Lookup Type: AMW_PROC_ATTRIBUTE_NAMES
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , meaning: AMW Process Attribute Names , description: Process Attribute Names ,
-
Lookup Type: AMW_PROC_ATTRIBUTE_NAMES
12.1.1
product: AMW - Internal Controls Manager , meaning: AMW Process Attribute Names , description: Process Attribute Names ,
-
View: AMW_INACTIVE_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_INACTIVE_REV_ORG_V, object_name:AMW_INACTIVE_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for end dated organization process revisions , implementation_dba_data: APPS.AMW_INACTIVE_REV_ORG_V ,
-
View: AMW_CURR_APPROVED_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APPROVED_REV_ORG_V, object_name:AMW_CURR_APPROVED_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for current approved organization process revisions , implementation_dba_data: APPS.AMW_CURR_APPROVED_REV_ORG_V ,
-
View: AMW_LATEST_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_REV_ORG_V, object_name:AMW_LATEST_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for all the latest revisions of organization processes. , implementation_dba_data: APPS.AMW_LATEST_REV_ORG_V ,
-
View: AMW_LATEST_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for all the latest revisions of organization processes. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_CURR_APPROVED_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for current approved organization process revisions , implementation_dba_data: Not implemented in this database ,
-
View: AMW_INACTIVE_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for end dated organization process revisions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_PROCESS_ORG_BASICINFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORG_BASICINFO_V, object_name:AMW_PROCESS_ORG_BASICINFO_V, status:VALID,
-
View: AMW_PROCESS_ORG_BASICINFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORG_BASICINFO_V, object_name:AMW_PROCESS_ORG_BASICINFO_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns Basic information about Process Organization , implementation_dba_data: APPS.AMW_PROCESS_ORG_BASICINFO_V ,
-
View: AMW_PROCESS_ORG_BASICINFO_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns Basic information about Process Organization , implementation_dba_data: Not implemented in this database ,
-
TABLE: AMW.AMW_PROCESS_ORGANIZATION
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESS_ORGANIZATION, object_name:AMW_PROCESS_ORGANIZATION, status:VALID,
-
PACKAGE: APPS.AMW_PROC_ORG_HIERARCHY_PVT
12.1.1
-
APPS.AMW_PROC_ORG_HIERARCHY_PVT SQL Statements
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG SQL Statements
12.1.1
-
APPS.AMW_PROC_ORG_HIERARCHY_PVT dependencies on FND_API
12.1.1
-
PACKAGE BODY: APPS.AMW_ORG_HIERARCHY_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_PROC_ORG_HIERARCHY_PVT
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 ,