Search Results process_category_meaning
Overview
AMW_HIERARCHY_ENTITIES_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AMW — Internal Controls Manager product. Its documented description states that it "lists process details from amw_process and workflow tables." In practice the view exposes a flattened, reporting-friendly projection of internal control processes, including the process hierarchy revision identifiers, descriptive display names sourced from a workflow translation table, classification flags, certification and approval status attributes, risk, control, and organization counters, and resolved party names for the several ownership roles defined against each process. Because the underlying AMW tables are not exposed through standard Oracle EBS forms in a denormalized form, this view serves as the primary reporting and integration access point for process-level governance data.
The view is especially relevant to consumers who need to resolve ownership attributes such as APPLICATION_OWNER_NAME. The user keyword "application_owner_name" maps directly to a column exposed by this view, which is resolved from the HZ_PARTIES table rather than stored as a free-text attribute on the process record.
Underlying Base Objects
The view text draws on AMW_PROCESS (aliased AMWP) as its driving table. It joins to a workflow display table (WA_TL, aliased WA_TL) to obtain PROCESS_DISPLAY_NAME, and to HZ_PARTIES three times — HZP1, HZP2, and HZP3 — to resolve PROCESS_OWNER_NAME, APPLICATION_OWNER_NAME, and FINANCE_OWNER_NAME respectively. Lookup meanings are resolved through calls to AMW_UTILITY_PVT.GET_LOOKUP_MEANING for the AMW_CERTIFICATION_STATUS, AMW_PROCESS_APPROVAL_STATUS, and AMW_PROCESS_CATEGORY lookup types.
The documented ETRM metadata lists no formally registered referenced base objects for this view, so dependency tracking should be confirmed against ALL_DEPENDENCIES on the target instance. Conceptually, however, the join to HZ_PARTIES is what makes party-name resolution possible, and the process revision identifier ties each row to a specific revision of a process rather than to the process abstractly.
Key Columns
- PROCESS_REV_ID / PROCESS_ID — primary identifiers for the process and its revision; several derived columns test PROCESS_ID = -1 to suppress values for root or placeholder rows.
- PROCESS_DISPLAY_NAME, NAME, ITEM_TYPE — the translatable display name from the workflow table, the internal name, and the workflow item type.
- APPLICATION_OWNER_ID / APPLICATION_OWNER_NAME — the party identifier and resolved party name of the application owner, sourced via HZP2.
- PROCESS_OWNER_ID / PROCESS_OWNER_NAME and FINANCE_OWNER_ID / FINANCE_OWNER_NAME — equivalent owner pairs for the process and finance roles.
- RISK_COUNT, CONTROL_COUNT, ORG_COUNT — aggregate counters, returned as NULL when PROCESS_ID is -1.
- SIGNIFICANT_PROCESS_FLAG, STANDARD_PROCESS_FLAG, APPROVAL_STATUS, CERTIFICATION_STATUS — governance flags and status codes, with APPROVAL_STATUS_MEANING, CERTIFICATION_STATUS, and PROCESS_CATEGORY_MEANING supplying decoded lookup text.
- URLSTRING, RISKCNTURL — constructed OA Framework URLs enabling direct navigation to the process details page.
Common Use Cases and Queries
Typical reporting scenarios include ownership reporting, certification tracking, and process inventory extracts. A representative query resolving the application owner is:
SELECT process_id, name, process_display_name, application_owner_name, certification_status, approval_status_meaning FROM apps.amw_hierarchy_entities_v WHERE application_owner_name IS NOT NULL ORDER BY application_owner_name, name;
Other practical patterns include filtering on significant processes (WHERE significant_process_flag = 'Y'), aggregating process counts by owner, and generating navigation lists using URLSTRING. Because the view performs scalar lookup-function calls and multi-way party joins, queries should be restricted by process or owner criteria where possible to control execution cost on large hierarchies.
-
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_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_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 ,