P_RptdItemLocalPA

DDL: P_RPTDITEMLOCALPA Type: view_entity COMPOSITE

P_RptdItemLocalPA is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_StRpTaxItem) and exposes 6 fields with key fields CompanyCode, AccountingDocument, FiscalYear, TaxItem, TaxItemUUID.

Data Sources (1)

SourceAliasJoin Type
I_StRpTaxItem I_StRpTaxItem from

Parameters (1)

NameTypeDefault
P_ReportingCountry land1

Annotations (6)

NameValueLevelField
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY AccountingDocument AccountingDocument Journal Entry
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY TaxItem TaxItem Tax Item
KEY TaxItemUUID TaxItemUUID
ReportingDate ReportingDate

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_RptdItemLocalPA.
-- 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.
-- Parameters: P_ReportingCountry : land1

CREATE VIEW P_RptdItemLocalPA AS
SELECT
  CompanyCode,
  AccountingDocument,
  FiscalYear,
  TaxItem,
  TaxItemUUID,
  ReportingDate
FROM I_StRpTaxItem
;