Search Results cs_systems_all_b
Overview
The CS_SYSTEMS_ALL_B table is the central master data repository for Service Request (SR) and Installed Base management within the Oracle E-Business Suite (EBS) Service (CS) module. It represents the physical or logical systems, equipment, or configurations that a customer owns and for which service can be requested. This table stores the core definition of a "System," which is a fundamental entity linking customers, their products, service history, and related transactions. Its role is critical for enabling service contracts, tracking service requests against specific assets, and managing the hierarchical relationships between complex system configurations.
Key Information Stored
While the specific column list is not detailed in the provided metadata, the foreign key relationships clearly define the critical data linkages stored in this table. The primary key is SYSTEM_ID. Essential foreign keys include CUSTOMER_ID, linking the system to the customer account (HZ_CUST_ACCOUNTS), and PARENT_SYSTEM_ID, which enables the creation of parent-child system hierarchies for modeling complex assemblies. The table also stores key location and contact information through foreign keys to site uses (INSTALL_SITE_USE_ID, SHIP_TO_SITE_USE_ID, BILL_TO_SITE_USE_ID) and parties (TECHNICAL_CONTACT_ID, SERVICE_ADMIN_CONTACT_ID). The AUTOCREATED_FROM_SYSTEM_ID column supports scenarios where systems are automatically generated from other systems.
Common Use Cases and Queries
Common operational and reporting scenarios involve querying this table to understand customer assets. A fundamental query retrieves all systems for a specific customer, often joining with the TCA (Trading Community Architecture) tables for customer details and the CS_CUSTOMER_PRODUCTS_ALL table for product information. Another critical use case is traversing system hierarchies to generate a complete bill of materials for a top-level asset, using recursive SQL or CONNECT BY queries on the PARENT_SYSTEM_ID self-referential foreign key. Analysts also frequently join CS_SYSTEMS_ALL_B with CS_SERVICE_REQUESTS (via CS_SYSTEM_SR_LINKS) to report on service history and incident patterns per asset.
- Sample Query: Fetch system hierarchy for a root system:
SELECT LEVEL, system_id, parent_system_id FROM cs_systems_all_b START WITH system_id = &root_id CONNECT BY PRIOR system_id = parent_system_id; - Sample Query: List systems with customer and install location:
SELECT css.system_id, hca.account_number, hps.party_site_name FROM cs_systems_all_b css, hz_cust_accounts hca, hz_party_sites hps WHERE css.customer_id = hca.cust_account_id AND css.install_site_use_id = hps.party_site_id;
Related Objects
CS_SYSTEMS_ALL_B is a cornerstone table with extensive relationships. As per the metadata, it is directly referenced by several key service tables: CS_CUSTOMER_PRODUCTS_ALL (for products installed on the system), CS_SYSTEM_SR_LINKS (linking systems to service requests), and CS_SYSTEM_AUDIT (tracking changes to system attributes and hierarchy). It also has a self-referential relationship for modeling parent-child system structures. The table is deeply integrated with the TCA schema, linking to HZ_CUST_ACCOUNTS, HZ_PARTIES, and HZ_PARTY_SITES for customer, contact, and location data. In standard EBS deployments, this table is complemented by the corresponding _TL (translation) and _VL (view) objects for multilingual support.
-
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 ,
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on CS_SYSTEMS_ALL_B
12.1.1
-
APPS.OKS_OMINT_PUB dependencies on CS_SYSTEMS_ALL_B
12.2.2
-
APPS.OKS_OMINT_PUB dependencies on CS_SYSTEMS_ALL_B
12.1.1
-
APPS.OKS_ENTITLEMENTS_WEB dependencies on CS_SYSTEMS_ALL_B
12.1.1
-
APPS.OKS_ENTITLEMENTS_WEB dependencies on CS_SYSTEMS_ALL_B
12.2.2
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on CS_SYSTEMS_ALL_B
12.2.2
-
Table: CS_SYSTEM_AUDIT
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_AUDIT, object_name:CS_SYSTEM_AUDIT, status:VALID, product: CS - Service , description: Audit information for system attributes , implementation_dba_data: CS.CS_SYSTEM_AUDIT ,
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on HZ_CUST_ACCOUNTS
12.1.1
-
Table: CS_SYSTEM_AUDIT
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SYSTEM_AUDIT, object_name:CS_SYSTEM_AUDIT, status:VALID, product: CS - Service , description: Audit information for system attributes , implementation_dba_data: CS.CS_SYSTEM_AUDIT ,
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on HZ_CUST_ACCOUNTS
12.2.2
-
VIEW: APPS.CS_SYSTEMS_ALL_B_DFV
12.1.1
-
VIEW: APPS.CS_SYSTEMS_ALL_B_DFV
12.2.2
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on HZ_PARTIES
12.1.1
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on HZ_PARTIES
12.2.2
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on FND_USER
12.1.1
-
APPS.CS_SYSTEMS_COMMON_PUB dependencies on FND_USER
12.2.2
-
APPS.OKS_ENTITLEMENTS_WEB dependencies on CS_SYSTEMS_ALL_TL
12.1.1
-
APPS.OKS_ENTITLEMENTS_WEB dependencies on CS_SYSTEMS_ALL_TL
12.2.2
-
VIEW: APPS.CS_SYSTEMS_VL
12.1.1
-
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: APPS.OKX_SYSTEMS_V
12.1.1
-
VIEW: APPS.OKX_SYSTEMS_V
12.2.2
-
VIEW: APPS.CS_SYSTEMS_VL
12.2.2
-
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 ,
-
SYNONYM: APPS.CS_SYSTEMS_ALL_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEMS_ALL_B, status:VALID,
-
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: APPS.CS_SYSTEMS_ALL_B_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:CS_SYSTEMS_ALL_B_DFV, status:VALID,
-
Table: CS_LINE_INST_DETAILS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_LINE_INST_DETAILS, object_name:CS_LINE_INST_DETAILS, status:VALID, product: CS - Service , description: Installation details of a product captured at the time of order or quote entry. , implementation_dba_data: CS.CS_LINE_INST_DETAILS ,
-
SYNONYM: APPS.CS_SYSTEMS_ALL_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEMS_ALL_B, status:VALID,
-
PACKAGE BODY: APPS.CS_SYSTEMS_COMMON_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SYSTEMS_COMMON_PUB, status:VALID,
-
APPS.CS_SYSTEMS_COMMON_PUB SQL Statements
12.2.2
-
SYNONYM: APPS.CS_SYSTEMS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEMS_ALL, status:VALID,
-
SYNONYM: APPS.CS_SYSTEMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_SYSTEMS_ALL, status:VALID,
-
APPS.CS_SYSTEMS_COMMON_PUB SQL Statements
12.1.1
-
Table: CS_LINE_INST_DETAILS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_LINE_INST_DETAILS, object_name:CS_LINE_INST_DETAILS, status:VALID, product: CS - Service , description: Installation details of a product captured at the time of order or quote entry. , implementation_dba_data: CS.CS_LINE_INST_DETAILS ,
-
VIEW: APPS.CS_SYSTEMS_ALL_B_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:CS_SYSTEMS_ALL_B_DFV, status:VALID,
-
PACKAGE BODY: APPS.CS_SYSTEMS_COMMON_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SYSTEMS_COMMON_PUB, status:VALID,
-
Table: CS_CUSTOMER_PRODUCTS_ALL
12.1.1
product: CS - Service , description: The Customer installed base Products information. , implementation_dba_data: Not implemented in this database ,
-
APPS.OKS_ENTITLEMENTS_WEB dependencies on OKC_K_HEADERS_ALL_V
12.2.2
-
View: OKX_SYSTEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_SYSTEMS_V, object_name:OKX_SYSTEMS_V, status:VALID, product: OKX - Contracts Integration , description: Systems for customer products , implementation_dba_data: APPS.OKX_SYSTEMS_V ,
-
View: OKX_SYSTEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_SYSTEMS_V, object_name:OKX_SYSTEMS_V, status:VALID, product: OKX - Contracts Integration , description: Systems for customer products , implementation_dba_data: APPS.OKX_SYSTEMS_V ,
-
View: CS_SYSTEMS_ALL_VL
12.2.2
product: CS - Service , description: Systems (all orgs, single language view) , implementation_dba_data: Not implemented in this database ,
-
View: CS_SYSTEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEMS_VL, object_name:CS_SYSTEMS_VL, status:VALID, product: CS - Service , description: Systems (single-org, single language view) , implementation_dba_data: APPS.CS_SYSTEMS_VL ,
-
View: CSI_CP_SYSTEMS_ALL_B_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CP_SYSTEMS_ALL_B_V, object_name:CSI_CP_SYSTEMS_ALL_B_V, status:VALID, product: CSI - Install Base , description: Backward Compatible : Systems (View for the Base table CS_SYSTEMS_ALL_B). , implementation_dba_data: APPS.CSI_CP_SYSTEMS_ALL_B_V ,
-
PACKAGE BODY: APPS.OKS_ENTITLEMENTS_WEB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_ENTITLEMENTS_WEB, status:VALID,
-
PACKAGE BODY: APPS.OKS_OMINT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_OMINT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKS_OMINT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_OMINT_PUB, status:VALID,