Search Results qa_action_log
Overview
The QA_ACTION_LOG table is a core transactional logging table within the Oracle E-Business Suite (EBS) Quality Management (QA) module. It serves as a system journal, recording a chronological history of actions performed on quality-related entities. Its primary role is to provide an audit trail and support process traceability for quality events, such as the creation, update, or deletion of inspection plans, collection elements, and results. This logging mechanism is essential for compliance, troubleshooting, and understanding the sequence of changes within the quality system across both EBS 12.1.1 and 12.2.2 versions.
Key Information Stored
While the full column list is not detailed in the provided metadata, the structure and foreign key relationships indicate the critical data points captured. The primary key column, LOG_ID, uniquely identifies each logged action. The table records the specific object acted upon through foreign key columns like PLAN_ID, which links to the QA_PLANS table for quality plans, and CHAR_ID, which links to the QA_CHARS table for quality characteristics or collection elements. Typical columns in such a log table would include ACTION_TYPE (e.g., INSERT, UPDATE), ACTION_DATE, USER_ID of the person or process initiating the action, and likely a column for the old and new values or a reference to the transaction that caused the log entry.
Common Use Cases and Queries
This table is primarily used for auditing and diagnostic reporting. A common use case is investigating changes to a specific quality plan over time. A sample query might retrieve the audit history for a plan, showing who made changes and when:
SELECT log.action_date, usr.user_name, log.action_type FROM qa_action_log log, fnd_user usr WHERE log.plan_id = :p_plan_id AND log.user_id = usr.user_id ORDER BY log.action_date DESC;
Another critical use case is compliance reporting, where a full audit trail of all modifications to quality collection elements (chars) within a date range is required for regulatory purposes. System administrators may also query this table to diagnose unexpected behavior by tracing the sequence of actions leading up to an issue.
Related Objects
As defined by its foreign key constraints, the QA_ACTION_LOG table has direct transactional relationships with two fundamental QA tables: QA_PLANS and QA_CHARS. It references QA_PLANS via the PLAN_ID column to log actions concerning quality plans. Similarly, it references QA_CHARS via the CHAR_ID column to log actions on quality characteristics. The table itself is protected by a primary key constraint named QA_ACTION_LOG_PK on the LOG_ID column. While not listed, it is common for such log tables to be referenced by standard or custom diagnostic reports within the Quality Management module.
-
Table: QA_ACTION_LOG
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_ACTION_LOG, object_name:QA_ACTION_LOG, status:VALID, product: QA - Quality , description: Log table for actions , implementation_dba_data: QA.QA_ACTION_LOG ,
-
Table: QA_ACTION_LOG
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_ACTION_LOG, object_name:QA_ACTION_LOG, status:VALID, product: QA - Quality , description: Log table for actions , implementation_dba_data: QA.QA_ACTION_LOG ,
-
Table: QA_PLANS
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLANS, object_name:QA_PLANS, status:VALID, product: QA - Quality , description: Collection plan definitions , implementation_dba_data: QA.QA_PLANS ,
-
Table: QA_CHARS
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_CHARS, object_name:QA_CHARS, status:VALID, product: QA - Quality , description: Collection elements definitions , implementation_dba_data: QA.QA_CHARS ,
-
Table: QA_PLANS
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLANS, object_name:QA_PLANS, status:VALID, product: QA - Quality , description: Collection plan definitions , implementation_dba_data: QA.QA_PLANS ,
-
Table: QA_CHARS
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_CHARS, object_name:QA_CHARS, status:VALID, product: QA - Quality , description: Collection elements definitions , implementation_dba_data: QA.QA_CHARS ,
-
View: QA_ACTION_LOG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ACTION_LOG_V, object_name:QA_ACTION_LOG_V, status:VALID, product: QA - Quality , description: shows the action log , implementation_dba_data: APPS.QA_ACTION_LOG_V ,
-
View: QA_ACTION_LOG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ACTION_LOG_V, object_name:QA_ACTION_LOG_V, status:VALID, product: QA - Quality , description: shows the action log , implementation_dba_data: APPS.QA_ACTION_LOG_V ,