Search Results amw_ap_executions
Overview
AMW_AP_EXECUTIONS is a transactional table in the AMW (Internal Controls Manager) product of Oracle E-Business Suite, present in both 12.1.1 and 12.2.2. It stores the execution history of Audit Procedures and their individual procedural steps. Each row represents a discrete execution event captured against an Audit Procedure revision and, where applicable, a specific Audit Procedure Step, recording who performed the execution, when it occurred, and its resulting status.
Under the heuristic Data Vault classification mined from the foreign key structure, this table is identified as standalone. In Data Vault modeling terms, this suggests the table behaves more like a transaction or event record than a classic hub, link, or satellite construct, since its foreign keys resolve to multiple parent dimensions without participating in a broader shared-hub network. The classification is advisory only and reflects the mined key topology rather than a normative Oracle design statement.
Key Information Stored
The table contains 20 documented columns. The most significant are:
EXECUTION_ID— the surrogate primary key uniquely identifying each execution record.AUDIT_PROCEDURE_REV_ID— identifies the specific revision of the Audit Procedure that was executed; a foreign key toAMW_AUDIT_PROCEDURES_B.AP_STEP_ID— identifies the Audit Procedure Step executed; a foreign key toAMW_AP_STEPS_B.EXECUTION_TYPE— categorizes the nature of the execution event.EXECUTED_ON— the date on which the execution took place.EXECUTED_BY— the user or party responsible for the execution.STATUS— the outcome or state resulting from the execution.WORK_DESC— descriptive text capturing the work performed.SECURITY_GROUP_ID— the security group controlling access to the row; a foreign key toFND_SECURITY_GROUPS.PK1,PK2,PK3,PK4,PK5— key flexfield-style descriptor columns participating in the unique business key.OBJECT_VERSION_NUMBER— supports optimistic locking during concurrent updates.CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN— standard Oracle EBS audit columns maintained by the framework.
The unique index AMW_AP_EXECUTIONS_U1 spans AUDIT_PROCEDURE_REV_ID, PK1, PK2, PK3, EXECUTION_TYPE, and AP_STEP_ID, making this set the business-key candidate that governs uniqueness of an execution within the context of a procedure revision and step.
Common Use Cases and Queries
Typical usage centers on audit execution tracking and compliance reporting. A frequent pattern retrieves all executions against a procedure revision:
SELECT execution_id, ap_step_id, executed_on, executed_by, status FROM amw.amw_ap_executions WHERE audit_procedure_rev_id = :rev_id ORDER BY executed_on;
To trace step-level completion, join to the step definition: SELECT e.execution_id, e.status FROM amw.amw_ap_executions e, amw.amw_ap_steps_b s WHERE e.ap_step_id = s.ap_step_id AND e.status = 'COMPLETE'. Reporting on execution ownership aggregates EXECUTED_BY, and filtering by SECURITY_GROUP_ID enforces access control consistent with the EBS security model. Because rows are immutable once created (except for audit columns), the table is well suited to historical and trend analysis of control activity.
Related Objects
AMW_AUDIT_PROCEDURES_B— joined onAUDIT_PROCEDURE_REV_ID; supplies the procedure revision definition.AMW_AP_STEPS_B— joined onAP_STEP_ID; supplies the step definition.FND_SECURITY_GROUPS— joined onSECURITY_GROUP_ID; governs row-level visibility.- AMW Internal Controls Manager concurrent programs and audit reports that consume execution history for control monitoring.
- Standard EBS audit-trail views built over
CREATED_BYandLAST_UPDATED_BYagainstFND_USER.
-
Table: AMW_AP_EXECUTIONS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AP_EXECUTIONS, object_name:AMW_AP_EXECUTIONS, status:VALID, product: AMW - Internal Controls Manager , description: Hold information about Audit Procedure and Step executions. , implementation_dba_data: AMW.AMW_AP_EXECUTIONS ,
-
Table: AMW_AP_EXECUTIONS
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Hold information about Audit Procedure and Step executions. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.AMW_AP_EXECUTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_AP_EXECUTIONS, status:VALID,
-
View: AMW_EXPORT_AUDIT_PROCEDURE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_EXPORT_AUDIT_PROCEDURE_V, object_name:AMW_EXPORT_AUDIT_PROCEDURE_V, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_EXPORT_AUDIT_PROCEDURE_V ,
-
View: AMW_EXPORT_AUDIT_PROCEDURE_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.AMW_PARTY_MERGE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_PARTY_MERGE_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
TABLE: AMW.AMW_AP_EXECUTIONS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AP_EXECUTIONS, object_name:AMW_AP_EXECUTIONS, status:VALID,
-
PACKAGE BODY: APPS.AMW_PARTY_MERGE_PKG
12.1.1
-
APPS.AMW_PARTY_MERGE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_LOAD_AUDIT_PROCEDURE_DATA, status:VALID,
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA SQL Statements
12.1.1
-
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.HZ_PURGE_GEN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_PURGE_GEN, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AMW_EXPORT_AUDIT_PROCEDURE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_EXPORT_AUDIT_PROCEDURE_V, object_name:AMW_EXPORT_AUDIT_PROCEDURE_V, status:VALID,
-
PACKAGE BODY: APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA
12.1.1
-
APPS.AMW_PARTY_MERGE_PKG dependencies on AMW_AP_EXECUTIONS
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_AP_EXECUTIONS
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on AMW_AP_EXECUTIONS
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_AP_EXECUTIONS_S
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.HZ_PURGE_GEN dependencies on AMW_CONSTRAINTS_B
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on AMW_ASSESSMENTS_B
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on FND_FILE
12.1.1
-
PACKAGE BODY: APPS.HZ_PURGE_GEN
12.1.1
-
APPS.HZ_PURGE_GEN 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 ,
-
APPS.HZ_PURGE_GEN dependencies on HZ_PURGE_GT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on HZ_APPLICATION_TRANS_GT
12.1.1