I_Paymentmethodsupplementtext

DDL: I_PAYMENTMETHODSUPPLEMENTTEXT SQL: IPMNTMTHSPPTXT Type: view BASIC Package: FINS_FIS_AP_MD

CDS view for Treasury: GFN - PaymentMethodSupplementName

I_Paymentmethodsupplementtext is a Basic CDS View (Text) that provides data about "CDS view for Treasury: GFN - PaymentMethodSupplementName" in SAP S/4HANA. It reads from 1 data source (t042h) and exposes 5 fields with key fields Language, PaymentMethodSupplement. It has 2 associations to related views. Part of development package FINS_FIS_AP_MD.

Data Sources (1)

SourceAliasJoin Type
t042h PaymentMethodSupplementText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Paymentmethodsupplement _PaymentMethodSupplement $projection.PaymentMethodSupplement = _PaymentMethodSupplement.PaymentMethodSupplement
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey PaymentMethodSupplement view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.sqlViewName IPMNTMTHSPPTXT view
VDM.viewType #BASIC view
Analytics.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS view for Treasury: GFN - PaymentMethodSupplementName view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language t042h spras
KEY PaymentMethodSupplement t042h uzawe
PaymentMethodSupplementName
_PaymentMethodSupplement _PaymentMethodSupplement
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'PaymentMethodSupplement'
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.sqlViewName: 'IPMNTMTHSPPTXT'
@VDM.viewType: #BASIC
@Analytics: { dataCategory: #TEXT, dataExtraction.enabled: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CDS view for Treasury: GFN - PaymentMethodSupplementName'
define view I_Paymentmethodsupplementtext
  as select from t042h as PaymentMethodSupplementText

  association [0..1] to I_Paymentmethodsupplement as _PaymentMethodSupplement on $projection.PaymentMethodSupplement = _PaymentMethodSupplement.PaymentMethodSupplement

  association [0..1] to I_Language                as _Language                on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key PaymentMethodSupplementText.spras                                            as Language,
      @ObjectModel.foreignKey.association: '_PaymentMethodSupplement'
  key PaymentMethodSupplementText.uzawe                                            as PaymentMethodSupplement,

      @Semantics.text: true
      cast(PaymentMethodSupplementText.txt30 as ftr_gen_pymnt_meth_suppl_name)     as PaymentMethodSupplementName,

      _PaymentMethodSupplement,
      _Language
}