I_SystemStatusText
System Status - Text
I_SystemStatusText is a Basic CDS View that provides data about "System Status - Text" in SAP S/4HANA. It reads from 1 data source (tj02t) and exposes 6 fields with key fields SystemStatus, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tj02t | tj02t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SystemStatus | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| EndUserText.label | System Status - Text | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | ISYSSTATTEXT | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Analytics.dataExtraction.enabled | true | view |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SystemStatus'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@EndUserText.label: 'System Status - Text'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'ISYSSTATTEXT'
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck:#NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE ]
@Analytics: {
dataExtraction: {
enabled: true,
delta.changeDataCapture: {
mapping:[
{
table: 'tj02t',role:#MAIN,
viewElement: ['SystemStatus', 'Language'],
tableElement: ['istat', 'spras']
}
]
}
}
}
define view I_SystemStatusText as select from tj02t
association[0..1] to I_SystemStatus as _SystemStatus on $projection.SystemStatus = _SystemStatus.SystemStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_SystemStatus'
key tj02t.istat as SystemStatus,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key tj02t.spras as Language,
@Semantics.text: true
tj02t.txt30 as SystemStatusName,
@Semantics.text: true
tj02t.txt04 as SystemStatusShortName,
_SystemStatus,
_Language
}
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