I_VarConfignSimlnFavoriteVH
Simulation - Favorite Value Help
I_VarConfignSimlnFavoriteVH is a Basic CDS View that provides data about "Simulation - Favorite Value Help" in SAP S/4HANA. It reads from 1 data source (P_VarConfignValueListText) and exposes 2 fields with key field IsFavoriteConfigurationObject. Part of development package ODATA_LO_VCHCLF_SIMULATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_VarConfignValueListText | P_VarConfignValueListText | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IVCSIMFAVVH | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Simulation - Favorite Value Help | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | IsFavoriteConfigurationObject | 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 | IsFavoriteConfigurationObject | |||
| IsFavoriteConfObjectText | DomainText |
@AbapCatalog.sqlViewName: 'IVCSIMFAVVH'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@EndUserText.label: 'Simulation - Favorite Value Help'
@ObjectModel: {
usageType: {
serviceQuality: #B,
sizeCategory: #S,
dataClass: #MASTER
},
resultSet: {
sizeCategory: #XS
},
dataCategory: #VALUE_HELP,
representativeKey: 'IsFavoriteConfigurationObject'
}
@Search.searchable: true
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_VarConfignSimlnFavoriteVH
as select from P_VarConfignValueListText
{
@Search.defaultSearchElement: false
@UI.hidden: true
key cast( substring( DomainValue, 1, 4 ) as vchclf_sim_is_favorite preserving type ) as IsFavoriteConfigurationObject,
@Search : {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
@UI.hidden: true
DomainText as IsFavoriteConfObjectText
}
where
P_VarConfignValueListText.SAPDataDictionaryDomain = 'VCHCLF_SIM_IS_FAVORITE'
and P_VarConfignValueListText.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