I_WithholdingTaxTypeText

DDL: I_WITHHOLDINGTAXTYPETEXT SQL: IWHLGTAXTYPETX Type: view BASIC Package: MDC_SUPPL_GOV_BO

Withholding Tax Type - Text

I_WithholdingTaxTypeText is a Basic CDS View that provides data about "Withholding Tax Type - Text" in SAP S/4HANA. It reads from 1 data source (t059u) and exposes 4 fields with key fields WithholdingTaxType, Language, Country. Part of development package MDC_SUPPL_GOV_BO.

Data Sources (1)

SourceAliasJoin Type
t059u t059u from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IWHLGTAXTYPETX view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Withholding Tax Type - Text view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey WithholdingTaxType view
ObjectModel.dataCategory #TEXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WithholdingTaxType t059u witht
KEY Language t059u spras
KEY Country t059u land1
WithholdingTaxTypeName t059u text40 Withholding Tax Type Description
@AbapCatalog.sqlViewName: 'IWHLGTAXTYPETX'
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@EndUserText.label: 'Withholding Tax Type - Text'
@AbapCatalog.compiler.compareFilter:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel: {
  usageType: {
    serviceQuality: #A,
    sizeCategory: #M,
    dataClass: #MASTER
  },
  representativeKey: 'WithholdingTaxType',
  dataCategory: #TEXT
}
define view I_WithholdingTaxTypeText
  as select from t059u
{

  key t059u.witht  as WithholdingTaxType,
      @Semantics.language:true
  key t059u.spras  as Language,
  key t059u.land1  as Country,
      @Semantics.text: true
      @EndUserText.label: 'Withholding Tax Type Description'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      t059u.text40 as WithholdingTaxTypeName
}