Search Results process_org_rev_id
Overview
AMW.AMW_FIN_PROCESS_EVAL_SUM is a summary table in the Oracle E-Business Suite Applications (AMW) schema that stores aggregated audit evaluation and certification information for business processes affecting financial items and natural accounts within a Financial Certification. The table resides in the APPS_TS_SUMMARY tablespace with a PCT Free of 10, reflecting its role as a reporting and analytics aggregation layer rather than a high-volume transactional store. Records are scoped to a financial certification, a process, and a process organization revision, allowing multiple certifications and revisions of the same process to coexist.
Within the context of Oracle EBS 12.1.1 and 12.2.2, the object supports the Financial Certification and audit evaluation workflows used by internal controls and compliance reporting. Because the metadata identifies only a single foreign key (SECURITY_GROUP_ID to FND_SECURITY_GROUPS), the heuristic Data Vault classification is standalone. As a modeling suggestion, this suggests the table functions as an independent summary or snapshot rather than as a strict hub, link, or satellite within a normalized Data Vault design. Its purpose is denormalized aggregation, not relational reference.
Key Information Stored
The table contains 32 documented columns. The most consequential of these are outlined below:
- FIN_CERTIFICATION_ID — Identifier of the Financial Certification to which the summarized evaluation belongs.
- PROCESS_ID — The process being evaluated.
- PROCESS_ORG_REV_ID — The process organization revision reference, a key search term for this object and a component of the U1 unique index.
- ORGANIZATION_ID — The operating unit or organization context, also part of the U1 unique index.
- CERT_OPINION_ID / CERT_OPINION_LOG_ID — The certification opinion and its log reference for the process record.
- EVAL_OPINION_ID / EVAL_OPINION_LOG_ID — The audit evaluation opinion and its log reference.
- UNMITIGATED_RISKS — Count of risks whose latest audit evaluation was "Not Effective" during the certification period.
- INEFFECTIVE_CONTROLS — Count of controls whose latest audit evaluation was "Not Effective" during the certification period.
- UNMITIGATED_RISKS_PRCNT / INEFFECTIVE_CONTROLS_PRCNT — Ratio-based percentages relative to risks verified and controls verified respectively.
- RISKS_VERIFIED / CONTROLS_VERIFIED — Verified counts used as denominators in the percentage calculations.
- TOTAL_NUMBER_OF_SUB_PROCS / NUMBER_OF_SUB_PROCS_CERTIFIED / SUB_PROCS_CERTIFIED_PRCNT — Child process volumes and certification coverage percentages.
- TOTAL_NUMBER_OF_ORG_PROCS / NUMBER_OF_ORG_PROCS_CERTIFIED / ORG_PROCS_CERTIFIED_PRCNT — Organization-level process counts and certification coverage.
- OPEN_FINDINGS — Count of open audit findings associated with the summarized record.
The U1 unique index (FIN_CERTIFICATION_ID, ORGANIZATION_ID, PROCESS_ORG_REV_ID) establishes the business-key candidate, while the N2–N6 non-unique indexes on ORGANIZATION_ID, PROCESS_ID, PROCESS_ORG_REV_ID, CERT_OPINION_LOG_ID, and EVAL_OPINION_LOG_ID support common filter and join paths. No single surrogate primary key column is documented; the unique index columns together serve as the logical identifier.
Common Use Cases and Queries
Typical uses include financial certification dashboards, control effectiveness reporting, and audit remediation tracking. A representative query filtered by the searched term follows:
SELECT organization_id, process_id, cert_opinion_id,
unmitigated_risks, ineffective_controls,
unmitigated_risks_prcnt, ineffective_controls_prcnt
FROM amw.amw_fin_process_eval_sum
WHERE process_org_rev_id = :p_process_org_rev_id
AND fin_certification_id = :p_cert_id;
Aggregate reporting by certification is equally common, summing risk and control counts across processes and joining to organization-level tables for coverage analysis. Because records are revision-aware through PROCESS_ORG_REV_ID, queries should constrain certification and revision to avoid double counting.
Related Objects
- FND_SECURITY_GROUPS — Referenced by AMW_FIN_PROCESS_EVAL_SUM.SECURITY_GROUP_ID; join to enforce row-level security filtering.
- APPS.AMW_FIN_CERTIFICATIONS (Fin Certification) — Parent certification entity joined on FIN_CERTIFICATION_ID.
- AMW_FIN_PROCESS_EVAL_DETAIL — Detailed evaluation records typically summarized into this table, joined by PROCESS_ID and PROCESS_ORG_REV_ID.
- AMW_PROCESSES / Process definition views — Provide descriptive process attributes joined on PROCESS_ID.
- HR_OPERATING_UNITS / ORG organization views — Join on ORGANIZATION_ID to resolve operating unit names.
- AMW_CERT_OPINION_LOGS — Opinion log source joined on CERT_OPINION_LOG_ID.
- AMW_EVAL_OPINION_LOGS — Evaluation log source joined on EVAL_OPINION_LOG_ID.
-
TABLE: AMW.AMW_FIN_PROCESS_EVAL_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_PROCESS_EVAL_SUM, object_name:AMW_FIN_PROCESS_EVAL_SUM, status:VALID,
-
TABLE: AMW.AMW_FIN_CERT_SCOPE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_CERT_SCOPE, object_name:AMW_FIN_CERT_SCOPE, status:VALID,
-
TABLE: AMW.AMW_AUDIT_SCOPE_PROCESSES
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_SCOPE_PROCESSES, object_name:AMW_AUDIT_SCOPE_PROCESSES, status:VALID,
-
VIEW: APPS.AMW_CURR_APPROVED_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APPROVED_REV_ORG_V, object_name:AMW_CURR_APPROVED_REV_ORG_V, status:VALID,
-
TABLE: AMW.AMW_PROCESS_ORGANIZATION
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROCESS_ORGANIZATION, object_name:AMW_PROCESS_ORGANIZATION, status:VALID,
-
VIEW: APPS.AMW_LATEST_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_REV_ORG_V, object_name:AMW_LATEST_REV_ORG_V, status:VALID,
-
View: AMW_CURR_APPROVED_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for current approved organization process revisions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_ORG_PROCESS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_PROCESS_VL, object_name:AMW_ORG_PROCESS_VL, status:VALID,
-
View: AMW_INACTIVE_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for end dated organization process revisions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_INACTIVE_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_INACTIVE_REV_ORG_V, object_name:AMW_INACTIVE_REV_ORG_V, status:VALID,
-
View: AMW_CURR_APPROVED_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APPROVED_REV_ORG_V, object_name:AMW_CURR_APPROVED_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for current approved organization process revisions , implementation_dba_data: APPS.AMW_CURR_APPROVED_REV_ORG_V ,
-
View: AMW_LATEST_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_REV_ORG_V, object_name:AMW_LATEST_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for all the latest revisions of organization processes. , implementation_dba_data: APPS.AMW_LATEST_REV_ORG_V ,
-
View: AMW_INACTIVE_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_INACTIVE_REV_ORG_V, object_name:AMW_INACTIVE_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for end dated organization process revisions , implementation_dba_data: APPS.AMW_INACTIVE_REV_ORG_V ,
-
VIEW: APPS.AMW_PROCESS_ORGANIZATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORGANIZATION_VL, object_name:AMW_PROCESS_ORGANIZATION_VL, status:VALID,
-
View: AMW_LATEST_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for all the latest revisions of organization processes. , implementation_dba_data: Not implemented in this database ,
-
APPS.RCI_PROC_DETAIL_ETL_PKG SQL Statements
12.1.1
-
TABLE: AMW.RCI_PROCESS_DETAIL_F
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.RCI_PROCESS_DETAIL_F, object_name:RCI_PROCESS_DETAIL_F, status:VALID,
-
TABLE: AMW.AMW_EXECUTION_SCOPE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_EXECUTION_SCOPE, object_name:AMW_EXECUTION_SCOPE, status:VALID,
-
View: AMW_ORG_PROCESS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_PROCESS_VL, object_name:AMW_ORG_PROCESS_VL, status:VALID, product: AMW - Internal Controls Manager , description: stores the process inforamtion within organizations , implementation_dba_data: APPS.AMW_ORG_PROCESS_VL ,
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT SQL Statements
12.1.1
-
View: AMW_PROCESS_ORGANIZATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORGANIZATION_VL, object_name:AMW_PROCESS_ORGANIZATION_VL, status:VALID, product: AMW - Internal Controls Manager , description: AMW_PROCESS_NAMES_VL is a view that joins the translated, languagespecific values from AMW_PROCESS_NAMES_TL with the non-displayeddata from AMW_ORGANIZATION_PROCESS to form complete organization process entities. , implementation_dba_data: APPS.AMW_PROCESS_ORGANIZATION_VL ,
-
TABLE: AMW.AMW_PROC_CERT_EVAL_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROC_CERT_EVAL_SUM, object_name:AMW_PROC_CERT_EVAL_SUM, status:VALID,
-
View: AMW_ORG_PROCESS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: stores the process inforamtion within organizations , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_SCOPE_PVT SQL Statements
12.1.1
-
View: AMW_PROCESS_ORGANIZATION_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: AMW_PROCESS_NAMES_VL is a view that joins the translated, languagespecific values from AMW_PROCESS_NAMES_TL with the non-displayeddata from AMW_ORGANIZATION_PROCESS to form complete organization process entities. , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_PARAMETERS_PVT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_AUDIT_ENGAGEMENT_PVT
12.1.1
-
PACKAGE BODY: APPS.RCI_PROC_DETAIL_ETL_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_SCOPE_PVT
12.1.1
-
PACKAGE BODY: APPS.AMW_PARAMETERS_PVT_PKG
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG SQL Statements
12.1.1
-
APPS.AMW_SCOPE_PVT dependencies on AMW_EXECUTION_SCOPE_S
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT dependencies on AMW_EXECUTION_SCOPE
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT dependencies on AMW_EXECUTION_SCOPE_S
12.1.1
-
APPS.RCI_PROC_DETAIL_ETL_PKG dependencies on RCI_PROCESS_DETAIL_F
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on FND_ATTACHED_DOCUMENTS
12.1.1
-
APPS.AMW_SCOPE_PVT dependencies on AMW_AUDIT_SCOPE_PROCESSES
12.1.1
-
APPS.AMW_SCOPE_PVT dependencies on AMW_CURR_APP_HIERARCHY_ORG_V
12.1.1
-
APPS.AMW_SCOPE_PVT dependencies on AMW_EXECUTION_SCOPE
12.1.1
-
APPS.AMW_SCOPE_PVT dependencies on AMW_PROC_CERT_EVAL_SUM
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG SQL Statements
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 ,
-
PACKAGE BODY: APPS.AMW_ORG_HIERARCHY_PKG
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on AMW_PROCESS_ORGANIZATION
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on AMW_UTILITY_PVT
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on AMW_PROCESS
12.1.1
-
APPS.AMW_SCOPE_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on AMW_FIN_PROCESS_EVAL_SUM
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_BES_PKG
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on AMW_ORG_HIERARCHY_PKG
12.1.1