I_PaymentRejectionFormatText

DDL: I_PAYMENTREJECTIONFORMATTEXT SQL: IPMNTRJCTFRMTTXT Type: view BASIC Package: ODATA_INCOMINGPAYMENTFILES

Payment Rejection Format Text

I_PaymentRejectionFormatText is a Basic CDS View that provides data about "Payment Rejection Format Text" in SAP S/4HANA. It reads from 1 data source (far_ipf_t_rjctn) and exposes 6 fields with key fields ElectronicBankStatementFormat, ElectronicBankStmntLongFormat, PaymentTransactionTypeGroup, Language. It has 1 association to related views. Part of development package ODATA_INCOMINGPAYMENTFILES.

Data Sources (1)

SourceAliasJoin Type
far_ipf_t_rjctn far_ipf_t_rjctn from

Associations (1)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPMNTRJCTFRMTTXT view
VDM.viewType #BASIC view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Payment Rejection Format Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ElectronicBankStatementFormat bankstatement_format
KEY ElectronicBankStmntLongFormat format_name
KEY PaymentTransactionTypeGroup business_transaction_code_list
KEY Language spras
PaymentRejectionFormatName description
_Language _Language
@AbapCatalog.sqlViewName: 'IPMNTRJCTFRMTTXT'
@VDM.viewType: #BASIC
@AbapCatalog.buffering.status: #NOT_ALLOWED         
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true  
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Payment Rejection Format Text'
define view I_PaymentRejectionFormatText as select from far_ipf_t_rjctn association [0..1] to I_Language as _Language 
                                                                          on $projection.Language = _Language.Language {
  
  key bankstatement_format as ElectronicBankStatementFormat,
  key format_name as ElectronicBankStmntLongFormat,
  key business_transaction_code_list as PaymentTransactionTypeGroup,
  
  @ObjectModel.foreignKey.association: '_Language'
  @Semantics.language: true
  key spras as Language,
  
  @Semantics.text: true
  description as PaymentRejectionFormatName,
  
  _Language
  
}