I_ClassHeader

DDL: I_CLASSHEADER SQL: ICLASSHEADER Type: view BASIC

Class Header

I_ClassHeader is a Basic CDS View that provides data about "Class Header" in SAP S/4HANA. It reads from 1 data source (klah) and exposes 4 fields with key field ClassInternalID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
klah klah from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ClassText _ClassText $projection.ClassInternalID = _ClassText.ClassInternalID

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICLASSHEADER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Class Header view
ObjectModel.representativeKey ClassInternalID view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ClfnClass view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ClassInternalID klah clint
Class klah class
ClassType klah klart
_ClassText _ClassText
@AbapCatalog.sqlViewName: 'ICLASSHEADER'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true 
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Class Header'
@ObjectModel.representativeKey: 'ClassInternalID'
@ObjectModel.semanticKey: [ 'ClassInternalID' ]
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'I_ClfnClass'
define view I_ClassHeader
  as select from klah
  
  association [0..*] to I_ClassText        as _ClassText        on $projection.ClassInternalID = _ClassText.ClassInternalID
{
      @ObjectModel.text.association: '_ClassText'
  key klah.clint as ClassInternalID,
      klah.class as Class,
      klah.klart as ClassType,

      /* Associations */
      _ClassText
}                                                                                        
  
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"KLAH"
],
"ASSOCIATED":
[
"I_CLASSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/