I_BusPartTaxTypeText

DDL: I_BUSPARTTAXTYPETEXT SQL: IBPTAXTYPETEXT Type: view BASIC

Business Partner Tax Type - Text

I_BusPartTaxTypeText is a Basic CDS View that provides data about "Business Partner Tax Type - Text" in SAP S/4HANA. It reads from 1 data source (tfktaxnumtype_t) and exposes 3 fields with key fields Language, BPTaxType.

Data Sources (1)

SourceAliasJoin Type
tfktaxnumtype_t tfktaxnumtype_t from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IBPTAXTYPETEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Business Partner Tax Type - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BPTaxType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY BPTaxType taxtype
TaxTypeName text Tax Category Description
@AbapCatalog.sqlViewName: 'IBPTAXTYPETEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Business Partner Tax Type - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
  representativeKey: 'BPTaxType',
  dataCategory: #TEXT,
  usageType.serviceQuality: #X,
  usageType.sizeCategory : #S,
  usageType.dataClass: #CUSTOMIZING,
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
  supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
@Metadata.ignorePropagatedAnnotations: true
define view I_BusPartTaxTypeText
  as select from tfktaxnumtype_t
{
      @Semantics.language: true
  key spras   as Language,
  key taxtype as BPTaxType,
      @Semantics.text: true
      @EndUserText.label: 'Tax Category Description'
      @UI.identification:[{label: 'Tax Category Description'}]
      text    as TaxTypeName
}