I_SystemStatus
System Status
I_SystemStatus is a Basic CDS View (Dimension) that provides data about "System Status" in SAP S/4HANA. It reads from 1 data source (tj02) and exposes 3 fields with key field SystemStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tj02 | tj02 | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | SystemStatus | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| AbapCatalog.sqlViewName | ISYSSTATUS | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | System Status | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.representativeKey: 'SystemStatus'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'ISYSSTATUS'
@AbapCatalog.preserveKey:true
@EndUserText.label: 'System Status'
@Analytics : {dataCategory: #DIMENSION , dataExtraction.enabled : true}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
define view I_SystemStatus as select from tj02
association[0..*] to I_SystemStatusText as _SystemStatusText on $projection.SystemStatus = _SystemStatusText.SystemStatus
{
@ObjectModel.text.association: '_SystemStatusText'
key tj02.istat as SystemStatus,
tj02.nodis as StatusIsHidden,
_SystemStatusText
}
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