C_PPS_PurReqnTaxCodeVH

DDL: C_PPS_PURREQNTAXCODEVH Type: view_entity CONSUMPTION

Purchase Requisition Tax Code

C_PPS_PurReqnTaxCodeVH is a Consumption CDS View that provides data about "Purchase Requisition Tax Code" in SAP S/4HANA. It reads from 1 data source (I_TaxCode) and exposes 3 fields with key fields TaxCode, TaxCalculationProcedure.

Data Sources (1)

SourceAliasJoin Type
I_TaxCode I_TaxCode from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Requisition Tax Code view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey TaxCode view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY TaxCode TaxCode Tax Code
KEY TaxCalculationProcedure TaxCalculationProcedure Tax Procedure
TaxCodeName

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_PPS_PurReqnTaxCodeVH.
-- 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 C_PPS_PurReqnTaxCodeVH AS
SELECT
  TaxCode,
  TaxCalculationProcedure,
  _Text[1: Language = $session.system_language].TaxCodeName AS TaxCodeName
FROM I_TaxCode
;