I_ConfignClassVH

DDL: I_CONFIGNCLASSVH SQL: ICONFIGNCLSVH Type: view BASIC

Configuration Class Value Help

I_ConfignClassVH is a Basic CDS View that provides data about "Configuration Class Value Help" in SAP S/4HANA. It reads from 2 data sources (I_ClfnClass, I_ClfnClassTypeBasic) and exposes 5 fields with key fields Class, ClassType.

Data Sources (2)

SourceAliasJoin Type
I_ClfnClass Class from
I_ClfnClassTypeBasic Clstype inner

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ICONFIGNCLSVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Configuration Class Value Help view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Class view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Class I_ClfnClass Class
KEY ClassType I_ClfnClass ClassType
ClassInternalID ClassInternalID
ClassMaintAuthGrp ClassMaintAuthGrp
_ClassDescription _ClassDescription
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ICONFIGNCLSVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_ClassDescription']
@EndUserText.label: 'Configuration Class Value Help'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'Class'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
define view I_ConfignClassVH 
  as select from I_ClfnClass as Class
  inner join I_ClfnClassTypeBasic as Clstype on  Clstype.ClassType = Class.ClassType 
                                             and Clstype.ClassTypeIsUsableInVarConfign = 'X' 
{  
      @ObjectModel.text.association: '_ClassDescription'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8      
  key Class.Class,
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
  key Class.ClassType,  
      @Consumption.hidden: true
      ClassInternalID,
      @Consumption.hidden: true
      ClassMaintAuthGrp,
            
      _ClassDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CLFNCLASS",
"I_CLFNCLASSTYPEBASIC"
],
"ASSOCIATED":
[
"I_CLFNCLASSDESCRIPTION"
],
"BASE":
[
"I_CLFNCLASS"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/