C_CoCodeWithholdingTaxCodeVH

DDL: C_COCODEWITHHOLDINGTAXCODEVH SQL: CCCWHLDGCODEVH Type: view CONSUMPTION Package: MDC_SUPPL_GOV_BO

Withholding Tax Code in Company Code

C_CoCodeWithholdingTaxCodeVH is a Consumption CDS View that provides data about "Withholding Tax Code in Company Code" in SAP S/4HANA. It reads from 1 data source (I_CoCodeWithholdingTaxCode) and exposes 5 fields with key fields CompanyCode, WithholdingTaxType, WithholdingTaxCode. 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_CoCodeWithholdingTaxCode I_CoCodeWithholdingTaxCode from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CCCWHLDGCODEVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Withholding Tax Code in Company Code view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey WithholdingTaxType view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A 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 (5)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY WithholdingTaxType WithholdingTaxType WTax Type
KEY WithholdingTaxCode WithholdingTaxCode WTax Code
Country 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 C_CoCodeWithholdingTaxCodeVH.
-- 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: CCCWHLDGCODEVH

CREATE VIEW C_CoCodeWithholdingTaxCodeVH AS
SELECT
  CompanyCode,
  WithholdingTaxType,
  WithholdingTaxCode,
  Country
FROM I_CoCodeWithholdingTaxCode
;