Search Results cs_sr_event_actions
Overview
The CS_SR_EVENT_ACTIONS table is a core configuration table within the Oracle E-Business Suite Service (CS) module, specifically for releases 12.1.1 and 12.2.2. It functions as a junction or association table that defines the valid relationships between Service Request (SR) events and corresponding actions. This table is essential for the application's business logic, governing which automated or manual actions can be triggered in response to specific events that occur during the lifecycle of a service request. By maintaining these associations, it enables structured workflow automation and ensures that only permissible actions are available for a given event, enforcing data integrity and process consistency.
Key Information Stored
The table's structure is relatively simple, as its primary purpose is to store association pairs. The two critical columns, which together form the table's primary key, are EVENT_CODE and ACTION_CODE. The EVENT_CODE column stores a reference to a specific event defined in the CS_SR_EVENT_CODES_B table, such as 'SR_CREATED' or 'SR_UPDATED'. The ACTION_CODE column stores a reference to a permissible action defined in the CS_SR_ACTION_CODES_B table, such as 'CREATE_TASK' or 'SEND_EMAIL'. The combination of these two codes creates a unique, valid event-action rule. The table does not store transactional data but rather the master list of allowed associations that transactional logic references.
Common Use Cases and Queries
The primary use case is to validate and determine which actions are available when an event is raised by the application or a user. For instance, when a service request's status changes, the system queries this table to identify all configured actions linked to that status change event. Common reporting or validation queries include listing all actions for a specific event or verifying if a particular event-action pair is active. A typical SQL pattern would involve joining to the referenced code tables to retrieve meaningful names:
- SELECT evt.name event_name, act.name action_name FROM cs_sr_event_actions assoc, cs_sr_event_codes_b evt, cs_sr_action_codes_b act WHERE assoc.event_code = evt.event_code AND assoc.action_code = act.action_code ORDER BY 1, 2;
- Administrators may also query this table to audit or modify the setup of SR workflow rules, ensuring the correct business processes are automated.
Related Objects
The CS_SR_EVENT_ACTIONS table has direct, documented foreign key relationships with two foundational code tables, as provided in the ETRM metadata. These relationships are critical for understanding its dependencies and for constructing accurate joins in queries.
- CS_SR_EVENT_CODES_B: The EVENT_CODE column in CS_SR_EVENT_ACTIONS references this table. It provides the master list of all defined event types within the Service module.
- CS_SR_ACTION_CODES_B: The ACTION_CODE column in CS_SR_EVENT_ACTIONS references this table. It contains the master list of all possible actions that can be performed.
These relationships enforce referential integrity, meaning an association cannot be created for an event or action that does not exist in the respective master code table. This table is a central link in the chain of objects that define and execute Service Request business rules.
-
Table: CS_SR_EVENT_ACTIONS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_EVENT_ACTIONS, object_name:CS_SR_EVENT_ACTIONS, status:VALID, product: CS - Service , description: Tale defines valid event-action associations. , implementation_dba_data: CS.CS_SR_EVENT_ACTIONS ,
-
Table: CS_SR_EVENT_ACTIONS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_EVENT_ACTIONS, object_name:CS_SR_EVENT_ACTIONS, status:VALID, product: CS - Service , description: Tale defines valid event-action associations. , implementation_dba_data: CS.CS_SR_EVENT_ACTIONS ,
-
APPS.CS_SR_EVENT_ACTIONS_PKG dependencies on CS_SR_EVENT_ACTIONS
12.1.1
-
APPS.CS_SR_EVENT_ACTIONS_PKG dependencies on CS_SR_EVENT_ACTIONS
12.2.2
-
VIEW: CS.CS_SR_EVENT_ACTIONS#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_SR_EVENT_ACTIONS#, status:VALID,
-
TRIGGER: APPS.CS_SR_EVENT_ACTIONS+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CS_SR_EVENT_ACTIONS+, status:VALID,
-
VIEW: CS.CS_SR_EVENT_ACTIONS#
12.2.2
-
SYNONYM: APPS.CS_SR_EVENT_ACTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_SR_EVENT_ACTIONS, status:VALID,
-
SYNONYM: APPS.CS_SR_EVENT_ACTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_SR_EVENT_ACTIONS, status:VALID,
-
APPS.CS_SR_EVENT_ACTIONS_PKG SQL Statements
12.1.1
-
TRIGGER: APPS.CS_SR_EVENT_ACTIONS+
12.2.2
-
APPS.CS_SR_EVENT_ACTIONS_PKG SQL Statements
12.2.2
-
FUNCTION: APPS.CS_SR_EVENT_ACTIONS=
12.2.2
-
PACKAGE BODY: APPS.CS_SR_EVENT_ACTIONS_PKG
12.1.1
-
Table: CS_SR_EVENT_CODES_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_EVENT_CODES_B, object_name:CS_SR_EVENT_CODES_B, status:VALID, product: CS - Service , description: Base table for all event definitions. , implementation_dba_data: CS.CS_SR_EVENT_CODES_B ,
-
Table: CS_SR_ACTION_CODES_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_ACTION_CODES_B, object_name:CS_SR_ACTION_CODES_B, status:VALID, product: CS - Service , description: Base table for all action definitions. , implementation_dba_data: CS.CS_SR_ACTION_CODES_B ,
-
Table: CS_SR_ACTION_CODES_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_ACTION_CODES_B, object_name:CS_SR_ACTION_CODES_B, status:VALID, product: CS - Service , description: Base table for all action definitions. , implementation_dba_data: CS.CS_SR_ACTION_CODES_B ,
-
PACKAGE BODY: APPS.CS_SR_EVENT_ACTIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_EVENT_ACTIONS_PKG, status:VALID,
-
TABLE: CS.CS_SR_EVENT_ACTIONS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_EVENT_ACTIONS, object_name:CS_SR_EVENT_ACTIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CS_SR_EVENT_ACTIONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_EVENT_ACTIONS_PKG, status:VALID,
-
TABLE: CS.CS_SR_EVENT_ACTIONS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_EVENT_ACTIONS, object_name:CS_SR_EVENT_ACTIONS, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_EVENT_ACTIONS_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: CS_SR_EVENT_CODES_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_EVENT_CODES_B, object_name:CS_SR_EVENT_CODES_B, status:VALID, product: CS - Service , description: Base table for all event definitions. , implementation_dba_data: CS.CS_SR_EVENT_CODES_B ,
-
FUNCTION: APPS.CS_SR_EVENT_ACTIONS=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:CS_SR_EVENT_ACTIONS=, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,