I_CnvrsnFuncAssignmentClass

DDL: I_CNVRSNFUNCASSIGNMENTCLASS Type: view_entity BASIC

Conversion Function Assignment Class

I_CnvrsnFuncAssignmentClass is a Basic CDS View that provides data about "Conversion Function Assignment Class" in SAP S/4HANA. It reads from 2 data sources (seoclass, seoclassdf) and exposes 2 fields with key field ConversionAssignmentClassName. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
seoclass seoclass from
seoclassdf seoclassdf inner

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_CnvrsnFuncAssgmtClassText _Text $projection.ConversionAssignmentClassName = _Text.ConversionAssignmentClassName and _Text.Language = $session.system_language

Annotations (7)

NameValueLevelField
EndUserText.label Conversion Function Assignment Class view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ConversionAssignmentClassName seoclass clsname
CnvrsnAssgmtClassDescription _Text CnvrsnAssgmtClassDescription
@EndUserText.label: 'Conversion Function Assignment Class'
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{ serviceQuality:  #X,
                         sizeCategory:    #L,
                         dataClass: #MIXED }                       
@VDM.viewType: #BASIC

define view entity I_CnvrsnFuncAssignmentClass
  as select from seoclass
      inner join seoclassdf on seoclass.clsname  = seoclassdf.clsname
      
  association [0..1] to I_CnvrsnFuncAssgmtClassText as _Text 
    on $projection.ConversionAssignmentClassName = _Text.ConversionAssignmentClassName
               and _Text.Language                = $session.system_language  
{
  key seoclass.clsname                   as ConversionAssignmentClassName,
      _Text.CnvrsnAssgmtClassDescription as CnvrsnAssgmtClassDescription
} where seoclassdf.version      = '1'
    and not seoclassdf.category = '60'
    and not seoclassdf.category = '80'
    and seoclass.clstype = '0'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNVRSNFUNCASSGMTCLASSTEXT",
"SEOCLASS",
"SEOCLASSDF"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/