I_CAPaymentMethodText

DDL: I_CAPAYMENTMETHODTEXT Type: view_entity BASIC

Payment Method - Text

I_CAPaymentMethodText is a Basic CDS View that provides data about "Payment Method - Text" in SAP S/4HANA. It reads from 1 data source (tfk042zt) and exposes 6 fields with key fields Country, CAPaymentMethod, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tfk042zt tfk042zt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_Country _Country $projection.Country = _Country.Country

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Payment Method - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey CAPaymentMethod view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Country land1
KEY CAPaymentMethod zlsch
KEY Language spras
CAPaymentMethodName text1
_Language _Language
_Country _Country
@AccessControl.authorizationCheck: #NOT_REQUIRED

@EndUserText.label: 'Payment Method - Text'

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel: { dataCategory: #TEXT,
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
                representativeKey: 'CAPaymentMethod',
                supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
                                         #CDS_MODELING_DATA_SOURCE,
                                         #LANGUAGE_DEPENDENT_TEXT,
                                         #SQL_DATA_SOURCE ],
                usageType: { dataClass: #CUSTOMIZING,
                             serviceQuality: #A,
                             sizeCategory: #S } }

@VDM.viewType: #BASIC

define view entity I_CAPaymentMethodText
  as select from tfk042zt
  
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [0..1] to I_Country  as _Country  on $projection.Country = _Country.Country

{
      @ObjectModel.foreignKey.association: '_Country'
  key land1 as Country,
  key zlsch as CAPaymentMethod,
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key spras as Language,

      @Semantics.text
      text1 as CAPaymentMethodName,

      _Language,
      _Country
}