P_AR_SupplierPaymentBPDetail
Argentina Supplier Payment with Business Partner Detail
P_AR_SupplierPaymentBPDetail is a Consumption CDS View that provides data about "Argentina Supplier Payment with Business Partner Detail" 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. Part of development package GLO_FIN_IS_AR_SUPPLIER_PAYMENT.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_AR_SupplierPaymentUnion | Payment | from |
| I_Supplier | Supplier | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 */
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA