P_RepetitiveCode

DDL: P_REPETITIVECODE SQL: PREPETITIVECODE Type: view BASIC Package: FINS_FIS_CASH

Payment Request

P_RepetitiveCode is a Basic CDS View that provides data about "Payment Request" in SAP S/4HANA. It reads from 1 data source (fibl_rpcode) and exposes 7 fields with key fields PayingCompanyCode, HouseBank, RepetitiveCode. Part of development package FINS_FIS_CASH.

Data Sources (1)

SourceAliasJoin Type
fibl_rpcode fibl_rpcode from

Annotations (7)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PREPETITIVECODE view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropogatedAnnotations true view
AbapCatalog.preserveKey true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PayingCompanyCode bukrs
KEY HouseBank hbkid
KEY RepetitiveCode rpcode
HouseBankAccount hktid
TargetCompanyCode pbukr
Partner partn
PartnerAccount parta
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PREPETITIVECODE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropogatedAnnotations: true
@AbapCatalog.preserveKey:true
define view P_RepetitiveCode
  as select from fibl_rpcode


{
  key bukrs                            as PayingCompanyCode,
  key hbkid                            as HouseBank,
  key rpcode                           as RepetitiveCode,
      hktid                            as HouseBankAccount,
      pbukr                            as TargetCompanyCode,
      partn                            as Partner,
      parta                            as PartnerAccount

}