I_SiteTaxClassificationText

DDL: I_SITETAXCLASSIFICATIONTEXT SQL: ISTCT Type: view BASIC

Tax Classification Description

I_SiteTaxClassificationText is a Basic CDS View that provides data about "Tax Classification Description" in SAP S/4HANA. It reads from 1 data source (tmkw1t) and exposes 4 fields with key fields SiteTaxClassification, CountryCode, Language.

Data Sources (1)

SourceAliasJoin Type
tmkw1t tmkw1t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISTCT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Tax Classification Description view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SiteTaxClassification view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SiteTaxClassification taxiw
KEY CountryCode land1
KEY Language spras
SiteTaxClassificationName taxib
@AbapCatalog.sqlViewName: 'ISTCT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Tax Classification Description'
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC
@ObjectModel: {
    dataCategory: #TEXT,
    representativeKey: 'SiteTaxClassification',
    usageType.serviceQuality: #A,
    usageType.sizeCategory: #S,
    usageType.dataClass: #META
}
define view I_SiteTaxClassificationText
  as select from tmkw1t
{
  key       taxiw as SiteTaxClassification,
  key       land1 as CountryCode,
  key       spras as Language,
            @Semantics.text: true
            taxib as SiteTaxClassificationName

}