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