I_ExtendedWhldgTaxCodeText

DDL: I_EXTENDEDWHLDGTAXCODETEXT SQL: IFIEWHTAXCODET Type: view BASIC

Extended Withholding Tax Code - Text

I_ExtendedWhldgTaxCodeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_ExtendedWhldgTaxCodeText is a Basic CDS View (Cube) that provides data about "Extended Withholding Tax Code - Text" in SAP S/4HANA. It reads from 1 data source (t059zt) and exposes 6 fields with key fields WithholdingTaxCode, Language, CountryCode, WithholdingTaxType. It has 1 association to related views.

SAP Help Documentation

CategoryExtended Withholding Tax Code
Data CategoryCube
StatusReleased
Purpose
This CDS view exposes the values and text for the withholding tax code. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Not applicable.

Structure
Important fields Important fields in this view include the following: Field Name Description Measure or Attribute COUNTRYCODE Country code Attribute LANGUAGE Language Attribute WITHHOLDINGTAXCODE Withholding tax code Attribute WHLDGTAXCODENA<E Withholding tax code name Attribute WITHHOLDINGTAXTYPE Withholding tax type Attribute

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesAssociation Target for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t059zt t059zt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFIEWHTAXCODET view
EndUserText.label Extended Withholding Tax Code - Text view
VDM.viewType #BASIC view
Analytics.dataCategory #CUBE view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.supportedCapabilities #CDS_MODELING_ASSOCIATION_TARGET view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY WithholdingTaxCode t059zt wt_withcd Withholding Tax Code
KEY Language t059zt spras Off. Language
KEY CountryCode t059zt land1 Country/Region Key
KEY WithholdingTaxType t059zt witht Indicator for Withholding Tax Type
WhldgTaxCodeName t059zt text40 Text, 40 Characters Long
_Language _Language

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_ExtendedWhldgTaxCodeText.
-- 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: IFIEWHTAXCODET

CREATE VIEW I_ExtendedWhldgTaxCodeText AS
SELECT
  t059zt.wt_withcd AS WithholdingTaxCode,
  t059zt.spras AS Language,
  t059zt.land1 AS CountryCode,
  t059zt.witht AS WithholdingTaxType,
  t059zt.text40 AS WhldgTaxCodeName
FROM t059zt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;