Search Results process_owner_id
Overview
APPS.AMW_ORG_RELATIONS_V is a reporting view in the Oracle E-Business Suite Audit Management (formerly Enterprise Territory and Resource Management / ETRM) module. It exposes the parent-child hierarchy that exists between audit processes (also referred to as processes or audit units) within a given operating unit or organization. The view joins the process relationship table to the process basic-information view twice — once for the parent side and once for the child side — to translate internal numeric identifiers into readable names and descriptive attributes.
Its primary role is to surface the organizational structure of audit processes so that reports, dashboards, and OAF (Oracle Application Framework) pages can present a drillable hierarchy. Because the view embeds context-sensitive URL strings, it is also used by the application tier to build navigation links directly to process detail pages, risk tabs, and control tabs. The column significant_process_flag identifies whether a process has been flagged as significant for audit-planning purposes, which drives prioritization and coverage analysis.
Underlying Base Objects
The view is defined over the following objects:
- AMW_PROCESS_ORG_RELATIONS apor — the relationship (edge) table holding
parent_process_id,child_process_id,instance_id, andorganization_id. - AMW_PROCESS_ORG_BASICINFO_V apobv1 — aliased as the parent side, joined on
organization_idandprocess_id = parent_process. - AMW_PROCESS_ORG_BASICINFO_V apobv2 — aliased as the child side, supplying the descriptive columns for the child process.
- AMW_WF_HIERARCHY_PKG.find_transition_order — a PL/SQL function returning the reverse transition order of the hierarchy instance.
- AMW_Utility_PVT.get_proc_org_opinion_status — returns the certification status opinion for the child process within its organization.
The metadata provided documents no additional base tables directly; the view derives its descriptive attributes entirely from the process-organization basic-info view, which itself resolves party names, risk counts, and control counts.
Key Columns
PARENT_PROCESS_NAME/CHILD_PROCESS_NAME— readable names of the parent and child processes.PARENT_PROCESS_ID/CHILD_PROCESS_ID— numeric identifiers for the hierarchy edges.INSTANCE_ID— identifies the hierarchy instance to which the relationship belongs.TRANSITION_REVERSE_ORDER— computed ordering value used to sequence the hierarchy.SIGNIFICANT_PROCESS_FLAG— indicates whether the child process is designated significant, the column referenced by the search query.STANDARD_PROCESS_FLAG,APPROVAL_STATUS,CERTIFICATION_STATUS,CERTIFICATION_STATUS_CODE— lifecycle and compliance attributes.RISK_COUNT,CONTROL_COUNT— aggregate counts of associated risks and controls.PROCESS_OWNER_ID,PROCESS_OWNER_NAME— the responsible owner.ORG_NAME,PROCESS_ORG_ID,PROCESS_ID— organizational context and identifiers.URLSTRING,RISKCNTURL,CTRLCNTURL— pre-built OAF navigation links.
Common Use Cases and Queries
A frequent requirement is to isolate hierarchy edges whose child process carries the significant flag, for coverage or audit-scope reporting:
SELECT parent_process_name,
child_process_name,
significant_process_flag,
risk_count,
control_count,
org_name
FROM apps.amw_org_relations_v
WHERE significant_process_flag = 'Y'
ORDER BY parent_process_name, child_process_name;
Another common pattern is navigating the hierarchy for a specific instance or organization to render an indented process tree in a dashboard:
SELECT LPAD(' ', 2 * (LEVEL - 1)) || child_process_name process_name,
transition_reverse_order
FROM apps.amw_org_relations_v
WHERE instance_id = :instance_id
CONNECT BY PRIOR child_process_id = parent_process_id
START WITH parent_process_id IS NULL
ORDER SIBLINGS BY transition_reverse_order;
Because the view also exposes certification status and URLs, it supports compliance reporting on which significant processes remain uncertified, and it supplies the OAF links used when building custom or extended audit-management pages. In all cases queries should be schema-qualified and executed under an APPS-enabled responsibility consistent with standard EBS security practice.
-
VIEW: APPS.AMW_ORG_RELATIONS_V
12.1.1
-
View: AMW_ORG_RELATIONS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores Information of organization relations , implementation_dba_data: Not implemented in this database ,
-
View: AMW_ORG_RELATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_RELATIONS_V, object_name:AMW_ORG_RELATIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: Stores Information of organization relations , implementation_dba_data: APPS.AMW_ORG_RELATIONS_V ,
-
View: AMW_ORG_HIERARCHY_ENTITIES_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_PROCESS_ALL_VL
12.1.1
-
View: AMW_PROCESS_ALL_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: AMW_ORG_HIERARCHY_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_HIERARCHY_ENTITIES_V, object_name:AMW_ORG_HIERARCHY_ENTITIES_V, status:VALID, product: AMW - Internal Controls Manager , description: Obsolete , implementation_dba_data: APPS.AMW_ORG_HIERARCHY_ENTITIES_V ,
-
View: AMW_PROCESS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ALL_VL, object_name:AMW_PROCESS_ALL_VL, status:VALID, product: AMW - Internal Controls Manager , description: Obsolete , implementation_dba_data: APPS.AMW_PROCESS_ALL_VL ,
-
VIEW: APPS.AMW_ORG_HIERARCHY_ENTITIES_V
12.1.1
-
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 ,
-
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: APPS.AMW_ORG_HIERARCHY_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_HIERARCHY_ENTITIES_V, object_name:AMW_ORG_HIERARCHY_ENTITIES_V, status:VALID,
-
VIEW: APPS.AMW_PROCESS_VL
12.1.1
-
View: AMW_PROCESS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for risk library process , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_WF_ORG_HIERARCHY_MAIN_V
12.1.1
-
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_WF_HIERARCHY_MAIN_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns the Details about Parent Child Process Hierarchy , implementation_dba_data: Not implemented in this database ,
-
View: AMW_HIERARCHY_ENTITIES_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Lists process details from amw_process and workflow tables , implementation_dba_data: Not implemented in this database ,
-
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: APPS.AMW_PROCESS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ALL_VL, object_name:AMW_PROCESS_ALL_VL, status:VALID,
-
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: APPS.AMW_WF_HIERARCHY_MAIN_V
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.AMW_ORG_RELATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_RELATIONS_V, object_name:AMW_ORG_RELATIONS_V, status:VALID,
-
VIEW: APPS.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,
-
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: AMW_WF_HIERARCHY_ENTITIES_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns the Details about Process , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.AMW_HIERARCHY_ENTITIES_V
12.1.1
-
VIEW: APPS.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,
-
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: APPS.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,
-
VIEW: APPS.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,
-
View: AMW_CURRENT_APPRVD_REV_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for current approved process revisions. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
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_ORG_PROCESS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: stores the process inforamtion within organizations , implementation_dba_data: Not implemented in this database ,
-
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.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for end dated process revisions. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_PROCESS_BASICINFO_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This view returns basic information about Process , implementation_dba_data: Not implemented in this database ,
-
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_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_DELETED_REVISIONS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for all the deleted revisions of risk library processes. , implementation_dba_data: Not implemented in this database ,