I_AU_StRpPaytTmesRptgPaidInvcs
AU PTR Fully and Partial Paid Invoices
I_AU_StRpPaytTmesRptgPaidInvcs is a Composite CDS View (Cube) that provides data about "AU PTR Fully and Partial Paid Invoices" in SAP S/4HANA. It reads from 1 data source (P_AU_StRpPaytTmesRptgPaidInvc) and exposes 22 fields with key fields CompanyCode, AccountingDocument, FiscalYear, StatryRptgEntity, StatryRptCategory. Part of development package GLO_FIN_IS_AU.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_AU_StRpPaytTmesRptgPaidInvc | P_AU_StRpPaytTmesRptgPaidInvc | from |
Parameters (6)
| Name | Type | Default |
|---|---|---|
| P_AU_InvoiceIssueDateType | fiau_invoice_issue_date_type | |
| P_OffsetDays | fiau_offset_days | |
| P_FromReportingDate | figen_rep_date_from | |
| P_ToReportingDate | figen_rep_date_to | |
| P_StatryRptgEntity | srf_reporting_entity | |
| P_StatryRptCategory | srf_rep_cat_id |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IAUSTRPPTRPPAID | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.allowExtensions | true | view | |
| Analytics.dataCategory | #CUBE | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | AU PTR Fully and Partial Paid Invoices | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | Receiver Company Code | |
| KEY | AccountingDocument | AccountingDocument | Journal Entry | |
| KEY | FiscalYear | FiscalYear | G/L Fiscal Year | |
| KEY | StatryRptgEntity | _ReportedItemsLog | StatryRptgEntity | Reporting Entity |
| KEY | StatryRptCategory | _ReportedItemsLog | StatryRptCategory | Report ID |
| KEY | StatryRptRunID | _ReportedItemsLog | StatryRptRunID | Report Run ID |
| Supplier | ||||
| FromReportingDate | ||||
| AccountingDocumentType | PTRInvoices | AccountingDocumentType | Journal Entry Type | |
| SupplierAccountGroup | PTRInvoices | SupplierAccountGroup | Account group | |
| TradingPartner | PTRInvoices | TradingPartner | Trading Partner | |
| ReportingDate | ReportingDate | |||
| InvoiceIssueDate | InvoiceIssueDate | |||
| PaymentDate | PaymentDate | Payment Date | ||
| ClearingAccountingDocument | ||||
| ClearingJournalEntry | ClearingJournalEntry | Clrng doc. | ||
| DebitCreditCode | DebitCreditCode | Single-Character Flag | ||
| PaymentTerms | PaymentTerms | Pyt Terms | ||
| NetPaymentDays | NetPaymentDays | Net Pmt Terms Period | ||
| CompanyCodeCurrency | CompanyCodeCurrency | Local Currency | ||
| AmountInCompanyCodeCurrency | AmountInCompanyCodeCurrency | Local Crcy Amt | ||
| CashDiscountAmtInCoCodeCrcy | CashDiscountAmtInCoCodeCrcy | Discount Amt |
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 I_AU_StRpPaytTmesRptgPaidInvcs.
-- 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: IAUSTRPPTRPPAID
-- Parameters: P_AU_InvoiceIssueDateType : fiau_invoice_issue_date_type, P_OffsetDays : fiau_offset_days, P_FromReportingDate : figen_rep_date_from, P_ToReportingDate : figen_rep_date_to, P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id
CREATE VIEW I_AU_StRpPaytTmesRptgPaidInvcs AS
SELECT
CompanyCode,
AccountingDocument,
FiscalYear,
_ReportedItemsLog.StatryRptgEntity AS StatryRptgEntity,
_ReportedItemsLog.StatryRptCategory AS StatryRptCategory,
_ReportedItemsLog.StatryRptRunID AS StatryRptRunID,
_PTRSmallBusiness[inner].Supplier AS Supplier,
_PTRSmallBusiness[inner].FromReportingDate AS FromReportingDate,
PTRInvoices.AccountingDocumentType AS AccountingDocumentType,
PTRInvoices.SupplierAccountGroup AS SupplierAccountGroup,
PTRInvoices.TradingPartner AS TradingPartner,
ReportingDate,
InvoiceIssueDate,
PaymentDate,
cast( '' as farp_augbl ) AS ClearingAccountingDocument,
ClearingJournalEntry,
DebitCreditCode,
PaymentTerms,
NetPaymentDays,
CompanyCodeCurrency,
AmountInCompanyCodeCurrency,
CashDiscountAmtInCoCodeCrcy
FROM P_AU_StRpPaytTmesRptgPaidInvc
;
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