I_WithholdingTaxType

DDL: I_WITHHOLDINGTAXTYPE Type: view_entity BASIC Package: FQST

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)

SourceAliasJoin Type
t059p t059p from

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
;