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:

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.