Search Results amw_certification_b




Overview

The AMW_CERTIFICATION_B table is the certifications base table within the AMW – Internal Controls Manager module of Oracle E-Business Suite. It serves as the central repository for certification records generated during internal control and financial compliance processes, including SOX-style certification cycles. Each row represents a single certification instance that a designated owner must review, attest to, and complete within a defined period.

This table functions as the transactional core around which certification dashboards, evaluation summaries, and execution scopes are organized. It captures the identity of the certification owner, the certification type and status, the target and actual completion dates, and the outcome of the certification.

From a Data Vault modeling perspective, the mined foreign-key structure suggests a hub-leaning classification. The CERTIFICATION_ID acts as the natural business key candidate, and several downstream tables reference it, reinforcing its role as a central hub entity with associated descriptive satellites.

Key Information Stored

The table contains 39 documented columns. The most significant include:

Common Use Cases and Queries

Typical reporting scenarios include tracking outstanding certifications by owner, measuring on-time completion against TARGET_COMPLETION_DATE, and summarizing certification results per period. A common query retrieves active certifications due in a given GL period:

  • SELECT CERTIFICATION_ID, CERTIFICATION_OWNER_ID, CERTIFICATION_STATUS, TARGET_COMPLETION_DATE FROM AMW_CERTIFICATION_B WHERE CERTIFICATION_PERIOD_NAME = :period AND CERTIFICATION_STATUS != 'COMPLETE';
  • Joining to AMW_CERT_DASHBOARD_SUM on CERTIFICATION_ID to produce dashboard-level rollups.
  • Aggregating certification results by CERTIFICATION_TYPE for compliance reporting.
  • Auditing reminder activity using CERTIFICATION_REMINDER and LAST_REMINDER_DATE.

Related Objects

The following objects depend on or reference AMW_CERTIFICATION_B:

  • AMW_CERT_DASHBOARD_SUM – References CERTIFICATION_ID for dashboard summaries.
  • AMW_PROC_CERT_EVAL_SUM – References CERTIFICATION_ID for process certification evaluations.
  • AMW_EXECUTION_SCOPE – References ENTITY_ID, relating execution scope to the certification.
  • GL_PERIODS – Referenced through CERTIFICATION_PERIOD_SET_NAME and CERTIFICATION_PERIOD_NAME.
  • FND_SECURITY_GROUPS – Referenced through SECURITY_GROUP_ID for access control.