Search Results pa_ci_actions
Overview
The PA_CI_ACTIONS table is a core transactional entity within the Oracle E-Business Suite Projects module, specifically for the Control Items functionality. It serves as the definitive action log or audit trail for every control item (CI) created in the system. Each row in this table represents a discrete action performed on a control item, such as its creation, assignment, status update, or closure. Its primary role is to persistently store the complete context of each request and its corresponding response, ensuring a full historical record of the control item's lifecycle for compliance, reporting, and process management.
Key Information Stored
The table's structure is designed to capture the who, what, when, and why of each control item action. The primary key, CI_ACTION_ID, uniquely identifies each logged action. The most critical foreign key is CI_ID, which ties every action to its parent control item in the PA_CONTROL_ITEMS table. Other essential columns include STATUS_CODE, linking the action to a defined project status, and ASSIGNED_TO, which records the party (from HZ_PARTIES) responsible for the action. The table also supports action chaining through the SOURCE_CI_ACTION_ID column, which can reference a prior action within the same table, enabling the tracking of related or follow-up activities.
Common Use Cases and Queries
This table is central to generating audit reports and analyzing the workflow of control items. Common use cases include tracing the complete history of a specific control item, measuring turnaround times between status changes, and identifying bottlenecks in the review process. A typical query would join PA_CI_ACTIONS to PA_CONTROL_ITEMS and HZ_PARTIES to produce a detailed action log. For example:
- To retrieve the full audit trail for a control item:
SELECT a.* FROM pa_ci_actions a WHERE a.ci_id = :p_ci_id ORDER BY a.creation_date; - To report on all actions performed by a specific assignee within a date range:
SELECT ci.ci_number, a.status_code, a.creation_date FROM pa_ci_actions a, pa_control_items ci WHERE a.ci_id = ci.ci_id AND a.assigned_to = :p_party_id AND a.creation_date BETWEEN :p_start_date AND :p_end_date;
Related Objects
PA_CI_ACTIONS is a hub within the Control Items schema, with several key dependencies. Its primary relationship is with the PA_CONTROL_ITEMS table, the master for all control items. It references the PA_PROJECT_STATUSES table for valid status codes and the HZ_PARTIES table for resource assignment. The self-referencing foreign key on SOURCE_CI_ACTION_ID indicates a hierarchical relationship between actions. Furthermore, the PA_CI_COMMENTS table is a direct child, storing comments linked to specific actions via the CI_ACTION_ID column, forming a complete record of communication for each step in the process.
-
Table: PA_CI_ACTIONS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CI_ACTIONS, object_name:PA_CI_ACTIONS, status:VALID, product: PA - Projects , description: This table stores the action log for each control item. Each entry stores the complete requesting information and response. , implementation_dba_data: PA.PA_CI_ACTIONS ,
-
Table: PA_CI_ACTIONS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CI_ACTIONS, object_name:PA_CI_ACTIONS, status:VALID, product: PA - Projects , description: This table stores the action log for each control item. Each entry stores the complete requesting information and response. , implementation_dba_data: PA.PA_CI_ACTIONS ,
-
APPS.PA_MERGE_PKG dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CONTROL_API_PVT dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CI_ACTIONS_PKG dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_TASK_PUB1 dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.HZ_PURGE_GEN dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CI_ACTIONS_UTIL dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_TASK_WORKFLOW_PKG dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CI_ACTIONS_UTIL dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_MERGE_PKG dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CI_MERGE_PKG dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CI_ACTIONS_PVT dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_API_PUB dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_API_PUB dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CONTROL_API_PUB dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CI_SECURITY_PKG dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CI_ACTIONS_PVT dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CONTROL_API_PUB dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_COPY_CHANGE_DOC_PVT dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.HZ_PURGE_GEN dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_ITEMS_UTILS dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CI_SECURITY_PKG dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CI_MERGE_PKG dependencies on PA_CI_ACTIONS
12.2.2
-
APPS.PA_CI_ACTIONS_PKG dependencies on PA_CI_ACTIONS
12.1.1
-
APPS.PA_CONTROL_API_PVT dependencies on PA_CI_ACTIONS
12.2.2
-
VIEW: PA.PA_CI_ACTIONS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_CI_ACTIONS#, status:VALID,
-
APPS.PA_CI_SECURITY_PKG dependencies on PA_PROJECT_STATUSES
12.2.2
-
VIEW: APPS.PA_CI_ACTIONS_V
12.1.1
-
APPS.PA_CI_ACTIONS_PVT SQL Statements
12.1.1
-
APPS.PA_CI_SECURITY_PKG dependencies on PA_PROJECT_STATUSES
12.1.1
-
VIEW: APPS.PA_CI_ACTIONS_V
12.2.2
-
APPS.PA_CI_ACTIONS_PKG SQL Statements
12.1.1
-
APPS.PA_CI_ACTIONS_PKG SQL Statements
12.2.2
-
APPS.PA_CI_ACTIONS_PVT SQL Statements
12.2.2
-
VIEW: PA.PA_CI_ACTIONS#
12.2.2
-
SYNONYM: APPS.PA_CI_ACTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_CI_ACTIONS, status:VALID,
-
Table: PA_CI_COMMENTS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CI_COMMENTS, object_name:PA_CI_COMMENTS, status:VALID, product: PA - Projects , description: This table stores all the comments in the action log. A comment can be a requestor, closure or progress comment on an action, or unsolicited comment to the control item. For each action, there will be only one requestor comment and one cl , implementation_dba_data: PA.PA_CI_COMMENTS ,
-
APPS.PA_TASK_PUB1 dependencies on PA_CONTROL_ITEMS
12.2.2
-
SYNONYM: APPS.PA_CI_ACTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_CI_ACTIONS, status:VALID,
-
Table: PA_CI_COMMENTS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CI_COMMENTS, object_name:PA_CI_COMMENTS, status:VALID, product: PA - Projects , description: This table stores all the comments in the action log. A comment can be a requestor, closure or progress comment on an action, or unsolicited comment to the control item. For each action, there will be only one requestor comment and one cl , implementation_dba_data: PA.PA_CI_COMMENTS ,
-
APPS.PA_CI_SECURITY_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_CI_ACTIONS_PKG
12.2.2
-
VIEW: APPS.PA_CI_COMMENTS_V
12.1.1
-
VIEW: APPS.PA_CI_COMMENTS_V
12.2.2
-
APPS.PA_CI_SECURITY_PKG SQL Statements
12.1.1