Search Results amw_cert_dashboard_sum
Overview
The AMW_CERT_DASHBOARD_SUM table is a denormalized summary table within the Oracle E-Business Suite Internal Controls Manager (AMW) module. It stores overall, pre-aggregated certification information used to render the certification dashboard, allowing users to review the state of a certification initiative without traversing the detailed transactional tables that underlie it. Because the dashboard is a high-visibility, frequently accessed screen, denormalization trades storage redundancy for query performance, collapsing process, risk, and control metrics into a single row per certification.
The object is owned by the AMW schema and is marked VALID in the documented ETRM 12.1.1 metadata. Its primary key is AMW_CERT_DASHBOARD_SUM_PK on CERTIFICATION_ID. Applying a heuristic Data Vault classification, the table is satellite-leaning: it is keyed by a single surrogate primary key and carries descriptive, aggregated attributes rather than participating in many-to-many relationships. In a Data Vault model this would most naturally be modeled as a satellite attached to the AMW_CERTIFICATION_B hub.
Key Information Stored
The table contains 36 documented columns. The most functionally significant are the aggregate counts that drive the dashboard, organized into categories of change, completeness, and effectiveness:
- CERTIFICATION_ID — surrogate primary key (AMW_CERT_DASHBOARD_SUM_PK) and foreign key to AMW_CERTIFICATION_B; the business-key anchor for each certification.
- NEW_PROCESSES_ADDED, PROCESSES_REMOVED, PROCESSES_CHANGED — process-level change metrics for the certification period.
- NEW_RISKS_ADDED, RISKS_REMOVED, RISKS_CHANGED, RISKS_WITH_NO_CONTROLS — risk inventory movement and exposure gaps.
- NEW_CONTROLS_ADDED, CONTROLS_REMOVED, CONTROLS_CHANGED, INEFFECTIVE_CONTROLS — control-level change and effectiveness counts.
- PROCESSES_NOT_CERT, PROCESSES_CERT_ISSUES, PROC_INEFF_CONTROL, UNMITIGATED_RISKS — outstanding certification issues at the process level.
- ORGS_IN_SCOPE, ORGS_PENDING_IN_SCOPE, ORGS_PENDING_CERTIFICATION, ORG_CERT_ISSUES, ORG_INEFFECTIVE — organization-scope and pending-completion metrics.
- PERIOD_START_DATE — the reporting period the summary covers.
- Standard EBS audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER) plus SECURITY_GROUP_ID (FK to FND_SECURITY_GROUPS) and ORIG_SYSTEM_REFERENCE for multi-tenant and integration control.
Common Use Cases and Queries
The primary use case is dashboard and status reporting for in-flight certifications. A typical query joins the summary to the certification base table to retrieve header context while exposing the aggregate counts:
SELECT s.certification_id,
s.processes_not_cert,
s.processes_cert_issues,
s.unmitigated_risks,
s.ineffective_controls,
s.orgs_pending_certification
FROM amw_cert_dashboard_sum s
WHERE s.certification_id = :p_certification_id;
For exception-driven reporting, analysts filter on non-zero exception counters (for example, UNMITIGATED_RISKS or INEFFECTIVE_CONTROLS) to identify certifications requiring remediation. Because the table is security-group aware, queries should respect SECURITY_GROUP_ID to enforce multi-org data access. The table is denormalized, so refreshes are typically performed by the certification process rather than by ad-hoc DML; reports should treat it as a read-only snapshot.
Related Objects
- AMW_CERTIFICATION_B — the parent hub/base table; joined on CERTIFICATION_ID (documented foreign key).
- FND_SECURITY_GROUPS — referenced via SECURITY_GROUP_ID for access control.
- AMW_CERT_DASHBOARD_SUM_PK — the primary key index on CERTIFICATION_ID.
- Underlying detail tables for processes, risks, and controls (for example the AMW process, risk, and control certification entities) supply the source data that populates these aggregates.
- Certification dashboard and reporting views/APIs in the AMW module that read this summary to render dashboards.
-
Table: AMW_CERT_DASHBOARD_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_CERT_DASHBOARD_SUM, object_name:AMW_CERT_DASHBOARD_SUM, status:VALID, product: AMW - Internal Controls Manager , description: This is a denormalized table for certification dashboard. It stores the certification overall information. , implementation_dba_data: AMW.AMW_CERT_DASHBOARD_SUM ,
-
Table: AMW_CERT_DASHBOARD_SUM
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: This is a denormalized table for certification dashboard. It stores the certification overall information. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.AMW_CERT_DASHBOARD_SUM
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_CERT_DASHBOARD_SUM, status:VALID,
-
APPS.AMW_PROCCERT_EVENT_PVT SQL Statements
12.1.1
-
Table: AMW_CERTIFICATION_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Certifications base table. , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_CERTIFICATION_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_CERTIFICATION_B, object_name:AMW_CERTIFICATION_B, status:VALID, product: AMW - Internal Controls Manager , description: Certifications base table. , implementation_dba_data: AMW.AMW_CERTIFICATION_B ,
-
PACKAGE BODY: APPS.AMW_PROCESS_CERT_SUMMARY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_PROCESS_CERT_SUMMARY, status:VALID,
-
TABLE: AMW.AMW_CERT_DASHBOARD_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_CERT_DASHBOARD_SUM, object_name:AMW_CERT_DASHBOARD_SUM, status:VALID,
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_FINSTMT_CERT_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_BES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_FINSTMT_CERT_BES_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMW_PROCCERT_EVENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_PROCCERT_EVENT_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMW_PROCCERT_EVENT_PVT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG SQL Statements
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_CERT_DASHBOARD_SUM
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY dependencies on AMW_CERT_DASHBOARD_SUM
12.1.1
-
APPS.AMW_PROCCERT_EVENT_PVT dependencies on AMW_CERT_DASHBOARD_SUM
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on AMW_CERT_DASHBOARD_SUM
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_BES_PKG
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY SQL Statements
12.1.1
-
APPS.AMW_PROCCERT_EVENT_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on FND_GLOBAL
12.1.1
-
PACKAGE BODY: APPS.AMW_PROCESS_CERT_SUMMARY
12.1.1
-
APPS.AMW_PROCCERT_EVENT_PVT dependencies on FND_PROFILE
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on AMW_FIN_ORG_EVAL_SUM
12.1.1
-
APPS.AMW_PROCCERT_EVENT_PVT dependencies on AMW_PROC_CERT_EVAL_SUM
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on FND_PROFILE
12.1.1
-
APPS.AMW_PROCCERT_EVENT_PVT dependencies on AMW_ORG_CERT_EVAL_SUM
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 FND_GLOBAL
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT SQL Statements
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on AMW_FIN_PROCESS_EVAL_SUM
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY dependencies on FND_FILE
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_PVT
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on FND_FILE
12.1.1
-
12.1.1 DBA Data
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 ,