Search Results child_description
Overview
AMW_CURR_APP_HIERARCHY_ORG_V is an APPS-owned database view in the Oracle E-Business Suite Release 12.1.1 and 12.2.2 environment, belonging to the AMW product family — Internal Controls Manager. The view exposes the currently approved organizational process hierarchy, denormalizing parent and child process records into a single flattened row per approved parent-child relationship. Its internal name, AMW_CURR_APP_HIERARCHY_ORG_V, combines "AMW," "CURR" (current), "APP" (approved), "HIERARCHY," and "ORG" (organization), reflecting its purpose: surfacing only those process hierarchy links that are valid as of the current system date.
The view plays a reporting and integration role. Downstream reports, dashboards, and ETL processes that need to traverse the approved process hierarchy for an organization — without writing the approval-date and end-date filtering logic themselves — can select directly from this view. Because it joins the process definition views to the approved hierarchy table, it centralizes the "what is currently approved and effective" business rule, promoting consistent behavior across Internal Controls Manager reporting.
Underlying Base Objects
The ETRM metadata lists no explicitly documented base objects under "Referenced base objects," but the view text itself reveals the three sources in its FROM clause:
- AMW_PROCESS_ORGANIZATION_VL — referenced twice, as aliases PP (parent process) and CP (child process). This is the multi-language process definition view holding display names, descriptions, process codes, owners, approval attributes, and counts.
- AMW_APPROVED_HIERARCHIES — aliased AH, the transactional table that stores the approved parent-child links between processes, including child ordering and effective start/end dates.
The join is driven by AH.PARENT_ID = PP.PROCESS_ID and AH.CHILD_ID = CP.PROCESS_ID, with organization and date filters ensuring parent and child belong to the same organization and both are currently approved and undated-deleted.
Key Columns
The view prefixes columns with PARENT_ or CHILD_ to preserve their provenance.
- PARENT_PROCESS_ID / CHILD_PROCESS_ID — primary process identifiers for the parent and child nodes.
- PARENT_DISPLAY_NAME / CHILD_DISPLAY_NAME — human-readable process names from the VL view.
- CHILD_DESCRIPTION — the column matching the user's search term "child_description"; it carries the descriptive text of the child process as stored on AMW_PROCESS_ORGANIZATION_VL.
- CHILD_ORGANIZATION_ID — the organization to which the child process belongs; parent and child organizations are constrained equal.
- CHILD_APPROVAL_STATUS, CHILD_START_DATE, CHILD_APPROVAL_DATE, CHILD_APPROVAL_END_DATE, CHILD_END_DATE — approval lifecycle and effective-dating attributes for the child process.
- CHILD_CONTROL_COUNT / CHILD_RISK_COUNT — aggregated counts of associated controls and risks on the child process.
- CHILD_SIGNIFICANT_PROCESS_FLAG / CHILD_STANDARD_PROCESS_FLAG — classification flags.
- CHILD_CERTIFICATION_STATUS, CHILD_PROCESS_CATEGORY, CHILD_STANDARD_VARIATION, CHILD_PROCESS_TYPE, CHILD_CONTROL_ACTIVITY_TYPE — certification and process classification attributes.
- CHILD_PROCESS_OWNER_ID, CHILD_FINANCE_OWNER_ID, CHILD_APPLICATION_OWNER_ID — owner references for the child process.
- CHILD_ORDER_NUMBER — from AMW_APPROVED_HIERARCHIES, determines the child's position within its parent's hierarchy.
Common Use Cases and Queries
Typical uses include reconstructing an organization's approved process tree for compliance reporting, identifying significant processes and their owners, and driving Control Self-Assessment or certification workflows. A simple query lists children of a parent within an organization:
- SELECT child_display_name, child_description, child_order_number FROM amw_curr_app_hier_org_v WHERE parent_process_id = :parent AND child_organization_id = :org ORDER BY child_order_number;
- SELECT parent_display_name, child_display_name, child_control_count, child_certification_status FROM amw_curr_app_hier_org_v WHERE child_significant_process_flag = 'Y';
Because effective dating is already applied via SYSDATE predicates, no additional date filtering is required by callers.
-
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: APPS.AMW_MANAG_HIER_V
12.1.1
-
View: AMW_LEGAL_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LEGAL_HIER_V, object_name:AMW_LEGAL_HIER_V, status:VALID, product: AMW - Internal Controls Manager , description: View for Organizations Legal hierarchy , implementation_dba_data: APPS.AMW_LEGAL_HIER_V ,
-
View: AMW_MANAG_HIER_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for Organizations Managerial hierarchy. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_MANAG_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_MANAG_HIER_V, object_name:AMW_MANAG_HIER_V, status:VALID, product: AMW - Internal Controls Manager , description: View for Organizations Managerial hierarchy. , implementation_dba_data: APPS.AMW_MANAG_HIER_V ,
-
VIEW: APPS.AMW_LATEST_HIERARCHY_ORG_V
12.1.1
-
VIEW: APPS.AMW_LEGAL_HIER_V
12.1.1
-
View: AMW_LEGAL_HIER_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for Organizations Legal hierarchy , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_CURR_APP_HIERARCHY_ORG_V
12.1.1
-
View: AMW_CURR_APP_HIERARCHY_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for approved organizations process hierarchy , implementation_dba_data: Not implemented in this database ,
-
View: AMW_LATEST_HIERARCHY_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for organizations process latest hierarchy , implementation_dba_data: Not implemented in this database ,
-
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: APPS.AMW_LEGAL_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LEGAL_HIER_V, object_name:AMW_LEGAL_HIER_V, status:VALID,
-
VIEW: APPS.AMW_MANAG_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_MANAG_HIER_V, object_name:AMW_MANAG_HIER_V, status:VALID,
-
VIEW: APPS.AMW_CUSTOM_HIER_V
12.1.1
-
View: AMW_CUSTOM_HIER_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for Organizations Custom hierarchy , implementation_dba_data: Not implemented in this database ,
-
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: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,