C_CustomerWithHoldingTaxTP

DDL: C_CUSTOMERWITHHOLDINGTAXTP Type: view_entity CONSUMPTION Package: VDM_MD_BP_RAP

Customer Withholding Tax

C_CustomerWithHoldingTaxTP is a Consumption CDS View that provides data about "Customer Withholding Tax" in SAP S/4HANA. It reads from 1 data source (I_CustomerWithHoldingTaxTP) and exposes 21 fields with key fields BusinessPartner, CompanyCode, WithholdingTaxType, Customer. Part of development package VDM_MD_BP_RAP.

Data Sources (1)

SourceAliasJoin Type
I_CustomerWithHoldingTaxTP I_CustomerWithHoldingTaxTP from

Annotations (8)

NameValueLevelField
EndUserText.label Customer Withholding Tax view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
KEY CompanyCode CompanyCode Receiver Company Code
KEY WithholdingTaxType WithholdingTaxType WTax Type
KEY Customer Customer Sold-to Party
WithholdingTaxTypeForEdit WithholdingTaxTypeForEdit WTax Type
CompanyCodeForEdit CompanyCodeForEdit Company Code
BusinessPartnerForEdit BusinessPartnerForEdit Busn. Partner
CountryCode CountryCode Country/Reg.
WithholdingTaxCode WithholdingTaxCode WTax Code
WithholdingTaxAgent WithholdingTaxAgent WTax Agent
ObligationDateBegin ObligationDateBegin W/Tax Obligated Frm
ObligationDateEnd ObligationDateEnd Oblig.to W/Tax Until
WithholdingTaxNumber WithholdingTaxNumber W/tax number
WithholdingTaxCertificate2 WithholdingTaxCertificate2 Exemption Number
WithholdingTaxExmptPercent WithholdingTaxExmptPercent Exemption Rate
ExemptionDateBegin ExemptionDateBegin Exempt From
ExemptionDateEnd ExemptionDateEnd Exempt To
ExemptionReason ExemptionReason Exempt. Reason
_BusinessPartnerCustomer _BusinessPartnerCustomer
_BusinessPartner _BusinessPartner
_CustomerCompanyCode _CustomerCompanyCode

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_CustomerWithHoldingTaxTP.
-- 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 C_CustomerWithHoldingTaxTP AS
SELECT
  BusinessPartner,
  CompanyCode,
  WithholdingTaxType,
  Customer,
  WithholdingTaxTypeForEdit,
  CompanyCodeForEdit,
  BusinessPartnerForEdit,
  CountryCode,
  WithholdingTaxCode,
  WithholdingTaxAgent,
  ObligationDateBegin,
  ObligationDateEnd,
  WithholdingTaxNumber,
  WithholdingTaxCertificate2,
  WithholdingTaxExmptPercent,
  ExemptionDateBegin,
  ExemptionDateEnd,
  ExemptionReason
FROM I_CustomerWithHoldingTaxTP
;