I_AltvBsdConfMethodClassText

DDL: I_ALTVBSDCONFMETHODCLASSTEXT Type: view_entity BASIC

Description of method class

I_AltvBsdConfMethodClassText is a Basic CDS View that provides data about "Description of method class" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields AltvBsdConfSubstnMethodClass, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t txt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_AltvBsdConfSubstnMethClass _MethodClass $projection.AltvBsdConfSubstnMethodClass = _MethodClass.AltvBsdConfSubstnMethodClass

Annotations (8)

NameValueLevelField
EndUserText.label Description of method class view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AltvBsdConfSubstnMethodClass view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AltvBsdConfSubstnMethodClass dd07t domvalue_l
KEY Language
AltvBsdConfMethodClassText
_Language _Language
_MethodClass _MethodClass
@EndUserText.label: 'Description of method class'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
  representativeKey: 'AltvBsdConfSubstnMethodClass',
  dataCategory: #TEXT,
  usageType: {
    serviceQuality: #B,
    sizeCategory: #L,
    dataClass: #CUSTOMIZING
  }
}

define view entity I_AltvBsdConfMethodClassText
  as select from dd07t as txt
  association [0..1] to I_Language                   as _Language    on $projection.Language = _Language.Language
  association [1..1] to I_AltvBsdConfSubstnMethClass as _MethodClass on $projection.AltvBsdConfSubstnMethodClass = _MethodClass.AltvBsdConfSubstnMethodClass
{
  key txt.domvalue_l                                    as AltvBsdConfSubstnMethodClass,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(txt.ddlanguage as spras)                     as Language,
      @Semantics.text: true
      cast(txt.ddtext as atp_abc_substitution_method_t) as AltvBsdConfMethodClassText,

      // Associations

      _Language,
      _MethodClass
}
where
      txt.domname  = 'ATP_ABC_SUBSTITUTION_METHOD'
  and txt.as4local = 'A';