C_IntOrdOvrlSystemStatusTextVH
Overall system status value help
C_IntOrdOvrlSystemStatusTextVH is a Consumption CDS View that provides data about "Overall system status value help" 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 (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CINTORDOVRLSTTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | SystemStatus | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| EndUserText.label | Overall system status value help | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | ||
| KEY | Language | Language | ||
| SystemStatusShortName | SystemStatusShortName | |||
| SystemStatusName | SystemStatusName |
@AbapCatalog: {
sqlViewName: 'CINTORDOVRLSTTVH',
compiler.compareFilter: true,
preserveKey: true
}
@VDM.viewType: #CONSUMPTION
@ObjectModel: {
dataCategory: #VALUE_HELP,
representativeKey: 'SystemStatus',
semanticKey: [ 'SystemStatus', 'Language' ],
usageType.dataClass: #CUSTOMIZING,
usageType.serviceQuality: #A,
usageType.sizeCategory: #M
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl: {
personalData.blocking: #NOT_REQUIRED,
authorizationCheck: #NOT_REQUIRED
}
@Search.searchable: true
@EndUserText.label: 'Overall system status value help'
@Consumption.ranked: true
define view C_IntOrdOvrlSystemStatusTextVH
as select from I_SystemStatusText
{
@UI.hidden: true
key SystemStatus,
@UI.hidden: true
key Language,
@ObjectModel.text.element: [ 'SystemStatusName' ]
@UI: {
textArrangement: #TEXT_LAST,
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 }]
}
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