C_AU_StRpTPARAccountingDocsQry

DDL: C_AU_STRPTPARACCOUNTINGDOCSQRY SQL: CAUTPARACCTGDOCQ Type: view CONSUMPTION Package: GLO_FIN_IS_AU

Australia TPAR Accounting Docs Query

C_AU_StRpTPARAccountingDocsQry is a Consumption CDS View that provides data about "Australia TPAR Accounting Docs Query" in SAP S/4HANA. It reads from 1 data source (I_AU_StRpTPARAccountingDocCube) and exposes 17 fields with key fields StatryRptgEntity, StatryRptCategory, StatryRptRunID, CompanyCode, AccountingDocument. Part of development package GLO_FIN_IS_AU.

Data Sources (1)

SourceAliasJoin Type
I_AU_StRpTPARAccountingDocCube I_AU_StRpTPARAccountingDocCube from

Parameters (2)

NameTypeDefault
P_FromReportingDate figen_rep_date_from
P_ToReportingDate figen_rep_date_to

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CAUTPARACCTGDOCQ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
Analytics.query true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Australia TPAR Accounting Docs Query view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.blocking #BLOCKED_DATA_INCLUDED view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY StatryRptgEntity StatryRptgEntity Reporting Entity
KEY StatryRptCategory StatryRptCategory Report ID
KEY StatryRptRunID StatryRptRunID Report Run ID
KEY CompanyCode CompanyCode Receiver Company Code
KEY AccountingDocument AccountingDocument Journal Entry
KEY FiscalYear FiscalYear G/L Fiscal Year
Supplier Supplier Supplier
AU_TPARServiceType AU_TPARServiceType Service Type
AU_TPARGrantObject AU_TPARGrantObject TPAR Grant Obj
GLAccount GLAccount General Ledger
AU_TPARGrantName AU_TPARGrantName
ClearingJournalEntry ClearingJournalEntry Clrng doc.
InvcSmmryGrossAmount InvcSmmryGrossAmount
AU_TPARGrantDate AU_TPARGrantDate Grant Date
TotalGrossAmountInCoCodeCrcy TotalGrossAmountInCoCodeCrcy Amount in LC
TotalVATAmtInCoCodeCrcy TotalVATAmtInCoCodeCrcy LC Tax
ReportingCurrency ReportingCurrency Currency

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 C_AU_StRpTPARAccountingDocsQry.
-- 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: CAUTPARACCTGDOCQ
-- Parameters: P_FromReportingDate : figen_rep_date_from, P_ToReportingDate : figen_rep_date_to

CREATE VIEW C_AU_StRpTPARAccountingDocsQry AS
SELECT
  StatryRptgEntity,
  StatryRptCategory,
  StatryRptRunID,
  CompanyCode,
  AccountingDocument,
  FiscalYear,
  Supplier,
  AU_TPARServiceType,
  AU_TPARGrantObject,
  GLAccount,
  AU_TPARGrantName,
  ClearingJournalEntry,
  InvcSmmryGrossAmount,
  AU_TPARGrantDate,
  TotalGrossAmountInCoCodeCrcy,
  TotalVATAmtInCoCodeCrcy,
  ReportingCurrency
FROM I_AU_StRpTPARAccountingDocCube
;