I_WithholdingTaxCodeVH

DDL: I_WITHHOLDINGTAXCODEVH SQL: IWHTCODEVH Type: view COMPOSITE Package: FQST

Extended Withholding Tax Code

I_WithholdingTaxCodeVH (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Financial Operations

I_WithholdingTaxCodeVH is a Composite CDS View that provides data about "Extended Withholding Tax Code" in SAP S/4HANA. It reads from 1 data source (I_Extendedwhldgtaxcode) and exposes 16 fields with key fields Country, WithholdingTaxType, WithholdingTaxCode. It has 4 associations to related views. Part of development package FQST.

SAP API Hub

CategoryComposite
StateC1
Line of BusinessFinancial Operations
Application ComponentFI-AP-AP-Q-2CL
CapabilitiesData Provider for Value Help
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageFinancial Operations for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_Extendedwhldgtaxcode I_Extendedwhldgtaxcode from

Associations (4)

CardinalityTargetAliasCondition
[1] I_Country _Country $projection.Country = _Country.Country
[1..*] I_ExtendedWhldgTaxCodeText _TaxCodeText $projection.WithholdingTaxType = _TaxCodeText.WithholdingTaxType and $projection.WithholdingTaxCode = _TaxCodeText.WithholdingTaxCode and $projection.Country = _TaxCodeText.CountryCode
[1..1] I_RegionText _RegionText $projection.Country = _RegionText.Country and $projection.Region = _RegionText.Region and _RegionText.Language = $session.system_language
[1..1] I_WithholdingTaxIncomeTypeText _IncomeTypeText $projection.Country = _IncomeTypeText.Country and $projection.WithholdingTaxIncomeType = _IncomeTypeText.WithholdingTaxIncomeType and _IncomeTypeText.Language = $session.system_language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IWHTCODEVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Extended Withholding Tax Code view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.supportedCapabilities #VALUE_HELP_PROVIDER view
Consumption.ranked true view
ObjectModel.representativeKey WithholdingTaxCode view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Country Country Country/Region Key
KEY WithholdingTaxType WithholdingTaxType Indicator for Withholding Tax Type
KEY WithholdingTaxCode WithholdingTaxCode Withholding Tax Code
OfficialWhldgTaxCode OfficialWhldgTaxCode Official Withholding Tax Key
WhldgTaxRelevantPercent WhldgTaxRelevantPercent Percentage Subject to Withholding Tax
WithholdingTaxPercent WithholdingTaxPercent Withholding Tax Rate
WhldgTaxCalcFormulaIsUsed WhldgTaxCalcFormulaIsUsed Indicator: Calculate Withholding Tax According to Formula?
Region Region Region (State, Province, County)
ProvincialTaxCode ProvincialTaxCode Provincial Tax Code
WithholdingTaxIncomeType WithholdingTaxIncomeType Income Type
WithholdingTaxPostingRule WithholdingTaxPostingRule Posting Indicator
WhldgTaxReferenceText WhldgTaxReferenceText Withholding Tax Key
_Country _Country
_TaxCodeText _TaxCodeText
_RegionText _RegionText
_IncomeTypeText _IncomeTypeText

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 I_WithholdingTaxCodeVH.
-- 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: IWHTCODEVH

CREATE VIEW I_WithholdingTaxCodeVH AS
SELECT
  Country,
  WithholdingTaxType,
  WithholdingTaxCode,
  OfficialWhldgTaxCode,
  WhldgTaxRelevantPercent,
  WithholdingTaxPercent,
  WhldgTaxCalcFormulaIsUsed,
  Region,
  ProvincialTaxCode,
  WithholdingTaxIncomeType,
  WithholdingTaxPostingRule,
  WhldgTaxReferenceText
FROM I_Extendedwhldgtaxcode
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [1]
LEFT OUTER JOIN I_ExtendedWhldgTaxCodeText AS _TaxCodeText ON WithholdingTaxType = _TaxCodeText.WithholdingTaxType AND WithholdingTaxCode = _TaxCodeText.WithholdingTaxCode AND Country = _TaxCodeText.CountryCode  -- association [1..*]
LEFT OUTER JOIN I_RegionText AS _RegionText ON Country = _RegionText.Country AND Region = _RegionText.Region AND _RegionText.Language = $session.system_language  -- association [1..1]
LEFT OUTER JOIN I_WithholdingTaxIncomeTypeText AS _IncomeTypeText ON Country = _IncomeTypeText.Country AND WithholdingTaxIncomeType = _IncomeTypeText.WithholdingTaxIncomeType AND _IncomeTypeText.Language = $session.system_language  -- association [1..1]
;