I_SAPClient
SAP Client
I_SAPClient is a Basic CDS View (Dimension) that provides data about "SAP Client" in SAP S/4HANA. It reads from 1 data source (t000) and exposes 7 fields with key field SAPClient. It has 2 associations to related views. Part of development package ABLM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t000 | t000 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Currency | _GroupCurrency | $projection.GroupCurrency = _GroupCurrency.Currency |
| [0..1] | I_LogicalSystem | _LogicalSystem | $projection.LogicalSystem = _LogicalSystem.LogicalSystem |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | SAPClient | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| AbapCatalog.sqlViewName | ISAPCLIENT | view | |
| EndUserText.label | SAP Client | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPClient | mandt | ||
| SAPClientName | mtext | |||
| GroupCurrency | mwaer | |||
| SAPClientRole | cccategory | |||
| LogicalSystem | logsys | |||
| _GroupCurrency | _GroupCurrency | |||
| _LogicalSystem | _LogicalSystem |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.representativeKey: 'SAPClient'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'ISAPCLIENT'
@EndUserText.label: 'SAP Client'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
define view I_SAPClient
as select from t000
association [0..1] to I_Currency as _GroupCurrency on $projection.GroupCurrency = _GroupCurrency.Currency
association [0..1] to I_LogicalSystem as _LogicalSystem on $projection.LogicalSystem = _LogicalSystem.LogicalSystem
{
// Added for issue 1570150780
@AbapCatalog.INTERNAL.ISMANDT
key mandt as SAPClient,
mtext as SAPClientName,
@ObjectModel.foreignKey.association: '_GroupCurrency'
mwaer as GroupCurrency,
cccategory as SAPClientRole,
@ObjectModel.foreignKey.association: '_LogicalSystem'
logsys as LogicalSystem,
_GroupCurrency,
_LogicalSystem
}
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