I_CAWithholdingTaxSupplement

DDL: I_CAWITHHOLDINGTAXSUPPLEMENT Type: view_entity BASIC

Withholding Tax Supplement

I_CAWithholdingTaxSupplement (Basic)

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

Contr Acctg Withholding Tax Supplement · Contract Accounting

I_CAWithholdingTaxSupplement is a Basic CDS View that provides data about "Withholding Tax Supplement" in SAP S/4HANA. It reads from 1 data source (tfk059e) and exposes 4 fields with key fields Country, CAWithholdingTaxSupplement. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Configuration Data
Purpose
This CDS view retrieves withholding tax supplements representing a tax calculated in a second step on the basis of the first withholding tax. Example With Invoice 1% Tax , With Payment 2% Tax This CDS view provides the data to answer the business question: Which withholding tax supplement values are available in the system? 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 .

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessContract Accounting
Application ComponentFI-CA
CapabilitiesAssociation Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities
PackageContract Accounting for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves withholding tax supplements representing a tax calculated in a second step on the basis of the first withholding tax.</p> Example <p>With Invoice 1% Tax, With Payment 2% Tax</p> <p>This CDS view provides the data to answer the business question: Which withholding tax supplement values are available in the system?</p> <p>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.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tfk059e tfk059e from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.Country = _Country.Country
[0..*] I_CAWithholdingTaxSupplementT _Text $projection.Country = _Text.Country and $projection.CAWithholdingTaxSupplement = _Text.CAWithholdingTaxSupplement

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Withholding Tax Supplement view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey CAWithholdingTaxSupplement view
ObjectModel.sapObjectNodeType.name ContrAcctgWhldgTaxSupplement view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Country land1 Country/Region Key
KEY CAWithholdingTaxSupplement qssew Withholding Tax Supplement
_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_CAWithholdingTaxSupplement.
-- 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.

CREATE VIEW I_CAWithholdingTaxSupplement AS
SELECT
  land1 AS Country,
  qssew AS CAWithholdingTaxSupplement
FROM tfk059e
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [0..1]
LEFT OUTER JOIN I_CAWithholdingTaxSupplementT AS _Text ON Country = _Text.Country AND CAWithholdingTaxSupplement = _Text.CAWithholdingTaxSupplement  -- association [0..*]
;