Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

C_CZ_StRpTaxItemReturn

DDL: C_CZ_STRPTAXITEMRETURN SQL: CCZSRTAXITEMRET Type: view CONSUMPTION Package: GLO_FIN_IS_VAT_CZ_DEPREC

EVAT Tax Line Item CZ

C_CZ_StRpTaxItemReturn is a Consumption CDS View (Cube) that provides data about "EVAT Tax Line Item CZ" in SAP S/4HANA. It reads from 1 data source (C_StRpRptdJournalEntry) and exposes 39 fields with key fields CompanyCode, AccountingDocument, FiscalYear, TaxItem, TaxCode. Part of development package GLO_FIN_IS_VAT_CZ_DEPREC.

Data Sources (1)

SourceAliasJoin Type
C_StRpRptdJournalEntry C_StRpRptdJournalEntry left_outer

Parameters (3)

NameTypeDefault
P_StatryRptgEntity srf_reporting_entity
P_StatryRptCategory srf_rep_cat_id
P_StatryRptRunID srf_report_run_id

Annotations (15)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName CCZSRTAXITEMRET view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view
Analytics.internalName #LOCAL view
Analytics.dataCategory #CUBE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label EVAT Tax Line Item CZ view
Metadata.allowExtensions true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view

Fields (39)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_CZ_StRpTaxItemReturnCube CompanyCode Receiver Company Code
KEY AccountingDocument I_CZ_StRpTaxItemReturnCube AccountingDocument Journal Entry
KEY FiscalYear I_CZ_StRpTaxItemReturnCube FiscalYear G/L Fiscal Year
KEY TaxItem TaxItem Tax Item
KEY TaxCode TaxCode Tax Code
TransactionTypeDetermination TransactionTypeDetermination Transaction Key
TaxBox TaxBox Tax.Bs.Gp.No.
ReportingDate ReportingDate
PostingDate PostingDate Posting Date for GR
DocumentDate DocumentDate Journal Entry Date
TaxReportingDate TaxReportingDate Tax Reporting Date
TaxDeclnAmountType TaxDeclnAmountType
TaxType TaxType Tax Type
FiscalPeriod FiscalPeriod Tax period
AccountingDocumentType AccountingDocumentType Journal Entry Type
DocumentReferenceID DocumentReferenceID Reference
CompanyCodeCountry CompanyCodeCountry Reporting Ctry/Reg.
DebitCreditCode DebitCreditCode Single-Character Flag
ReferenceDocumentType ReferenceDocumentType Reference Document Type
ReverseDocument ReverseDocument Reversed With
ReportingCountry ReportingCountry
TaxReturnCountry TaxReturnCountry Reporting C/R
GLAccount GLAccount General Ledger
BusinessPlace BusinessPlace Business place
TaxJurisdiction TaxJurisdiction Tax Jurisdiction
LowestLevelTaxJurisdiction LowestLevelTaxJurisdiction Jurisdict. Code
TaxNumber1 TaxNumber1 VAT Reg. No.
TaxNumber2 TaxNumber2 Tax Number 2
BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerName BusinessPartnerName Extracted Customer Name
CustomerSupplierAddress CustomerSupplierAddress
ReportingCurrency ReportingCurrency Currency
AmountInReportingCurrency AmountInReportingCurrency
TaxItemGroupingVersion TaxItemGroupingVersion Tax Grping Ver.
DocumentCurrency DocumentCurrency Document Currency
AmountInTransactionCurrency AmountInTransactionCurrency Pt Crcy Amt
StatryRptgEntity
StatryRptCategory
StatryRptRunID

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_CZ_StRpTaxItemReturn.
-- 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: CCZSRTAXITEMRET
-- Parameters: P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id, P_StatryRptRunID : srf_report_run_id

CREATE VIEW C_CZ_StRpTaxItemReturn AS
SELECT
  I_CZ_StRpTaxItemReturnCube.CompanyCode AS CompanyCode,
  I_CZ_StRpTaxItemReturnCube.AccountingDocument AS AccountingDocument,
  I_CZ_StRpTaxItemReturnCube.FiscalYear AS FiscalYear,
  TaxItem,
  TaxCode,
  TransactionTypeDetermination,
  TaxBox,
  ReportingDate,
  PostingDate,
  DocumentDate,
  TaxReportingDate,
  TaxDeclnAmountType,
  TaxType,
  FiscalPeriod,
  AccountingDocumentType,
  DocumentReferenceID,
  CompanyCodeCountry,
  DebitCreditCode,
  ReferenceDocumentType,
  ReverseDocument,
  ReportingCountry,
  TaxReturnCountry,
  GLAccount,
  BusinessPlace,
  TaxJurisdiction,
  LowestLevelTaxJurisdiction,
  TaxNumber1,
  TaxNumber2,
  BusinessPartner,
  BusinessPartnerName,
  CustomerSupplierAddress,
  ReportingCurrency,
  AmountInReportingCurrency,
  TaxItemGroupingVersion,
  DocumentCurrency,
  AmountInTransactionCurrency,
  $parameters.P_StatryRptgEntity AS StatryRptgEntity,
  $parameters.P_StatryRptCategory AS StatryRptCategory,
  $parameters.P_StatryRptRunID AS StatryRptRunID
LEFT OUTER JOIN C_StRpRptdJournalEntry ON /* join condition not captured in parsed metadata */
;