I_VarConfignSimlnContextVH

DDL: I_VARCONFIGNSIMLNCONTEXTVH Type: view BASIC Package: ODATA_LO_VCHCLF_SIMULATION

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)

SourceAliasJoin Type
P_VarConfignValueListText P_VarConfignValueListText from

Annotations (15)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'