P_CADocumentPaytInfoRpaytReq

DDL: P_CADOCUMENTPAYTINFORPAYTREQ Type: view_entity COMPOSITE

Payment Info for Repayment Request

P_CADocumentPaytInfoRpaytReq is a Composite CDS View that provides data about "Payment Info for Repayment Request" in SAP S/4HANA. It reads from 1 data source (I_CARepaymentRequest) and exposes 18 fields with key field CARepaymentRequest.

Data Sources (1)

SourceAliasJoin Type
I_CARepaymentRequest I_CARepaymentRequest from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Payment Info for Repayment Request 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 (18)

KeyFieldSource TableSource FieldDescription
KEY CARepaymentRequest CARepaymentRequest Repaymt Request
CAPaymentDocument CAPaymentDocument Usage Doc.
TransactionCurrency TransactionCurrency Transaction Currency
CAAmountInTransactionCurrency CAAmountInTransactionCurrency Amount
CANetDueDate CANetDueDate Net Due Date
CAPaymentMethod CAPaymentMethod Payment Method
CABankClearingAccount CABankClearingAccount Transfer acct
CompanyCode CompanyCode Receiver Company Code
CAPaymentCompanyCode CAPaymentCompanyCode Paying Co. Code
ProfitCenter ProfitCenter Profit Center
CARepaymentRequestDocument CARepaymentRequestDocument Request Doc.
CAPostingDate CAPostingDate Posting Date
CABankAccountHolderName CABankAccountHolderName Sold-To Party
PayeeBankNumber PayeeBankNumber House Bank
PayeeBankCountry PayeeBankCountry Bank Ctry/Rgn. Key
PayeeBankAccount PayeeBankAccount Bank acct
PayeeIBAN PayeeIBAN
PayeeSWIFTCode PayeeSWIFTCode

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_CADocumentPaytInfoRpaytReq.
-- 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.

CREATE VIEW P_CADocumentPaytInfoRpaytReq AS
SELECT
  CARepaymentRequest,
  CAPaymentDocument,
  TransactionCurrency,
  CAAmountInTransactionCurrency,
  CANetDueDate,
  CAPaymentMethod,
  CABankClearingAccount,
  CompanyCode,
  CAPaymentCompanyCode,
  ProfitCenter,
  CARepaymentRequestDocument,
  CAPostingDate,
  CABankAccountHolderName,
  PayeeBankNumber,
  PayeeBankCountry,
  PayeeBankAccount,
  PayeeIBAN,
  PayeeSWIFTCode
FROM I_CARepaymentRequest
;