I_VarConfignSimlnTypeValueHelp

DDL: I_VARCONFIGNSIMLNTYPEVALUEHELP SQL: IVCSIMTYPEVH Type: view BASIC

Simulation - Config Type Value Help

I_VarConfignSimlnTypeValueHelp is a Basic CDS View that provides data about "Simulation - Config Type Value Help" in SAP S/4HANA. It reads from 1 data source (P_VarConfignValueListText) and exposes 2 fields with key field Type.

Data Sources (1)

SourceAliasJoin Type
P_VarConfignValueListText P_VarConfignValueListText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IVCSIMTYPEVH view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
EndUserText.label Simulation - Config Type 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 Type view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Type
VariantConfignOwnerTypeDesc DomainText
@AbapCatalog.sqlViewName: 'IVCSIMTYPEVH'

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@Consumption.ranked: true

@EndUserText.label: 'Simulation - Config Type Value Help'

@ObjectModel: {
  usageType: {
    serviceQuality:  #B,
    sizeCategory:    #S,
    dataClass:       #MASTER
  },
  resultSet: {
    sizeCategory:    #XS
  },
  dataCategory:      #VALUE_HELP,
  representativeKey: 'Type'
}

@Search.searchable: true

@VDM: { 
  viewType: #BASIC,
  lifecycle.contract.type: #SAP_INTERNAL_API 
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_VarConfignSimlnTypeValueHelp
  as select from P_VarConfignValueListText
{
      @Search.defaultSearchElement: false
      @UI.hidden: true
  key cast( substring( DomainValue, 1, 4 ) as vchclf_leading_object preserving type ) as Type,
      @EndUserText: {
        label: 'Type',
        quickInfo: 'Type'
      }  
      @Search : {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8,        
        ranking: #HIGH
      }
      DomainText                                   as VariantConfignOwnerTypeDesc
}
where
      P_VarConfignValueListText.SAPDataDictionaryDomain = 'VCHCLF_LEADING_OBJECT'
  and P_VarConfignValueListText.Language                = $session.system_language