Search Results amw_wf_org_hierarchy_main_v
Overview
AMW_WF_ORG_HIERARCHY_MAIN_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 family. Its documented purpose is to return details of the Parent–Child Process Hierarchy within an organization context. In practice, the view flattens the Workflow-based process hierarchy maintained by Internal Controls Manager and joins it to process definitions so that each returned row expresses a single parent-to-child relationship, together with the descriptive, ownership, risk, control, and certification attributes of the referenced process. This makes the view particularly relevant to searches involving the term "process_org", because a dedicated PROCESS_ORG_ID column identifies the Process Organization against which each hierarchy relationship is evaluated.
The view serves as a reporting and integration layer rather than a transaction-processing object. It is commonly consumed by OAF-based pages, BI Publisher reports, and custom extracts that need to present process hierarchies per organization without directly navigating the AMW base tables and workflow activity structures.
Underlying Base Objects
The ETRM metadata for this view documents no referenced base objects explicitly; however, the view text itself reveals its dependency set. The parent and child legs of the hierarchy are derived from workflow process activity structures (aliased WPA) and are resolved to process identity through AMWP1 and AMWP2, which supply PARENT_PROCESS_ID and CHILD_PROCESS_ID respectively. The principal descriptive source is a process-organization table aliased AMPO, which contributes organization, process, owner, risk, control, approval, and certification attributes. A lookup table (aliased AMWLKUP) translates certification status codes into user-facing meanings, and a package function, AMW_WF_HIERARCHY_PKG.FIND_TRANSITION_ORDER, is invoked to compute the TRANSITION_REVERSE_ORDER for a given instance.
Key Columns
- PARENT_PROCESS_NAME, PARENT_ITEM_TYPE, PARENT_PROCESS_ID — identity and item type of the parent process in the hierarchy.
- CHILD_PROCESS_NAME, CHILD_ITEM_TYPE, CHILD_PROCESS_ID — the corresponding child process.
- INSTANCE_ID and TRANSITION_REVERSE_ORDER — the workflow instance and its computed reverse transition ordering.
- PROCESS_ORG_ID, ORG_ID, ORG_NAME — the Process Organization identifier, the audit unit organization identifier, and the organization (audit unit) display name.
- PROCESS_DISPLAY_NAME, NAME, ITEM_TYPE — presentation attributes of the process.
- SIGNIFICANT_PROCESS_FLAG, STANDARD_PROCESS_FLAG, APPROVAL_STATUS — classification and lifecycle flags.
- RISK_COUNT, CONTROL_COUNT — counts of associated risks and controls, nulled when PROCESS_ID equals -1.
- PROCESS_OWNER_ID, PROCESS_OWNER_NAME — the owner of the process.
- CERTIFICATION_STATUS_CODE, CERTIFICATION_STATUS — raw and decoded certification status.
- URLSTRING, RISKCNTURL — pre-built OAF navigation strings targeting the process details page, including the POBJECTCONTEXT=PROCESS_ORG parameter.
Common Use Cases and Queries
Typical scenarios include reporting the parent-child process tree for a specific organization, retrieving owner and certification details for process hierarchy nodes, and building navigation links directly into the Process Details OAF page. A representative query filtering by process organization is:
- SELECT parent_process_name, child_process_name, process_org_id, org_name, process_owner_name, certification_status FROM apps.amw_wf_org_hierarchy_main_v WHERE process_org_id = :p_process_org_id ORDER BY transition_reverse_order;
- SELECT process_display_name, risk_count, control_count, significant_process_flag FROM apps.amw_wf_org_hierarchy_main_v WHERE org_id = :p_org_id AND process_id <> -1;
Because the view embeds both hierarchy relationships and process-organization attributes, it is well suited to ad hoc hierarchy extraction, certification status monitoring, and integration feeds that require process context scoped to a Process Organization.
-
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 ,
-
PACKAGE: APPS.AMW_WF_HIERARCHY_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AMW_WF_HIERARCHY_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.WF_ACTIVITIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_ACTIVITIES_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.AMW_PROCESS_ORGANIZATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS_ORGANIZATION, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_FINSTMT_CERT_PVT, status:VALID,
-
SYNONYM: APPS.AMW_PROCESS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS, status:VALID,
-
PACKAGE: APPS.AMW_UTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AMW_UTILITY_PVT, status:VALID,
-
VIEW: APPS.AMW_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LOOKUPS, object_name:AMW_LOOKUPS, 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,
-
SYNONYM: APPS.WF_ACTIVITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_ACTIVITIES, 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: 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,
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_WF_ORG_HIERARCHY_MAIN_V
12.1.1
-
SYNONYM: APPS.WF_PROCESS_ACTIVITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WF_PROCESS_ACTIVITIES, status:VALID,
-
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_FINSTMT_CERT_PVT dependencies on AMW_AUDIT_UNITS_V
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OPINION_TYPES_TL
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_RISKS_ALL_VL
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_CONTROLS_ALL_VL
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on PA_PROJECT_LISTS_V
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_RISK_ASSOCIATIONS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT SQL Statements
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_PROCESS_ORGANIZATION
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_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 ,
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OPINIONS_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.HR_API
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,