I_ConfigurationStatusValueHelp
Simulation - Config Status Value Help
I_ConfigurationStatusValueHelp is a Basic CDS View that provides data about "Simulation - Config Status Value Help" in SAP S/4HANA. It reads from 1 data source (P_VarConfignValueListText) and exposes 2 fields with key field ConfigurationStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_VarConfignValueListText | P_VarConfignValueListText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICONSTATUSVH | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Simulation - Config Status Value Help | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | ConfigurationStatus | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConfigurationStatus | |||
| ConfigurationStatusText | DomainText |
@AbapCatalog.sqlViewName: 'ICONSTATUSVH'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@EndUserText.label: 'Simulation - Config Status Value Help'
@ObjectModel: {
usageType: {
serviceQuality: #B,
sizeCategory: #S,
dataClass: #MASTER
},
dataCategory: #VALUE_HELP,
representativeKey: 'ConfigurationStatus'
}
@Search.searchable: true
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_ConfigurationStatusValueHelp
as select from P_VarConfignValueListText
{
@Search.defaultSearchElement: false
@UI.hidden: true
key cast( substring( DomainValue, 1, 2) as vchclf_configuration_status preserving type ) as ConfigurationStatus,
@EndUserText: {
label: 'Status',
quickInfo: 'Status'
}
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
@UI.hidden: true
DomainText as ConfigurationStatusText
}
where
P_VarConfignValueListText.SAPDataDictionaryDomain = 'VCHCLF_CONFIGURATION_STATUS'
and P_VarConfignValueListText.Language = $session.system_language
and ( P_VarConfignValueListText.DomainValue = '1' or
P_VarConfignValueListText.DomainValue = '2' or
P_VarConfignValueListText.DomainValue = '5' or
P_VarConfignValueListText.DomainValue = ''
)
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