Search Results amw_process_org_relations
Overview
The AMW_PROCESS_ORG_RELATIONS table is a core data object within the Oracle EBS Internal Controls Manager (AMW) product module. As its description states, the table holds the process hierarchy in organizations, storing the parent-child relationships that define how business processes are structured and decomposed across an enterprise. This hierarchical model is fundamental to Internal Controls Manager, because controls, risks, and audit procedures are typically associated with specific nodes in a process tree. The table permits processes to be nested, so a high-level process can contain sub-processes that themselves contain further sub-processes, mirroring the way organizations describe business cycles such as Order to Cash or Procure to Pay.
From a Data Vault modeling perspective, the heuristic classification for this object is standalone, meaning it does not participate in a strong hub-link-satellite dependency network within the mined foreign-key structure. It is best regarded as a link-style table that resolves a many-to-many or recursive association between parent processes and child processes, with additional descriptive and auditing attributes carried in the same row. This classification is offered as a modeling suggestion, not an enforced constraint.
Key Information Stored
The table contains twelve documented columns. The most significant are:
- ORGANIZATION_ID — Identifies the organization to which the process hierarchy belongs, providing the operating-unit context for the relationship.
- PARENT_PROCESS_ID — References the parent process node in the hierarchy.
- CHILD_PROCESS_ID — References the child process node subordinate to the parent.
- INSTANCE_ID — Links the relationship to a specific instance of the process model.
- EXCEPTION_PRESENT_FLAG — Indicates whether an exception condition exists for the relationship, useful for exception reporting.
- SECURITY_GROUP_ID — Foreign key to
FND_SECURITY_GROUPS, enforcing row-level security partitioning. - OBJECT_VERSION_NUMBER — Supports optimistic locking and concurrency control in the EBS framework.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns recording who created and last modified each row and when.
The documented metadata does not identify a single surrogate primary key column; the effective business key is the combination of ORGANIZATION_ID, PARENT_PROCESS_ID, CHILD_PROCESS_ID, and INSTANCE_ID, which together uniquely describe a hierarchical edge. The only documented foreign key is the reference from SECURITY_GROUP_ID to FND_SECURITY_GROUPS.
Common Use Cases and Queries
Typical use cases include reconstructing process trees for audit scoping, identifying orphaned or unreferenced processes, and reporting on exception conditions. A recursive query is commonly used to traverse the hierarchy. For example, retrieving all children of a given parent process:
SELECT CHILD_PROCESS_ID, EXCEPTION_PRESENT_FLAG
FROM AMW_PROCESS_ORG_RELATIONS
WHERE ORGANIZATION_ID = :org_id
AND PARENT_PROCESS_ID = :parent_id;
Reporting queries frequently join to process definition tables to obtain process names and to FND_SECURITY_GROUPS to validate the security context. Exception dashboards filter on EXCEPTION_PRESENT_FLAG = 'Y'. Hierarchical extraction for audit documentation uses CONNECT BY PARENT_PROCESS_ID = PRIOR CHILD_PROCESS_ID to flatten the tree.
Related Objects
The most significant related object documented is FND_SECURITY_GROUPS, joined on SECURITY_GROUP_ID. Additional dependencies implied by the column semantics include the AMW process definition tables referenced by PARENT_PROCESS_ID and CHILD_PROCESS_ID, and the process instance structures referenced by INSTANCE_ID. Together these objects support the full process hierarchy that underpins Internal Controls Manager.
-
Table: AMW_PROCESS_ORG_RELATIONS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESS_ORG_RELATIONS, object_name:AMW_PROCESS_ORG_RELATIONS, status:VALID, product: AMW - Internal Controls Manager , description: This table holds the process hierarchy in organizations , implementation_dba_data: AMW.AMW_PROCESS_ORG_RELATIONS ,
-
Table: AMW_PROCESS_ORG_RELATIONS
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This table holds the process hierarchy in organizations , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.AMW_PROCESS_ORG_RELATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS_ORG_RELATIONS, status:VALID,
-
TABLE: AMW.AMW_PROCESS_ORG_RELATIONS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESS_ORG_RELATIONS, object_name:AMW_PROCESS_ORG_RELATIONS, status:VALID,
-
APPS.AMW_WF_HIERARCHY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_WF_HIERARCHY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_WF_HIERARCHY_PKG, status:VALID,
-
VIEW: APPS.AMW_ORG_RELATIONS_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_FINSTMT_CERT_PVT, status:VALID,
-
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 ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
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,
-
PACKAGE BODY: APPS.AMW_WF_HIERARCHY_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_PVT
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_PROCESS_ORG_RELATIONS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_PROCESS_ORG_RELATIONS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_PROCESS_ORG_BASICINFO_V
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_ACCT_ASSOCIATIONS
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 ,
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_PROC_ORG_HIERARCHY_PVT
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_CONTROL_ASSOCIATIONS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_RISK_ASSOCIATIONS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_FIN_PROC_CERT_RELAN
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OPINIONS_V
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