Search Results application_owner_id
Overview
AMW_WF_HIERARCHY_MAIN_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AMW — Internal Controls Manager product. The view exposes the parent-child process hierarchy used by Internal Controls Manager's workflow-driven process library, returning one row per parent process / child activity pairing along with a substantial set of descriptive and status attributes for the process itself. Because AMW's process hierarchy is modelled on the Workflow (WF) engine, the view resolves the relationship between a parent workflow process and the child subprocess or activity nested beneath it, then enriches that relationship with process metadata such as ownership, approval status, certification status, risk and control counts, and organisation counts.
The view is read-oriented and is typically consumed by OAF-based AMW pages, risk library listings, and custom extracts that need to report on the control framework. Its relevance to a search on application_owner_id is direct: the column APPLICATION_OWNER_ID is projected by this view, joined to HZ_PARTIES to resolve the application owner's display name, and is distinct from PROCESS_OWNER_ID, which identifies the process owner.
Underlying Base Objects
The documented view text is defined over WF_PROCESS_ACTIVITIES (aliased WPA), which supplies the parent process name and item type together with the child activity name and item type; and over AMW process tables (aliased AMWP) that supply the process revision, process identifier, flags, counts, statuses, and owner identifiers. Party names are resolved through two aliases of HZ_PARTIES — HZP1 for PROCESS_OWNER_NAME and HZP2 for APPLICATION_OWNER_NAME. Lookup meanings are resolved through AMW_UTILITY_PVT.GET_LOOKUP_MEANING against lookup types AMW_CERTIFICATION_STATUS, AMW_PROCESS_APPROVAL_STATUS, and AMW_PROCESS_CATEGORY. Transition ordering is computed by AMW_WF_HIERARCHY_PKG.FIND_TRANSITION_ORDER. Subqueries against WF_PROCESS_ACTIVITIES derive the maximum INSTANCE_ID for each parent/child combination, which is then passed to the hierarchy package. No base objects are separately documented in the ETRM metadata for this view beyond the text above.
Key Columns
- PARENT_PROCESS_NAME / PARENT_ITEM_TYPE and CHILD_PROCESS_NAME / CHILD_ITEM_TYPE — the workflow identity pairs that define the hierarchy edge.
- INSTANCE_ID and TRANSITION_REVERSE_ORDER — the maximum workflow activity instance for the edge and its computed reverse transition order.
- PROCESS_REV_ID / PROCESS_ID — AMW process revision and process identifiers.
- PROCESS_DISPLAY_NAME — the translated display name of the process.
- SIGNIFICANT_PROCESS_FLAG / STANDARD_PROCESS_FLAG — classification flags on the AMW process.
- APPROVAL_STATUS / APPROVAL_STATUS_MEANING and CERTIFICATION_STATUS_CODE / CERTIFICATION_STATUS — coded and decoded approval and certification states.
- RISK_COUNT / CONTROL_COUNT / ORG_COUNT — aggregated counts of risks, controls, and organisations associated with the process.
- PROCESS_OWNER_ID / PROCESS_OWNER_NAME — the process owner and resolved party name.
- APPLICATION_OWNER_ID / APPLICATION_OWNER_NAME — the application owner identifier and resolved party name, the key pairing for searches on
application_owner_id. - PROCESS_CATEGORY / PROCESS_CATEGORY_MEANING — the process category code and its lookup meaning.
- DECODE(...) — a computed navigation URL used to launch the AMW risk library process page in the OAF framework.
Common Use Cases and Queries
Typical scenarios include reporting the full parent-child process tree for audit and SOX documentation, listing processes by application owner, and reconciling AMW risk and control counts against the process library.
- Identify all processes for a given application owner:
SELECT parent_process_name, child_process_name, process_display_name, application_owner_name FROM apps.amw_wf_hierarchy_main_v WHERE application_owner_id = :p_application_owner_id; - Drill from an application owner down to approval and certification state:
SELECT application_owner_name, process_display_name, approval_status_meaning, certification_status, risk_count, control_count FROM apps.amw_wf_hierarchy_main_v WHERE application_owner_id IS NOT NULL ORDER BY application_owner_name, process_display_name; - Report the hierarchy with transition ordering for a single parent process:
SELECT parent_process_name, child_process_name, transition_reverse_order, instance_id FROM apps.amw_wf_hierarchy_main_v WHERE parent_process_name = :p_parent_process ORDER BY transition_reverse_order;
Because the view performs correlated subqueries and function calls per row, queries should be filtered by parent process, process ID, or owner where possible to limit full scans of the underlying workflow activity data.
-
View: AMW_WF_HIERARCHY_MAIN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WF_HIERARCHY_MAIN_V, object_name:AMW_WF_HIERARCHY_MAIN_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns the Details about Parent Child Process Hierarchy , implementation_dba_data: APPS.AMW_WF_HIERARCHY_MAIN_V ,
-
View: AMW_PROCESS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_VL, object_name:AMW_PROCESS_VL, status:VALID, product: AMW - Internal Controls Manager , description: View for risk library process , implementation_dba_data: APPS.AMW_PROCESS_VL ,
-
View: AMW_WF_HIERARCHY_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WF_HIERARCHY_ENTITIES_V, object_name:AMW_WF_HIERARCHY_ENTITIES_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns the Details about Process , implementation_dba_data: APPS.AMW_WF_HIERARCHY_ENTITIES_V ,
-
View: AMW_HIERARCHY_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_HIERARCHY_ENTITIES_V, object_name:AMW_HIERARCHY_ENTITIES_V, status:VALID, product: AMW - Internal Controls Manager , description: Lists process details from amw_process and workflow tables , implementation_dba_data: APPS.AMW_HIERARCHY_ENTITIES_V ,
-
View: AMW_ORG_PROCESS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_PROCESS_VL, object_name:AMW_ORG_PROCESS_VL, status:VALID, product: AMW - Internal Controls Manager , description: stores the process inforamtion within organizations , implementation_dba_data: APPS.AMW_ORG_PROCESS_VL ,
-
View: AMW_PROCESS_ORGANIZATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORGANIZATION_VL, object_name:AMW_PROCESS_ORGANIZATION_VL, status:VALID, product: AMW - Internal Controls Manager , description: AMW_PROCESS_NAMES_VL is a view that joins the translated, languagespecific values from AMW_PROCESS_NAMES_TL with the non-displayeddata from AMW_ORGANIZATION_PROCESS to form complete organization process entities. , implementation_dba_data: APPS.AMW_PROCESS_ORGANIZATION_VL ,
-
View: AMW_PROCESS_BASICINFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_BASICINFO_V, object_name:AMW_PROCESS_BASICINFO_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns basic information about Process , implementation_dba_data: APPS.AMW_PROCESS_BASICINFO_V ,
-
View: AMW_CURRENT_APPRVD_REV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURRENT_APPRVD_REV_V, object_name:AMW_CURRENT_APPRVD_REV_V, status:VALID, product: AMW - Internal Controls Manager , description: View for current approved process revisions. , implementation_dba_data: APPS.AMW_CURRENT_APPRVD_REV_V ,
-
View: AMW_DELETED_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_DELETED_REVISIONS_V, object_name:AMW_DELETED_REVISIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: View for all the deleted revisions of risk library processes. , implementation_dba_data: APPS.AMW_DELETED_REVISIONS_V ,
-
View: AMW_INACTIVE_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_INACTIVE_REVISIONS_V, object_name:AMW_INACTIVE_REVISIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: View for end dated process revisions. , implementation_dba_data: APPS.AMW_INACTIVE_REVISIONS_V ,
-
View: AMW_LATEST_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_REVISIONS_V, object_name:AMW_LATEST_REVISIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: View for latest revisions of risk library processes , implementation_dba_data: APPS.AMW_LATEST_REVISIONS_V ,
-
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 ,