P_CADocumentPaytInfoPaymentRun

DDL: P_CADOCUMENTPAYTINFOPAYMENTRUN Type: view_entity COMPOSITE

Payment Info for Payment Run

P_CADocumentPaytInfoPaymentRun is a Composite CDS View that provides data about "Payment Info for Payment Run" in SAP S/4HANA. It reads from 1 data source (I_CAPaymentRunHeader) and exposes 12 fields with key fields CADocumentNumber, CAMassRunDate, CAMassRunID, CAIntPaymentIdentification, CAIntAddlPaymentIdentification.

Data Sources (1)

SourceAliasJoin Type
I_CAPaymentRunHeader I_CAPaymentRunHeader from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Payment Info for Payment Run view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY CADocumentNumber CADocumentNumber
KEY CAMassRunDate CAMassRunDate
KEY CAMassRunID CAMassRunID
KEY CAIntPaymentIdentification CAIntPaymentIdentification
KEY CAIntAddlPaymentIdentification CAIntAddlPaymentIdentification
CAPaymentMethod CAPaymentMethod
CAMassRunDateAndID
HouseBank HouseBank
HouseBankAccount HouseBankAccount
LastName LastName
FirstName FirstName
CAPaymentDocumentReference CAPaymentDocumentReference
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Payment Info for Payment Run'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #P,
  sizeCategory: #XXL,
  dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_CADocumentPaytInfoPaymentRun as select from I_CAPaymentRunHeader {
  key CADocumentNumber,
  key CAMassRunDate,
  key CAMassRunID,
  key CAIntPaymentIdentification,
  key CAIntAddlPaymentIdentification,
  CAPaymentMethod,
  cast (concat_with_space(  concat_with_space( cast(CAMassRunDate as date) , '/', 1), CAMassRunID, 1) as mass_run_date_and_id_kk) as CAMassRunDateAndID,
  
  //House Bank

  HouseBank,
  HouseBankAccount,
  
  //Payer Info

  LastName,
  FirstName,
  
  //References

  CAPaymentDocumentReference
}