I_WithholdingTaxCodeVH
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
| Category | Composite |
|---|---|
| State | C1 |
| Line of Business | Financial Operations |
| Application Component | FI-AP-AP-Q-2CL |
| Capabilities | Data Provider for Value Help |
| Extensible (Key User) | No |
| Extensible (Developer) | No |
| Release State (Key User) | Released |
| Release State (Developer) | Released |
| Package | Financial Operations for SAP S/4HANA Cloud Public Edition |
Documentation
- Analytics with CDS Views — Build Analytics for S/4HANA Cloud Public Edition ABAP CDS views replicated to SAP Cloud Platform
- CDS Views on SAP Business Accelerator Hub — Explore SAP S/4HANA Cloud Public Edition CDS Views on SAP Business Accelerator Hub
- Create CDS View as API — Create CDS views in SAP S/4HANA Cloud Public Edition and consume them as APIs
- Custom CDS Views — Access data using a Custom Core Data Service view (Custom CDS view)
- Custom Communication Scenarios — Create custom communication scenarios to configure custom communication arrangement
- Key User Extensibility Tools — The Key User Extensibility Tools of S/4HANA
- SAP S/4HANA Extensibility — SAP S/4HANA Extensibility Tutorial
- VDM View Types — The Virtual Data Model in SAP S/4HANA Cloud Public Edition
- View Browser — Search, browse and tag CDS Views
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Extendedwhldgtaxcode | I_Extendedwhldgtaxcode | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA