I_CoCodeWhgdTaxExemptionReason

DDL: I_COCODEWHGDTAXEXEMPTIONREASON SQL: ICCWHLDGEXMPRSN Type: view BASIC

Withholding Tax Exemption Reason in Company Code

I_CoCodeWhgdTaxExemptionReason is a Basic CDS View that provides data about "Withholding Tax Exemption Reason in Company Code" in SAP S/4HANA. It reads from 1 data source (t059v) and exposes 4 fields with key fields CompanyCode, ExemptionReason. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t059v ExemptionReason from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_WhgdTaxExemptionReasonText _Text $projection.Country = _Text.Country and $projection.ExemptionReason = _Text.ExemptionReason

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICCWHLDGEXMPRSN view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Withholding Tax Exemption Reason in Company Code view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #NONE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode CompanyCode Receiver Company Code
KEY ExemptionReason t059v wt_wtexrs Exempt. Reason
Country CompanyCode Country Venue: Ctry/Reg
_Text _Text

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_CoCodeWhgdTaxExemptionReason.
-- 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: ICCWHLDGEXMPRSN

CREATE VIEW I_CoCodeWhgdTaxExemptionReason AS
SELECT
  CompanyCode.CompanyCode AS CompanyCode,
  ExemptionReason.wt_wtexrs AS ExemptionReason,
  CompanyCode.Country AS Country
FROM t059v AS ExemptionReason
LEFT OUTER JOIN I_WhgdTaxExemptionReasonText AS _Text ON Country = _Text.Country AND ExemptionReason = _Text.ExemptionReason  -- association [0..*]
;