C_CoCodeWithholdingTaxTypeVH

DDL: C_COCODEWITHHOLDINGTAXTYPEVH SQL: CCCWHLDGTAXTYPVH Type: view CONSUMPTION Package: MDC_SUPPL_GOV_BO

Withholding Tax Type in Company Code

C_CoCodeWithholdingTaxTypeVH is a Consumption CDS View that provides data about "Withholding Tax Type in Company Code" in SAP S/4HANA. It reads from 1 data source (I_CoCodeWithholdingTaxType) and exposes 4 fields with key fields CompanyCode, WithholdingTaxType. It is exposed through 2 OData services (ASQL_F7204A, ASQL_F7205A). Part of development package MDC_SUPPL_GOV_BO.

Data Sources (1)

SourceAliasJoin Type
I_CoCodeWithholdingTaxType I_CoCodeWithholdingTaxType from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CCCWHLDGTAXTYPVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Withholding Tax Type in Company Code view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey WithholdingTaxType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Consumption.ranked true view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F7204A ASQL_F7204A C2 NOT_RELEASED
ASQL_F7205A ASQL_F7205A C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY WithholdingTaxType WithholdingTaxType WTax Type
Country Country Venue: Ctry/Reg
WithholdingTaxTypeName

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_CoCodeWithholdingTaxTypeVH.
-- 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: CCCWHLDGTAXTYPVH

CREATE VIEW C_CoCodeWithholdingTaxTypeVH AS
SELECT
  CompanyCode,
  WithholdingTaxType,
  Country,
  _Text[ 1: Language = $session.system_language ].WithholdingTaxTypeName AS WithholdingTaxTypeName
FROM I_CoCodeWithholdingTaxType
;