I_WithholdingTaxTypeText

DDL: I_WITHHOLDINGTAXTYPETEXT SQL: IWHLGTAXTYPETX Type: view BASIC

Withholding Tax Type - Text

I_WithholdingTaxTypeText is a Basic CDS View that provides data about "Withholding Tax Type - Text" in SAP S/4HANA. It reads from 1 data source (t059u) and exposes 4 fields with key fields WithholdingTaxType, Language, Country.

Data Sources (1)

SourceAliasJoin Type
t059u t059u from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IWHLGTAXTYPETX view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Withholding Tax Type - Text view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey WithholdingTaxType view
ObjectModel.dataCategory #TEXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WithholdingTaxType t059u witht WTax Type
KEY Language t059u spras Off. Language
KEY Country t059u land1 Trip Ctry/Reg
WithholdingTaxTypeName t059u text40 Withholding Tax Type Description

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_WithholdingTaxTypeText.
-- 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: IWHLGTAXTYPETX

CREATE VIEW I_WithholdingTaxTypeText AS
SELECT
  t059u.witht AS WithholdingTaxType,
  t059u.spras AS Language,
  t059u.land1 AS Country,
  t059u.text40 AS WithholdingTaxTypeName
FROM t059u
;