Search Results cp_subcomponent_id
Overview
APPS.CS_SYSTEM_SR_LINKS_V is a reporting and integration view in the Oracle E-Business Suite Service (CS) module. It exposes the association between service request (SR) records and the systems and customer products they relate to. In Oracle EBS 12.1.1 and 12.2.2, the CS schema uses this view to present a denormalized picture of SR-to-system linkage, combining incident attributes with system identification and customer product configuration data. The view is registered in FND Design Data under the identifier CS.CS_SYSTEM_SR_LINKS_V, has VALID status, and is owned by the APPS schema. Because it is a view rather than a base table, it offers a stable, read-oriented access path for concurrent programs, Oracle Applications-standard reports, and downstream integrations that need to resolve which system or customer product an SR is tied to. Oracle's standard warning applies: the object is intended for Oracle Applications internal use and is not supported for direct customer access except through standard Oracle Applications programs.
Underlying Base Objects
The ETRM metadata documents the view as being defined over three referenced objects:
- CS_INCIDENTS_ALL_VL (VIEW) — the language-enabled service request incident view that supplies the core SR fields such as INCIDENT_ID, INCIDENT_NUMBER, status, type, urgency, severity, owner, and summary.
- CS_SYSTEMS_ALL_VL (SYNONYM) — the system definition source that contributes SYSTEM_ID and related NAME values describing the installed system associated with the SR.
- CS_SYSTEM_SR_LINKS (SYNONYM) — the linkage entity that stores the relationship between incidents and systems, including the customer product configuration references.
This structure indicates that the view joins incident information to system linkage records, projecting the combined result set. The linkage records drive the customer product columns (CP_COMPONENT_ID, CP_COMPONENT_VERSION_ID, CP_SUBCOMPONENT_ID, CP_SUBCOMPONENT_VERSION_ID, CP_REVISION_ID) and the inventory columns (INVENTORY_ITEM_ID, INV_COMPONENT_ID, INV_ORGANIZATION_ID, INV_ITEM_REVISION), while incident and system attributes come from the incident and system views respectively.
Key Columns
The view exposes a broad set of columns organized around two themes: the service request and the linked system/product configuration. The user's search term, CP_COMPONENT_ID, is the customer product component identifier — the primary key of the component within the customer product configuration that the SR is linked against. It is accompanied by version and subcomponent counterparts:
- INCIDENT_ID / INCIDENT_NUMBER — primary key and human-readable number of the service request.
- SYSTEM_ID / NAME — the installed system record and its descriptive name.
- INCIDENT_STATUS_ID, INCIDENT_TYPE_ID, INCIDENT_URGENCY_ID, INCIDENT_SEVERITY_ID, INCIDENT_OWNER_ID — SR classification and ownership attributes.
- CUSTOMER_PRODUCT_ID, CUSTOMER_ID, ACCOUNT_ID — customer product instance, customer, and account context.
- CP_COMPONENT_ID — the customer product component identifier linking the SR to a specific component of the configured product.
- CP_COMPONENT_VERSION_ID, CP_SUBCOMPONENT_ID, CP_SUBCOMPONENT_VERSION_ID, CP_REVISION_ID — versioning and subcomponent detail for the linked component.
- INVENTORY_ITEM_ID, INV_COMPONENT_ID, INV_ORGANIZATION_ID, INV_ITEM_REVISION — inventory-side identity and revision of the item.
- RESOURCE_TYPE, RESOURCE_SUBTYPE_ID, PROBLEM_CODE, CALLER_TYPE, SUMMARY, SR_CREATION_CHANNEL — SR context and classification.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER.
Common Use Cases and Queries
Typical usage resolves the components linked to service requests for a system, or identifies all SRs tied to a given customer product component. A representative query filtering by component follows:
- List SRs for a specific customer product component:
SELECT incident_number, name, summary, cp_component_id, cp_component_version_id, customer_product_id FROM apps.cs_system_sr_links_v WHERE cp_component_id = :component_id; - List all linked components for a system's incidents:
SELECT incident_number, system_id, cp_component_id, inventory_item_id, inv_item_revision FROM apps.cs_system_sr_links_v WHERE system_id = :system_id; - Retrieve open SRs by status and component:
SELECT s.incident_number, s.summary, s.incident_status_id, s.cp_component_id FROM apps.cs_system_sr_links_v s WHERE s.incident_status_id = :status AND s.cp_component_id IS NOT NULL;
These queries support service reporting, component failure analysis, and integration extracts. Because the view is Oracle Internal Use Only, it should be consumed only through supported Applications interfaces or carefully controlled reporting, with attention to the 12.1.1/12.2.2 column definitions and the audit and version columns that enforce data currency.
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
APPS.CS_SR_FUL_PKG SQL Statements
12.1.1
-
APPS.CS_SR_FUL_PKG SQL Statements
12.2.2
-
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 ,
-
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 ,
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID,
-
APPS.CS_CREATE_AUDIT_REC_PKG SQL Statements
12.2.2
-
VIEW: APPS.CS_SR_SERVICE_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V, object_name:CS_SR_SERVICE_HISTORY_V, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID,
-
VIEW: APPS.CS_NEW_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID,
-
VIEW: APPS.CS_SR_SERVICE_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V, object_name:CS_SR_SERVICE_HISTORY_V, status:VALID,
-
View: CS_NEW_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: This is a secured view created on top of the view CS_NEW_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V_SEC ,
-
APPS.CS_CREATE_AUDIT_REC_PKG SQL Statements
12.1.1
-
VIEW: CS.CS_INCIDENTS_ALL_B#
12.2.2
-
View: CS_SR_SERVICE_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V, object_name:CS_SR_SERVICE_HISTORY_V, status:VALID, product: CS - Service , description: This view is being used by Service History Tab , implementation_dba_data: APPS.CS_SR_SERVICE_HISTORY_V ,
-
View: CS_SR_SERVICE_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V, object_name:CS_SR_SERVICE_HISTORY_V, status:VALID, product: CS - Service , description: This view is being used by Service History Tab , implementation_dba_data: APPS.CS_SR_SERVICE_HISTORY_V ,
-
View: CS_NEW_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
View: CS_NEW_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V_SEC, object_name:CS_NEW_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: This is a secured view created on top of the view CS_NEW_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V_SEC ,
-
View: CS_NEW_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_NEW_INCIDENTS_V, object_name:CS_NEW_INCIDENTS_V, status:VALID, product: CS - Service , description: This is a simplified version of view CS_INCIDENTS_V , implementation_dba_data: APPS.CS_NEW_INCIDENTS_V ,
-
TYPE: SYSTEM.CS_SR_SERVICE_REQUEST_I_T
12.1.1
owner:SYSTEM, object_type:TYPE, object_name:CS_SR_SERVICE_REQUEST_I_T, status:VALID,
-
APPS.CS_AUDIT_UPGRADE_CON_PRG SQL Statements
12.1.1
-
APPS.CS_SR_TASK_AUTOASSIGN_PKG SQL Statements
12.1.1
-
TYPE: SYSTEM.CS_SR_SERVICE_REQUEST_O_T
12.2.2
owner:SYSTEM, object_type:TYPE, object_name:CS_SR_SERVICE_REQUEST_O_T, status:VALID,
-
TYPE: SYSTEM.CS_SR_SERVICE_REQUEST_I_T
12.2.2
owner:SYSTEM, object_type:TYPE, object_name:CS_SR_SERVICE_REQUEST_I_T, status:VALID,
-
TYPE: SYSTEM.CS_SR_SERVICE_REQUEST_O_T
12.1.1
owner:SYSTEM, object_type:TYPE, object_name:CS_SR_SERVICE_REQUEST_O_T, status:VALID,
-
VIEW: CS.CS_INCIDENTS_AUDIT_B#
12.2.2
-
APPS.CS_AUDIT_UPGRADE_CON_PRG SQL Statements
12.2.2
-
Lookup Type: CS_SR_AUDIT_FIELDS
12.1.1
product: CS - Service , meaning: CS_SR_AUDIT_FIELDS ,
-
VIEW: APPS.CS_SR_SEARCH_NO_CONT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID,
-
VIEW: APPS.CS_SR_SEARCH_NO_CONT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID,
-
View: CS_SR_SEARCH_NO_CONT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table and in the Service History Bali Spreadtable of SR Tab , implementation_dba_data: APPS.CS_SR_SEARCH_NO_CONT_V ,
-
View: CS_SR_SEARCH_NO_CONT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table and in the Service History Bali Spreadtable of SR Tab , implementation_dba_data: APPS.CS_SR_SEARCH_NO_CONT_V ,
-
View: CS_SR_ACCESS_RESP_SEC
12.2.2
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_VL_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , description: Multi-lingual Secured view based on CS_INCIDENTS_ALL_B_SEC_V view and CS_INCIDENTS_ALL_TL table. , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_INCIDENTS_B_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_B_SEC, object_name:CS_INCIDENTS_B_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_B_SEC ,
-
View: CS_INCIDENTS_B_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
APPS.CS_SR_TASK_AUTOASSIGN_PKG SQL Statements
12.2.2
-
View: CS_SR_ACCESS_RESP_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: CS_SR_AUDIT_FIELDS
12.2.2
product: CS - Service , meaning: CS_SR_AUDIT_FIELDS ,
-
View: CS_INCIDENTS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CSF_SR_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_SR_HIST_V, object_name:CSF_SR_HIST_V, status:VALID, product: CSF - Field Service , description: Service History Extension View , implementation_dba_data: APPS.CSF_SR_HIST_V ,
-
View: CS_SR_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_SR_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_INCIDENTS_VL_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_SR_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,
-
View: CSF_SR_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_SR_HIST_V, object_name:CSF_SR_HIST_V, status:VALID, product: CSF - Field Service , description: Service History Extension View , implementation_dba_data: APPS.CSF_SR_HIST_V ,
-
View: CS_INCIDENTS_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CS_SR_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,