Search Results cs_system_party_links
Overview
CS_SYSTEM_PARTY_LINKS is a Service (CS) module table in the Oracle E-Business Suite 12.1.1 and 12.2.2 environments. It establishes the association between an operational system record and the party (customer, contact, or organization) that the system serves. The table resides in the CS schema and is classified as a link table under a heuristic Data Vault modeling suggestion derived from its foreign key structure. As a link, it resolves many-to-many relationships between two business hubs: the party hub (HZ_PARTIES) and the system hub (CS_SYSTEMS_ALL_B). It carries only the keys, a surrogate identifier, and audit columns, allowing the CS module to represent which parties are bound to a given instance of installed base equipment or service system.
Key Information Stored
The table contains 12 documented columns. The most significant are:
- SYSTEM_PARTY_LINK_ID — Surrogate primary key defined by CS_SYSTEM_PARTY_LINKS_PK and reinforced by the unique index CS_SYSTEM_PARTY_LINKS_U1.
- SYSTEM_ID — Foreign key to CS_SYSTEMS_ALL_B; identifies the system record to which the party is linked.
- PARTY_ID — Foreign key to HZ_PARTIES; identifies the party (customer, contact, or organization) associated with the system.
- START_DATE and END_DATE — Effective dating for the party-to-system association, supporting historical tracking.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard EBS audit columns.
- OBJECT_VERSION_NUMBER — Optimistic locking column for concurrent update control.
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS, enforcing multi-org or security group visibility.
Because no business columns beyond the two foreign keys and the date range exist, the table is a pure association link rather than a descriptive satellite.
Common Use Cases and Queries
Typical reporting scenarios include identifying all parties associated with a piece of service system, validating effective party-system relationships, and reconciling installed base data for service contracts. A representative query joining the link table to its hubs follows:
- List parties for a given system:
SELECT p.party_name, l.start_date, l.end_date
FROM cs.cs_system_party_links l, hz_parties p
WHERE l.party_id = p.party_id
AND l.system_id = :system_id; - Retrieve all systems linked to a recognized customer:
SELECT s.system_number, l.start_date
FROM cs.cs_system_party_links l, cs.cs_systems_all_b s
WHERE l.system_id = s.system_id
AND l.party_id = :party_id; - Check active associations within a validity window by comparing SYSDATE against START_DATE and END_DATE.
These patterns support service dashboards, installed base analysis, and data migration validation between legacy and 12.2.2 instances.
Related Objects
- HZ_PARTIES — Joined via CS_SYSTEM_PARTY_LINKS.PARTY_ID to HZ_PARTIES.PARTY_ID; supplies party identity and profile data.
- CS_SYSTEMS_ALL_B — Joined via CS_SYSTEM_PARTY_LINKS.SYSTEM_ID to CS_SYSTEMS_ALL_B.SYSTEM_ID; supplies system/installed base records.
- FND_SECURITY_GROUPS — Joined via SECURITY_GROUP_ID; governs row-level security and multi-org access.
- CS_SYSTEMS_ALL_TL — Translation table commonly joined with CS_SYSTEMS_ALL_B to resolve system names for reporting.
- HZ_CUST_ACCOUNTS and HZ_ORG_CONTACTS — Reference party context when the association must be resolved to a customer account or contact role.
- CS_INCIDENTS_ALL and CS_SERVICE_REQUESTS — Service transaction tables that consume party-system links when locating the correct party for a system-related incident.
Together these objects form the service data model that connects customers, parties, and installed base systems within Oracle EBS 12.1.1 and 12.2.2.
-
Table: CS_SYSTEM_PARTY_LINKS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS, object_name:CS_SYSTEM_PARTY_LINKS, status:VALID, product: CS - Service , implementation_dba_data: CS.CS_SYSTEM_PARTY_LINKS ,
-
Table: CS_SYSTEM_PARTY_LINKS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS, object_name:CS_SYSTEM_PARTY_LINKS, status:VALID, product: CS - Service , implementation_dba_data: CS.CS_SYSTEM_PARTY_LINKS ,
-
VIEW: CS.CS_SYSTEM_PARTY_LINKS#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_SYSTEM_PARTY_LINKS#, status:VALID,
-
APPS.CS_SYSTEM_LINK_UTIL SQL Statements
12.1.1
-
APPS.CS_SYSTEM_LINK_UTIL SQL Statements
12.2.2
-
SYNONYM: APPS.CS_SYSTEM_PARTY_LINKS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEM_PARTY_LINKS, status:VALID,
-
SYNONYM: APPS.CS_SYSTEM_PARTY_LINKS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEM_PARTY_LINKS, status:VALID,
-
VIEW: CS.CS_SYSTEM_PARTY_LINKS#
12.2.2
-
VIEW: APPS.CS_SYSTEM_PARTY_LINKS_V
12.2.2
-
VIEW: APPS.CS_SYSTEM_PARTY_LINKS_V
12.1.1
-
TABLE: CS.CS_SYSTEM_PARTY_LINKS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS, object_name:CS_SYSTEM_PARTY_LINKS, status:VALID,
-
TABLE: CS.CS_SYSTEM_PARTY_LINKS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS, object_name:CS_SYSTEM_PARTY_LINKS, status:VALID,
-
Table: CS_SYSTEMS_ALL_B
12.1.1
product: CS - Service , description: Systems , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.CS_SYSTEM_LINK_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SYSTEM_LINK_UTIL, status:VALID,
-
PACKAGE BODY: APPS.CS_SYSTEM_LINK_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SYSTEM_LINK_UTIL, status:VALID,
-
View: CS_SYSTEM_PARTY_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS_V, object_name:CS_SYSTEM_PARTY_LINKS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEM_PARTY_LINKS_V ,
-
Table: CS_SYSTEMS_ALL_B
12.2.2
product: CS - Service , description: Systems , implementation_dba_data: Not implemented in this database ,
-
View: CS_SYSTEM_PARTY_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS_V, object_name:CS_SYSTEM_PARTY_LINKS_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEM_PARTY_LINKS_V ,
-
VIEW: APPS.CS_SYSTEM_PARTY_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS_V, object_name:CS_SYSTEM_PARTY_LINKS_V, status:VALID,
-
VIEW: APPS.CS_SYSTEM_PARTY_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_PARTY_LINKS_V, object_name:CS_SYSTEM_PARTY_LINKS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design 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.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CS_SYSTEM_LINK_UTIL
12.2.2
-
PACKAGE BODY: APPS.CS_SYSTEM_LINK_UTIL
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on CS_SYSTEM_PARTY_LINKS
12.2.2
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on CS_SYSTEM_PARTY_LINKS
12.1.1
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on CS_SYSTEM_PARTY_LINKS_S1
12.2.2
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on CS_SYSTEM_PARTY_LINKS_S1
12.1.1
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on DUAL
12.2.2
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on DUAL
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. ,
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on FND_MSG_PUB
12.1.1
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on FND_MSG_PUB
12.2.2
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on FND_API
12.1.1
-
APPS.CS_SYSTEM_LINK_UTIL dependencies on FND_API
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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