aps_com_cusr_read_cusr_cs
Communication Systems
aps_com_cusr_read_cusr_cs is a CDS View that provides data about "Communication Systems" in SAP S/4HANA. It reads from 2 data sources (aps_cs_d_root, aps_cs_d_inbound) and exposes 2 fields with key fields UserID, CommunicationSystemID. It is exposed through 1 OData service (APS_COM_API_CUSR_READ). Part of development package SR_APS_COM_PUB_ODATA_CUSR_READ.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| aps_cs_d_root | cs | from |
| aps_cs_d_inbound | cs_inb | inner |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Communication Systems | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| APS_COM_API_CUSR_READ | APS_COM_API_CUSR_READ | V4 | C2 | C1 |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserID | aps_cs_d_inbound | commsystinboundusername | |
| KEY | CommunicationSystemID | aps_cs_d_root | commsyst |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Communication Systems'
@Metadata.ignorePropagatedAnnotations: true
define view entity aps_com_cusr_read_cusr_cs
as select from aps_cs_d_root as cs
inner join aps_cs_d_inbound as cs_inb on cs.db_key = cs_inb.parent_key
{
@EndUserText: { label: 'Communication User ID', quickInfo: 'Communication User ID' }
key cs_inb.commsystinboundusername as UserID,
@EndUserText: { label: 'Communication System ID', quickInfo: 'Communication System ID' }
key cs.commsyst as CommunicationSystemID
}
where
(
cs.commsysttype = '1'
or cs.commsysttype = ''
)
and cs.commsyst not like 'SAP_%'
and cs_inb.commsystinboundusername like 'CC%'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA