C_CZ_StRpTaxItemReturn
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| C_StRpRptdJournalEntry | C_StRpRptdJournalEntry | left_outer |
Parameters (3)
| Name | Type | Default |
|---|---|---|
| P_StatryRptgEntity | srf_reporting_entity | |
| P_StatryRptCategory | srf_rep_cat_id | |
| P_StatryRptRunID | srf_report_run_id |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 */
;
Learn More
- S/4HANA CDS View Deprecation: What You Need to Know
- 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
- 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