I_WithholdingTaxType
Withholding Tax Type
I_WithholdingTaxType is a Basic CDS View that provides data about "Withholding Tax Type" in SAP S/4HANA. It reads from 1 data source (t059p) and exposes 32 fields with key fields Country, WithholdingTaxType. Part of development package FQST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t059p | t059p | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Withholding Tax Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | WithholdingTaxType | view | |
| VDM.viewType | #BASIC | view |
Fields (32)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | land1 | Trip Ctry/Reg | |
| KEY | WithholdingTaxType | witht | WTax Type | |
| WithholdingTaxAccumulationType | wt_accpt | Accumul. Period | ||
| WhgdTaxAccumulationIsShared | wt_accall | Combined accum. | ||
| WhgdTaxIsAccumulatedToMax | wt_acctmax | Acc. WTax to Max. | ||
| WithholdingTaxRoundingRule | wt_wtrd | Rounding Rule | ||
| CntrlInvcWhgdTaxCalcPostgType | wt_ceinv | Central Invoice | ||
| WithholdingTaxBaseAmountType | wt_base | WTax Base Amt Type | ||
| WhgdTaxPostingIsRequired | wt_dopost | Post WTax Amount | ||
| WhgdTaxCalculationTimePoint | wt_postm | Posting Time | ||
| WhgdTaxIsAlreadyWithheld | wt_alwt | WTax Alrdy W/hd | ||
| WhgdTxIsCalcdPriorToCshDisc | wt_wtdsc | W/Tax pre CD Deduct. | ||
| SelfWithholdingIsPossible | wt_slfwt | Self-W/holding | ||
| MnlEntrOfWhgdTaxAmtIsAllowed | wt_manual | WTax Amt Ent. Man. | ||
| MinMaxWhgdTaxBaseAmtDefLevel | wt_maintb | Maintenance of Min. Base Amount | ||
| MinMaxWhgdTaxAmountDefLevel | wt_mainta | Maintenance of WTax Min./Max. Amounts | ||
| WhgdTxBaseAmtIsReduced | wt_redbas | Base amnt reductn | ||
| MnlEntrOfTxAmtIsAllwdAtPayt | wt_wtinv | WTax for Payments | ||
| Region | regio | Resident Region | ||
| MinWhgdTxAmtCheckGranularity | wt_bcplvl | Min. Check - Doc.Lvl | ||
| WhgdTxCertificateIsNotRelevant | wt_ctnbrl | No Cert. Numbering | ||
| MnlEntrOfWhgdTxBaseAmtIsAllwd | wt_manbas | W/Tax Base Manual | ||
| ConditionType | kschl | Tax Item Type | ||
| WithholdingTaxExchangeRateType | wt_kurst | WTax Exch.Rate | ||
| WhgdTxBaseAmountIsInherited | wt_inheritbase | Inherit Base | ||
| WhgdTaxAmountIsNotReduced | wt_noreduction | Vend.Item Not Red. | ||
| DependencyNmbrOfWhldgTaxType | wt_wtdp | Depend. on Type No. | ||
| SqntlNmbrOfWhldgTaxType | wt_tpnr | WTax Type No. | ||
| WhgdTaxCertificateFormName | tdform | SAPscript Form | ||
| WithholdingTaxConditionType | kschl_tx | Condition Type | ||
| _Country | _Country | |||
| _Region | _Region |
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_WithholdingTaxType.
-- 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 I_WithholdingTaxType AS
SELECT
land1 AS Country,
witht AS WithholdingTaxType,
wt_accpt AS WithholdingTaxAccumulationType,
wt_accall AS WhgdTaxAccumulationIsShared,
wt_acctmax AS WhgdTaxIsAccumulatedToMax,
wt_wtrd AS WithholdingTaxRoundingRule,
wt_ceinv AS CntrlInvcWhgdTaxCalcPostgType,
wt_base AS WithholdingTaxBaseAmountType,
wt_dopost AS WhgdTaxPostingIsRequired,
wt_postm AS WhgdTaxCalculationTimePoint,
wt_alwt AS WhgdTaxIsAlreadyWithheld,
wt_wtdsc AS WhgdTxIsCalcdPriorToCshDisc,
wt_slfwt AS SelfWithholdingIsPossible,
wt_manual AS MnlEntrOfWhgdTaxAmtIsAllowed,
wt_maintb AS MinMaxWhgdTaxBaseAmtDefLevel,
wt_mainta AS MinMaxWhgdTaxAmountDefLevel,
wt_redbas AS WhgdTxBaseAmtIsReduced,
wt_wtinv AS MnlEntrOfTxAmtIsAllwdAtPayt,
regio AS Region,
wt_bcplvl AS MinWhgdTxAmtCheckGranularity,
wt_ctnbrl AS WhgdTxCertificateIsNotRelevant,
wt_manbas AS MnlEntrOfWhgdTxBaseAmtIsAllwd,
kschl AS ConditionType,
wt_kurst AS WithholdingTaxExchangeRateType,
wt_inheritbase AS WhgdTxBaseAmountIsInherited,
wt_noreduction AS WhgdTaxAmountIsNotReduced,
wt_wtdp AS DependencyNmbrOfWhldgTaxType,
wt_tpnr AS SqntlNmbrOfWhldgTaxType,
tdform AS WhgdTaxCertificateFormName,
kschl_tx AS WithholdingTaxConditionType
FROM t059p
;
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