P_IN_RvsChrgAcctgDocTaxItem

DDL: P_IN_RVSCHRGACCTGDOCTAXITEM Type: view_entity COMPOSITE

P_IN_RvsChrgAcctgDocTaxItem is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_IN_GSTRvsChrgTaxCndnType, I_TaxItem) and exposes 7 fields with key fields CompanyCode, AccountingDocument, FiscalYear, TaxItem.

Data Sources (2)

SourceAliasJoin Type
I_IN_GSTRvsChrgTaxCndnType _ReverseChargeTaxCondType inner
I_TaxItem AcctgDocTaxItem from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_TaxItem CompanyCode Receiver Company Code
KEY AccountingDocument I_TaxItem AccountingDocument Journal Entry
KEY FiscalYear I_TaxItem FiscalYear G/L Fiscal Year
KEY TaxItem I_TaxItem TaxItem Tax Item
TaxCalculationProcedure I_IN_GSTRvsChrgTaxCndnType TaxCalculationProcedure Tax Procedure
ConditionType I_IN_GSTRvsChrgTaxCndnType ConditionType Condition type
IndianTaxConditionName I_IN_GSTRvsChrgTaxCndnType IndianTaxConditionName Condition Name

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_IN_RvsChrgAcctgDocTaxItem.
-- 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.

CREATE VIEW P_IN_RvsChrgAcctgDocTaxItem AS
SELECT
  AcctgDocTaxItem.CompanyCode AS CompanyCode,
  AcctgDocTaxItem.AccountingDocument AS AccountingDocument,
  AcctgDocTaxItem.FiscalYear AS FiscalYear,
  AcctgDocTaxItem.TaxItem AS TaxItem,
  _ReverseChargeTaxCondType.TaxCalculationProcedure AS TaxCalculationProcedure,
  _ReverseChargeTaxCondType.ConditionType AS ConditionType,
  _ReverseChargeTaxCondType.IndianTaxConditionName AS IndianTaxConditionName
FROM I_TaxItem AS AcctgDocTaxItem
INNER JOIN I_IN_GSTRvsChrgTaxCndnType AS _ReverseChargeTaxCondType ON /* join condition not captured in parsed metadata */
;