I_WithholdingTxRecipientTypeVH

DDL: I_WITHHOLDINGTXRECIPIENTTYPEVH SQL: IWRECVH Type: view COMPOSITE Package: FQST

Withholding Tax Recipient Type

I_WithholdingTxRecipientTypeVH is a Composite CDS View that provides data about "Withholding Tax Recipient Type" in SAP S/4HANA. It reads from 1 data source (I_WithholdingTaxRecipientType) and exposes 6 fields with key fields WithholdingTaxType, RecipientType, WithholdingTaxCountry. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F7205A). Part of development package FQST.

Data Sources (1)

SourceAliasJoin Type
I_WithholdingTaxRecipientType I_WithholdingTaxRecipientType from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.WithholdingTaxCountry = _Country.Country
[1..*] I_WithholdingTaxRcpntTypeText _Text $projection.WithholdingTaxCountry = _Text.CountryCode and $projection.WithholdingTaxType = _Text.WithholdingTaxType and $projection.RecipientType = _Text.RecipientType

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IWRECVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Withholding Tax Recipient Type view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
ObjectModel.representativeKey RecipientType view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F7205A ASQL_F7205A C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY WithholdingTaxType WithholdingTaxType WTax Type
KEY RecipientType RecipientType Recipient Type
KEY WithholdingTaxCountry WithholdingTaxCountry WTax C/R Key
RecipientTypeText
_Country _Country
_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_WithholdingTxRecipientTypeVH.
-- 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: IWRECVH

CREATE VIEW I_WithholdingTxRecipientTypeVH AS
SELECT
  WithholdingTaxType,
  RecipientType,
  WithholdingTaxCountry,
  _Text[1: Language = $session.system_language].RecipientTypeText AS RecipientTypeText
FROM I_WithholdingTaxRecipientType
LEFT OUTER JOIN I_Country AS _Country ON WithholdingTaxCountry = _Country.Country  -- association [0..1]
LEFT OUTER JOIN I_WithholdingTaxRcpntTypeText AS _Text ON WithholdingTaxCountry = _Text.CountryCode AND WithholdingTaxType = _Text.WithholdingTaxType AND RecipientType = _Text.RecipientType  -- association [1..*]
;