Search Results parent_process_id
Overview
AMW_PROCESS_ORG_HIERARCHY_V is a database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AMW — Internal Controls Manager product. Its documented purpose is to return information about the Process Organization Hierarchy. In practice, the view exposes a normalized parent–child relationship between processes and the organizations that own them, allowing reporting and integration components to navigate from a parent process identifier to its child process identifier without repeatedly querying the underlying hierarchy structures. The view carries a VALID status in both Oracle EBS 12.1.1 and 12.2.2, indicating it is a supported, queryable object.
Because Internal Controls Manager relies heavily on process hierarchies for scoping, risk assessment, and control testing, this view acts as a lightweight traversal surface. Rather than exposing the full attribute set of a process, it projects only the two columns required to define edges in the hierarchy graph, which makes it efficient for recursive queries and for populating tree or org-chart style displays in downstream reporting tools.
Underlying Base Objects
The ETRM metadata documents no referenced base tables and lists no separately documented base objects. However, the published view text reveals that AMW_PROCESS_ORG_HIERARCHY_V is defined as a union over the following:
- AMW_PROCESS_HIERARCHY_V — contributes the PARENT_PROCESS_ID and CHILD_PROCESS_ID pairs that represent standard process-to-process hierarchical links.
- AMW_PROCESS_ORG_BASICINFO_V — contributes a synthetic root row. Specifically, the literal value -1 is paired with AMWPOBV.TOP_PROCESS_ID wherever that top process identifier is not null.
The union therefore produces the complete set of parent–child edges: all real hierarchy links plus a synthetic edge that anchors every top-level process to a common root node identified by -1. This design is common in AMW hierarchy views, where a virtual root is useful for rendering a single connected tree.
Key Columns
The view exposes exactly two columns:
- PARENT_PROCESS_ID — the identifier of the parent node in the hierarchy. For real hierarchy rows this value corresponds to an actual AMW process identifier inherited from AMW_PROCESS_HIERARCHY_V. For synthetic root rows it is the constant -1.
- CHILD_PROCESS_ID — the identifier of the child node. This is the column most often referenced when resolving which processes sit beneath a given parent, and it is the column cited in the search term "child_process_id." For synthetic rows it holds AMWPOBV.TOP_PROCESS_ID, i.e., the top process of an organization.
Because the view projects only these two identifiers, consumers must join back to process or organization detail views to obtain names, descriptions, or statuses. The synthetic -1 parent value should be handled explicitly in any query logic, since it does not correspond to a stored process record.
Common Use Cases and Queries
Typical scenarios include recursive expansion of a process tree, determining the immediate children of a process for approval routing, and reconciling process ownership against organizations. To list direct children of a given process:
SELECT child_process_id FROM apps.amw_process_org_hierarchy_v WHERE parent_process_id = :p_process_id;
To retrieve all top-level processes anchored to the synthetic root:
SELECT child_process_id FROM apps.amw_process_org_hierarchy_v WHERE parent_process_id = -1;
For full downward traversal, the view is commonly used inside a CONNECT BY query:
SELECT child_process_id FROM apps.amw_process_org_hierarchy_v START WITH parent_process_id = -1 CONNECT BY PRIOR child_process_id = parent_process_id;
Because only two columns are returned, joins to AMW process master data are required whenever human-readable output is needed. This view is best treated as a navigational index rather than a reporting source in its own right.
-
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 ,
-
View: AMW_CURR_APP_HIERARCHY_RL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APP_HIERARCHY_RL_V, object_name:AMW_CURR_APP_HIERARCHY_RL_V, status:VALID, product: AMW - Internal Controls Manager , description: View for risk library approved process hierarchy , implementation_dba_data: APPS.AMW_CURR_APP_HIERARCHY_RL_V ,
-
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_LATEST_HIERARCHY_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_HIERARCHY_ORG_V, object_name:AMW_LATEST_HIERARCHY_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for organizations process latest hierarchy , implementation_dba_data: APPS.AMW_LATEST_HIERARCHY_ORG_V ,
-
View: AMW_CURR_APP_HIERARCHY_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APP_HIERARCHY_ORG_V, object_name:AMW_CURR_APP_HIERARCHY_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for approved organizations process hierarchy , implementation_dba_data: APPS.AMW_CURR_APP_HIERARCHY_ORG_V ,
-
View: AMW_CUSTOM_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CUSTOM_HIER_V, object_name:AMW_CUSTOM_HIER_V, status:VALID, product: AMW - Internal Controls Manager , description: View for Organizations Custom hierarchy , implementation_dba_data: APPS.AMW_CUSTOM_HIER_V ,
-
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_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_LATEST_HIERARCHY_RL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_HIERARCHY_RL_V, object_name:AMW_LATEST_HIERARCHY_RL_V, status:VALID, product: AMW - Internal Controls Manager , description: View for risk library process latest hierarchy , implementation_dba_data: APPS.AMW_LATEST_HIERARCHY_RL_V ,