C_FldLogsSystemStatusVH
System Status
C_FldLogsSystemStatusVH is a Consumption CDS View that provides data about "System Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 4 fields with key fields SystemStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatusText | I_SystemStatusText | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | System Status | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | SystemStatus | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | ||
| KEY | Language | Language | ||
| SystemStatusShortName | SystemStatusShortName | |||
| SystemStatusName | SystemStatusName | Status Name |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'System Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #M,
dataClass: #CUSTOMIZING
}
@ObjectModel.dataCategory:#VALUE_HELP
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'SystemStatus'
@Search.searchable: true
@Consumption.ranked:true
define view entity C_FldLogsSystemStatusVH
as select from I_SystemStatusText
{
@UI.hidden: true
@ObjectModel.text.element: [ 'SystemStatusName' ]
key SystemStatus,
@UI.hidden: true
key Language,
@ObjectModel.text.element: [ 'SystemStatusName' ]
@UI: { lineItem: [{ position: 1 }] }
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
SystemStatusShortName,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
@UI: { lineItem: [{ position: 5 }] }
@EndUserText.label: 'Status Name'
SystemStatusName
}
where
Language = $session.system_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