I_CoCodeWhgdTaxExemptionReason
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)
| Source | Alias | Join Type |
|---|---|---|
| t059v | ExemptionReason | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_WhgdTaxExemptionReasonText | _Text | $projection.Country = _Text.Country and $projection.ExemptionReason = _Text.ExemptionReason |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA