Search Results cs_system_sr_links
Overview
The CS_SYSTEM_SR_LINKS table is a core data object within the Oracle E-Business Suite Service (CS) module. It functions as a junction or intersection table, establishing and maintaining the many-to-many relationships between service requests (incidents) and installed systems. This table is critical for linking customer-reported issues, tracked as service requests, to the specific product instances or configurations (systems) that are the subject of those issues. Its role is to provide a normalized data structure that enables comprehensive service history tracking, asset-specific problem analysis, and accurate reporting on which systems are most frequently involved in support cases.
Key Information Stored
The table's primary function is to store foreign key references that create the link between two major entities. The most important columns are the foreign keys themselves: INCIDENT_ID and SYSTEM_ID. The INCIDENT_ID column references the CS_INCIDENTS_ALL_B table, which holds the master record for the service request. The SYSTEM_ID column references the CS_SYSTEMS_ALL_B table, which contains the definition and details of the installed base system or item instance. The table's primary key, SYSTEM_SR_LINK_ID, is a unique identifier for each link record, ensuring data integrity. Additional descriptive columns may exist to qualify the nature of the link, though they are not detailed in the provided metadata.
Common Use Cases and Queries
A primary use case is generating reports that list all service requests associated with a particular system, which is essential for asset lifecycle management and warranty tracking. Conversely, it is used to retrieve all systems linked to a specific service request to understand the full scope of an issue. Common SQL queries involve joining this table to both the service request and system master tables. For example, to find all service requests for a given system ID:
- SELECT inc.incident_number, inc.summary FROM cs_system_sr_links lnk, cs_incidents_all_b inc WHERE lnk.incident_id = inc.incident_id AND lnk.system_id = :p_system_id;
Another critical use case is during service request creation and update processes via the user interface or APIs, where links to systems are added or removed, resulting in inserts or deletes in this table.
Related Objects
As defined by its foreign key constraints, CS_SYSTEM_SR_LINKS has direct, dependent relationships with two fundamental Service module tables. The CS_INCIDENTS_ALL_B table is the primary service request transaction table. The CS_SYSTEMS_ALL_B table is the master table for installed base systems and item instances. The integrity of the data in CS_SYSTEM_SR_LINKS is enforced by the primary key constraint CS_SYSTEM_SR_LINKS_PK on SYSTEM_SR_LINK_ID. This table is also likely referenced by various service-related views and is integral to the logic within public Service Request APIs used for creating and updating linked data.
-
Table: CS_SYSTEM_SR_LINKS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_SR_LINKS, object_name:CS_SYSTEM_SR_LINKS, status:VALID, product: CS - Service , implementation_dba_data: CS.CS_SYSTEM_SR_LINKS ,
-
Table: CS_SYSTEM_SR_LINKS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_SR_LINKS, object_name:CS_SYSTEM_SR_LINKS, status:VALID, product: CS - Service , implementation_dba_data: CS.CS_SYSTEM_SR_LINKS ,
-
View: CS_SYSTEM_SR_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_SR_LINKS_V, object_name:CS_SYSTEM_SR_LINKS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEM_SR_LINKS_V ,
-
Table: CS_SYSTEMS_ALL_B
12.1.1
product: CS - Service , description: Systems , implementation_dba_data: Not implemented in this database ,
-
Table: CS_SYSTEMS_ALL_B
12.2.2
product: CS - Service , description: Systems , implementation_dba_data: Not implemented in this database ,
-
View: CS_SYSTEM_SR_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_SR_LINKS_V, object_name:CS_SYSTEM_SR_LINKS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEM_SR_LINKS_V ,
-
Table: CS_INCIDENTS_ALL_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID, product: CS - Service , description: This table stores non-translated information about service requests. , implementation_dba_data: CS.CS_INCIDENTS_ALL_B ,
-
Table: CS_INCIDENTS_ALL_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID, product: CS - Service , description: This table stores non-translated information about service requests. , implementation_dba_data: CS.CS_INCIDENTS_ALL_B ,