P_Withholdingtxtype

DDL: P_WITHHOLDINGTXTYPE Type: view_entity BASIC Package: GLO_FIN_IS_WHT_GEN

Private view for withholding tax type details

P_Withholdingtxtype is a Basic CDS View that provides data about "Private view for withholding tax type details" in SAP S/4HANA. It reads from 1 data source (t059p) and exposes 32 fields with key fields land1, witht. Part of development package GLO_FIN_IS_WHT_GEN.

Data Sources (1)

SourceAliasJoin Type
t059p t059p from

Annotations (7)

NameValueLevelField
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

Fields (32)

KeyFieldSource TableSource FieldDescription
KEY land1 land1 Trip Ctry/Reg
KEY witht witht WTax Type
wt_tpnr wt_tpnr WTax Type No.
wt_accpt wt_accpt Accumul. Period
wt_accall wt_accall Combined accum.
wt_acctmax wt_acctmax Acc. WTax to Max.
wt_wtrd wt_wtrd Rounding Rule
wt_ceinv wt_ceinv Central Invoice
wt_base wt_base WTax Base Amt Type
wt_dopost wt_dopost Post WTax Amount
wt_postm wt_postm Posting Time
wt_alwt wt_alwt WTax Alrdy W/hd
wt_wtdsc wt_wtdsc W/Tax pre CD Deduct.
wt_slfwt wt_slfwt Self-W/holding
wt_wtdp wt_wtdp Depend. on Type No.
wt_manual wt_manual WTax Amt Ent. Man.
wt_maintb wt_maintb Maintenance of Min. Base Amount
wt_mainta wt_mainta Maintenance of WTax Min./Max. Amounts
wt_redbas wt_redbas Base amnt reductn
wt_wtinv wt_wtinv WTax for Payments
regio regio Resident Region
tdform tdform SAPscript Form
wt_bcplvl wt_bcplvl Min. Check - Doc.Lvl
wt_ctnbrl wt_ctnbrl No Cert. Numbering
wt_manbas wt_manbas W/Tax Base Manual
kschl kschl Tax Item Type
j_1bsumval j_1bsumval NF transfer
j_1btexkey j_1btexkey Text key
wt_kurst wt_kurst WTax Exch.Rate
j_1aformat j_1aformat Certificate Format
kschl_tx kschl_tx Condition Type
j_daily_acc j_daily_acc Daily accumulation

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 P_Withholdingtxtype.
-- 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 P_Withholdingtxtype AS
SELECT
  land1,
  witht,
  wt_tpnr,
  wt_accpt,
  wt_accall,
  wt_acctmax,
  wt_wtrd,
  wt_ceinv,
  wt_base,
  wt_dopost,
  wt_postm,
  wt_alwt,
  wt_wtdsc,
  wt_slfwt,
  wt_wtdp,
  wt_manual,
  wt_maintb,
  wt_mainta,
  wt_redbas,
  wt_wtinv,
  regio,
  tdform,
  wt_bcplvl,
  wt_ctnbrl,
  wt_manbas,
  kschl,
  j_1bsumval,
  j_1btexkey,
  wt_kurst,
  j_1aformat,
  kschl_tx,
  j_daily_acc
FROM t059p
;