Search Results cs_sr_action_codes_b
Overview
The CS_SR_ACTION_CODES_B table is a core data definition table within the Oracle E-Business Suite Service (CS) module. It serves as the master repository for all defined action codes, which are standardized, reusable templates for activities performed during service request management. These actions represent the fundamental units of work that can be logged against a service request, such as updating a customer, escalating an issue, or scheduling a follow-up. The table's role is to provide a centralized, validated list of actions that can be consistently applied across the service lifecycle, ensuring data integrity and process standardization. As a base table, it is the primary source from which transactional tables reference valid action definitions.
Key Information Stored
While the provided metadata does not list specific columns, the structure of a typical code base table in Oracle EBS can be inferred. The primary column is ACTION_CODE, which is the unique identifier for each action definition and serves as the table's primary key. Other columns typically include a user-facing name or description (e.g., ACTION_NAME), an enabled flag to control active status, and standard Oracle EBS columns for tracking creation and modification (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE). The data stored is primarily configuration data that defines the permissible actions within the service request workflow.
Common Use Cases and Queries
A primary use case is the population of list-of-values (LOV) components in service request forms, ensuring users select from a controlled set of actions. Administrators query this table to audit or maintain the catalog of available actions. Common reporting queries join this table to transactional tables to translate action codes into meaningful descriptions for service request activity history reports. A fundamental query pattern is retrieving all active actions:
SELECT action_code, action_name FROM cs_sr_action_codes_b WHERE enabled_flag = 'Y' ORDER BY action_code;
Another critical pattern involves joining to child transactional tables to analyze action usage:
SELECT ac.action_code, ac.action_name, COUNT(dtl.action_detail_id) FROM cs_sr_action_codes_b ac, cs_sr_action_details dtl WHERE ac.action_code = dtl.action_code GROUP BY ac.action_code, ac.action_name;
Related Objects
As documented in the foreign key relationships, CS_SR_ACTION_CODES_B is a referenced parent table for key transactional entities. The primary key (ACTION_CODE) is referenced by the following tables:
- CS_SR_ACTION_DETAILS: Links individual action log entries on a service request to their master definition via the column
CS_SR_ACTION_DETAILS.ACTION_CODE. - CS_SR_EVENT_ACTIONS: Associates defined actions with business events or rules for automated service request processing via the column
CS_SR_EVENT_ACTIONS.ACTION_CODE.
-
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 ,
-
View: CS_SR_ACTION_CODES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_ACTION_CODES_VL, object_name:CS_SR_ACTION_CODES_VL, status:VALID, product: CS - Service , description: View for all action defnitions. The view is based off cs_sr_action_codes_b and tl. , implementation_dba_data: APPS.CS_SR_ACTION_CODES_VL ,
-
View: CS_SR_ACTION_CODES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_ACTION_CODES_VL, object_name:CS_SR_ACTION_CODES_VL, status:VALID, product: CS - Service , description: View for all action defnitions. The view is based off cs_sr_action_codes_b and tl. , implementation_dba_data: APPS.CS_SR_ACTION_CODES_VL ,
-
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 ,
-
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_ACTION_DETAILS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_ACTION_DETAILS, object_name:CS_SR_ACTION_DETAILS, status:VALID, product: CS - Service , description: Table contains action details associated to all event rules. , implementation_dba_data: CS.CS_SR_ACTION_DETAILS ,
-
Table: CS_SR_ACTION_DETAILS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_ACTION_DETAILS, object_name:CS_SR_ACTION_DETAILS, status:VALID, product: CS - Service , description: Table contains action details associated to all event rules. , implementation_dba_data: CS.CS_SR_ACTION_DETAILS ,