P_PaytTransRepetitiveCode

DDL: P_PAYTTRANSREPETITIVECODE SQL: PRPTVCODE Type: view BASIC

P_PaytTransRepetitiveCode is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (fibl_rpcode) and exposes 23 fields with key fields PayingCompanyCode, HouseBank, PaymentRepetitiveCode. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
fibl_rpcode fibl_rpcode from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PaymentSystem _PaymentSystem $projection.PayeePaymentSystem = _PaymentSystem.PaymentSystem
[0..1] I_AliasType _AliasType $projection.PayeeAliasType = _AliasType.AliasType

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PRPTVCODE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
VDM.private true view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY PayingCompanyCode bukrs Value
KEY HouseBank hbkid House Bank
KEY PaymentRepetitiveCode rpcode Repetitive Code
HouseBankAccount hktid House Bank Account
BankChain chain Bank Chain ID
BankCountryKey banks Bank Ctry/Rgn. Key
BankKey bankl House Bank
BankAccount bankn Bank acct
BankControlKey bkont To Account
BankDetailReference bkref Reference
BankAccountHolderName koinh Sold-To Party
RcvgPaytBusPartnerCategory ptype Procurem.Trans.
RcvgPaytBusPartnerReference partn Ptr/cus
PartnerBankDetailKey parta Bank Details
CompanyCode pbukr Target Company Code
PaymentMethod zlsch Pymt Meth.
Currency waers Transaction Currency
RepetitiveCodeReleasedBy urele Released By
PayeePaymentSystem zpayment_system Payment System
PayeeAliasType zalias_type Payee Alias Type
PayeeAliasName zbank_alias Payee Alias
_PaymentSystem _PaymentSystem
_AliasType _AliasType

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_PaytTransRepetitiveCode.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: PRPTVCODE

CREATE VIEW P_PaytTransRepetitiveCode AS
SELECT
  bukrs AS PayingCompanyCode,
  hbkid AS HouseBank,
  rpcode AS PaymentRepetitiveCode,
  hktid AS HouseBankAccount,
  chain AS BankChain,
  banks AS BankCountryKey,
  bankl AS BankKey,
  bankn AS BankAccount,
  bkont AS BankControlKey,
  bkref AS BankDetailReference,
  koinh AS BankAccountHolderName,
  ptype AS RcvgPaytBusPartnerCategory,
  partn AS RcvgPaytBusPartnerReference,
  parta AS PartnerBankDetailKey,
  pbukr AS CompanyCode,
  zlsch AS PaymentMethod,
  waers AS Currency,
  urele AS RepetitiveCodeReleasedBy,
  zpayment_system AS PayeePaymentSystem,
  zalias_type AS PayeeAliasType,
  zbank_alias AS PayeeAliasName
FROM fibl_rpcode
LEFT OUTER JOIN I_PaymentSystem AS _PaymentSystem ON PayeePaymentSystem = _PaymentSystem.PaymentSystem  -- association [0..1]
LEFT OUTER JOIN I_AliasType AS _AliasType ON PayeeAliasType = _AliasType.AliasType  -- association [0..1]
;