I_WithholdingTaxIncomeTypeText

DDL: I_WITHHOLDINGTAXINCOMETYPETEXT SQL: IWINCOMETT Type: view BASIC Package: FQST

Withholding Tax Income Type - Txt

I_WithholdingTaxIncomeTypeText (Basic)

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

Financial Operations

I_WithholdingTaxIncomeTypeText is a Basic CDS View that provides data about "Withholding Tax Income Type - Txt" in SAP S/4HANA. It reads from 1 data source (t059g) and exposes 7 fields with key fields Language, Country, WithholdingTaxIncomeType. It has 3 associations to related views. Part of development package FQST.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessFinancial Operations
Application ComponentFI-AP-AP-Q-2CL
CapabilitiesLanguage-Dependent Text,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageFinancial Operations for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t059g t059g from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_Country _Country $projection.Country = _Country.Country
[0..1] I_WithholdingTaxIncomeType _IncomeType $projection.WithholdingTaxIncomeType = _IncomeType.WithholdingTaxIncomeType and $projection.Country = _IncomeType.Country

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IWINCOMETT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Withholding Tax Income Type - Txt view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language t059g spras Off. Language
KEY Country t059g land1 Country/Region Key
KEY WithholdingTaxIncomeType t059g qekar Income Type
WithholdingTaxIncomeTypeName t059g eatxt Text, Length 40
_Language _Language
_Country _Country
_IncomeType _IncomeType

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_WithholdingTaxIncomeTypeText.
-- 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: IWINCOMETT

CREATE VIEW I_WithholdingTaxIncomeTypeText AS
SELECT
  t059g.spras AS Language,
  t059g.land1 AS Country,
  t059g.qekar AS WithholdingTaxIncomeType,
  t059g.eatxt AS WithholdingTaxIncomeTypeName
FROM t059g
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [0..1]
LEFT OUTER JOIN I_WithholdingTaxIncomeType AS _IncomeType ON WithholdingTaxIncomeType = _IncomeType.WithholdingTaxIncomeType AND Country = _IncomeType.Country  -- association [0..1]
;