I_CoCodeWhgdTaxExemptionReason

DDL: I_COCODEWHGDTAXEXEMPTIONREASON SQL: ICCWHLDGEXMPRSN Type: view BASIC

Withholding Tax Exemption Reason in Company Code

I_CoCodeWhgdTaxExemptionReason is a Basic CDS View that provides data about "Withholding Tax Exemption Reason in Company Code" in SAP S/4HANA. It reads from 1 data source (t059v) and exposes 4 fields with key fields CompanyCode, ExemptionReason. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t059v ExemptionReason from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_WhgdTaxExemptionReasonText _Text $projection.Country = _Text.Country and $projection.ExemptionReason = _Text.ExemptionReason

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICCWHLDGEXMPRSN view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Withholding Tax Exemption Reason in Company Code view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #NONE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode CompanyCode
KEY ExemptionReason t059v wt_wtexrs
Country CompanyCode Country
_Text _Text
@AbapCatalog.sqlViewName: 'ICCWHLDGEXMPRSN'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.viewEnhancementCategory: [#NONE]
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Withholding Tax Exemption Reason in Company Code'
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@VDM.viewType: #BASIC
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #MASTER
}
@ObjectModel: {
  modelingPattern: #NONE,
  supportedCapabilities: [#CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
define view I_CoCodeWhgdTaxExemptionReason
  as select from           t059v         as ExemptionReason
    left outer to one join I_CompanyCode as CompanyCode on CompanyCode.Country = ExemptionReason.land1
  association [0..*] to I_WhgdTaxExemptionReasonText as _Text on  $projection.Country         = _Text.Country
                                                              and $projection.ExemptionReason = _Text.ExemptionReason
{
  key CompanyCode.CompanyCode,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key ExemptionReason.wt_wtexrs as ExemptionReason,
      CompanyCode.Country,

      _Text
}