P_CZ_StRpEUTaxClassification

DDL: P_CZ_STRPEUTAXCLASSIFICATION SQL: PCZSRECSLITMCLFN Type: view CONSUMPTION

Rptd and NonRptd items for ECSL - Corr.

P_CZ_StRpEUTaxClassification is a Consumption CDS View that provides data about "Rptd and NonRptd items for ECSL - Corr." in SAP S/4HANA. It reads from 1 data source (I_JournalEntry) and exposes 22 fields with key fields CompanyCode, AccountingDocument, FiscalYear, TaxCode, TransactionTypeDetermination.

Data Sources (1)

SourceAliasJoin Type
I_JournalEntry I_JournalEntry left_outer

Parameters (4)

NameTypeDefault
P_StatryRptgEntity srf_reporting_entity
P_StatryRptCategory srf_rep_cat_id
P_StatryRptRunID srf_report_run_id
P_RelocationDocumentType farp_blart

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PCZSRECSLITMCLFN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
VDM.private true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Rptd and NonRptd items for ECSL - Corr. view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_StRpTaxItmWithEUTaxClass CompanyCode Receiver Company Code
KEY AccountingDocument I_StRpTaxItmWithEUTaxClass AccountingDocument Journal Entry
KEY FiscalYear I_StRpTaxItmWithEUTaxClass FiscalYear G/L Fiscal Year
KEY TaxCode TaxCode Tax Code
KEY TransactionTypeDetermination TransactionTypeDetermination Transaction Key
Creditor Creditor Supplier
Debtor Debtor Debtor
VATRegistration VATRegistration VAT Registration No.
TaxableEntity TaxableEntity
ReportingDate ReportingDate
PostingDate I_StRpTaxItmWithEUTaxClass PostingDate Posting Date for GR
DocumentDate I_StRpTaxItmWithEUTaxClass DocumentDate Journal Entry Date
TaxReportingDate I_StRpTaxItmWithEUTaxClass TaxReportingDate Tax Reporting Date
ReportingCountry ReportingCountry
IsEUTriangularDeal IsEUTriangularDeal Is EU Triangular Deal
DelivOfGoodsDestCountry DelivOfGoodsDestCountry Dest. C/R
DelivOfGoodsOriginCountry DelivOfGoodsOriginCountry
EUTaxClassification EUTaxClassification
TaxType TaxType Tax Type
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 P_CZ_StRpEUTaxClassification.
-- 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: PCZSRECSLITMCLFN
-- Parameters: P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id, P_StatryRptRunID : srf_report_run_id, P_RelocationDocumentType : farp_blart

CREATE VIEW P_CZ_StRpEUTaxClassification AS
SELECT
  I_StRpTaxItmWithEUTaxClass.CompanyCode AS CompanyCode,
  I_StRpTaxItmWithEUTaxClass.AccountingDocument AS AccountingDocument,
  I_StRpTaxItmWithEUTaxClass.FiscalYear AS FiscalYear,
  TaxCode,
  TransactionTypeDetermination,
  Creditor,
  Debtor,
  VATRegistration,
  TaxableEntity,
  ReportingDate,
  I_StRpTaxItmWithEUTaxClass.PostingDate AS PostingDate,
  I_StRpTaxItmWithEUTaxClass.DocumentDate AS DocumentDate,
  I_StRpTaxItmWithEUTaxClass.TaxReportingDate AS TaxReportingDate,
  ReportingCountry,
  IsEUTriangularDeal,
  DelivOfGoodsDestCountry,
  DelivOfGoodsOriginCountry,
  EUTaxClassification,
  TaxType,
  $parameters.P_StatryRptgEntity AS StatryRptgEntity,
  $parameters.P_StatryRptCategory AS StatryRptCategory,
  $parameters.P_StatryRptRunID AS StatryRptRunID
LEFT OUTER JOIN I_JournalEntry ON /* join condition not captured in parsed metadata */
;