I_WithholdingTaxTypeText
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)
| Source | Alias | Join Type |
|---|---|---|
| t059u | t059u | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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
}
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