P_AR_SupplierPaymentBPDetail

DDL: P_AR_SUPPLIERPAYMENTBPDETAIL Type: view_entity CONSUMPTION

P_AR_SupplierPaymentBPDetail is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (P_AR_SupplierPaymentUnion, I_Supplier) and exposes 27 fields with key fields StatryRptgEntity, StatryRptCategory, StatryRptRunID, CompanyCode, FiscalYear.

Data Sources (2)

SourceAliasJoin Type
P_AR_SupplierPaymentUnion Payment from
I_Supplier Supplier inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY StatryRptgEntity P_AR_SupplierPaymentUnion StatryRptgEntity Reporting Entity
KEY StatryRptCategory P_AR_SupplierPaymentUnion StatryRptCategory Report ID
KEY StatryRptRunID P_AR_SupplierPaymentUnion StatryRptRunID Report Run ID
KEY CompanyCode P_AR_SupplierPaymentUnion CompanyCode Receiver Company Code
KEY FiscalYear P_AR_SupplierPaymentUnion FiscalYear G/L Fiscal Year
KEY AccountingDocument P_AR_SupplierPaymentUnion AccountingDocument Journal Entry
KEY AccountingDocumentItem P_AR_SupplierPaymentUnion AccountingDocumentItem Posting View Item
KEY ClearingInformationIndex P_AR_SupplierPaymentUnion ClearingInformationIndex
KEY PaidItemClearingInfoIndex P_AR_SupplierPaymentUnion PaidItemClearingInfoIndex
KEY ReltdDocAccountingDocument P_AR_SupplierPaymentUnion ReltdDocAccountingDocument
KEY RelatedDocumentItemNumber P_AR_SupplierPaymentUnion RelatedDocumentItemNumber
PaymentDate P_AR_SupplierPaymentUnion PaymentDate Payment Date
PaymentMethod P_AR_SupplierPaymentUnion PaymentMethod Pymt Meth.
CompanyCodeCountry P_AR_SupplierPaymentUnion CompanyCodeCountry Reporting Ctry/Reg.
CompanyCodeCurrency P_AR_SupplierPaymentUnion CompanyCodeCurrency Local Currency
PaytAmountInCoCodeCurrency P_AR_SupplierPaymentUnion PaytAmountInCoCodeCurrency
HouseBank P_AR_SupplierPaymentUnion HouseBank House Bank
PaymentGLAccount P_AR_SupplierPaymentUnion PaymentGLAccount
_GLAccountInCompanyCode P_AR_SupplierPaymentUnion _GLAccountInCompanyCode
RelatedDocumentFiscalYear P_AR_SupplierPaymentUnion RelatedDocumentFiscalYear
ReltdDocTransactionCurrency P_AR_SupplierPaymentUnion ReltdDocTransactionCurrency
ReltdDocAmtInTransCurrency P_AR_SupplierPaymentUnion ReltdDocAmtInTransCurrency
ReltdSpclGLTransacType P_AR_SupplierPaymentUnion ReltdSpclGLTransacType
Supplier I_Supplier Supplier Supplier
CheckIssuerTaxNumber P_AR_SupplierPaymentUnion CheckIssuerTaxNumber
EndorsedBankTaxNumber P_AR_SupplierPaymentUnion EndorsedBankTaxNumber
EndorsedCheckNumber P_AR_SupplierPaymentUnion EndorsedCheckNumber

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_AR_SupplierPaymentBPDetail.
-- 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_AR_SupplierPaymentBPDetail AS
SELECT
  Payment.StatryRptgEntity AS StatryRptgEntity,
  Payment.StatryRptCategory AS StatryRptCategory,
  Payment.StatryRptRunID AS StatryRptRunID,
  Payment.CompanyCode AS CompanyCode,
  Payment.FiscalYear AS FiscalYear,
  Payment.AccountingDocument AS AccountingDocument,
  Payment.AccountingDocumentItem AS AccountingDocumentItem,
  Payment.ClearingInformationIndex AS ClearingInformationIndex,
  Payment.PaidItemClearingInfoIndex AS PaidItemClearingInfoIndex,
  Payment.ReltdDocAccountingDocument AS ReltdDocAccountingDocument,
  Payment.RelatedDocumentItemNumber AS RelatedDocumentItemNumber,
  Payment.PaymentDate AS PaymentDate,
  Payment.PaymentMethod AS PaymentMethod,
  Payment.CompanyCodeCountry AS CompanyCodeCountry,
  Payment.CompanyCodeCurrency AS CompanyCodeCurrency,
  Payment.PaytAmountInCoCodeCurrency AS PaytAmountInCoCodeCurrency,
  Payment.HouseBank AS HouseBank,
  Payment.PaymentGLAccount AS PaymentGLAccount,
  Payment._GLAccountInCompanyCode AS _GLAccountInCompanyCode,
  Payment.RelatedDocumentFiscalYear AS RelatedDocumentFiscalYear,
  Payment.ReltdDocTransactionCurrency AS ReltdDocTransactionCurrency,
  Payment.ReltdDocAmtInTransCurrency AS ReltdDocAmtInTransCurrency,
  Payment.ReltdSpclGLTransacType AS ReltdSpclGLTransacType,
  Supplier.Supplier AS Supplier,
  Payment.CheckIssuerTaxNumber AS CheckIssuerTaxNumber,
  Payment.EndorsedBankTaxNumber AS EndorsedBankTaxNumber,
  Payment.EndorsedCheckNumber AS EndorsedCheckNumber
FROM P_AR_SupplierPaymentUnion AS Payment
INNER JOIN I_Supplier AS Supplier ON /* join condition not captured in parsed metadata */
;