C_WithholdingTaxCountryTextTmp

DDL: C_WITHHOLDINGTAXCOUNTRYTEXTTMP SQL: CWTCNTRYTXTT Type: view CONSUMPTION

C_WithholdingTaxCountryTextTmp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (t005r) and exposes 4 fields with key fields Country, WithholdingTaxCountry, Language.

Data Sources (1)

SourceAliasJoin Type
t005r t005r from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CWTCNTRYTXTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey WithholdingTaxCountry view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.viewType #CONSUMPTION view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Country land1 Trip Ctry/Reg
KEY WithholdingTaxCountry qland WTax C/R Key
KEY Language spras Off. Language
CountryName qltxt Withholding Tax Country/Region 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 C_WithholdingTaxCountryTextTmp.
-- 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: CWTCNTRYTXTT

CREATE VIEW C_WithholdingTaxCountryTextTmp AS
SELECT
  land1 AS Country,
  qland AS WithholdingTaxCountry,
  spras AS Language,
  qltxt AS CountryName
FROM t005r
;