I_CustomerTaxClassificationT

DDL: I_CUSTOMERTAXCLASSIFICATIONT Type: view BASIC

Customer Tax Classification - Text

I_CustomerTaxClassificationT is a Basic CDS View that provides data about "Customer Tax Classification - Text" in SAP S/4HANA. It reads from 1 data source (tskdt) and exposes 7 fields with key fields CustomerTaxCategory, CustomerTaxClassification, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tskdt tskdt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_ConditionType _ConditionType $projection.CustomerTaxCategory = _ConditionType.ConditionType and _ConditionType.ConditionUsage = 'A' and _ConditionType.ConditionApplication = 'V'
[0..1] I_CustomerTaxClassification _CustomerTaxClassification $projection.CustomerTaxCategory = _CustomerTaxClassification.CustomerTaxCategory and $projection.CustomerTaxClassification = _CustomerTaxClassification.CustomerTaxClassification
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CustomerTaxClassification view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
EndUserText.label Customer Tax Classification - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDCUSTTAXCLASST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CustomerTaxCategory tatyp
KEY CustomerTaxClassification taxkd
KEY Language spras
CustomerTaxClassificationName vtext
_ConditionType _ConditionType
_CustomerTaxClassification _CustomerTaxClassification
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CustomerTaxClassification'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.modelingPattern:         #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
                                      #CDS_MODELING_DATA_SOURCE,
                                      #CDS_MODELING_ASSOCIATION_TARGET,
                                      #SQL_DATA_SOURCE,
                                      #EXTRACTION_DATA_SOURCE ]
@EndUserText.label: 'Customer Tax Classification - Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
  sqlViewName: 'ISDCUSTTAXCLASST',
  compiler.compareFilter: true,
  buffering: {
    status: #ACTIVE,
    type: #FULL
  },
  preserveKey: true
}
@Metadata.ignorePropagatedAnnotations: true

define view I_CustomerTaxClassificationT
as select from tskdt

association [0..1] to I_ConditionType             as _ConditionType              on $projection.CustomerTaxCategory       = _ConditionType.ConditionType
                                                                                and _ConditionType.ConditionUsage         = 'A'
                                                                                and _ConditionType.ConditionApplication   = 'V'
association [0..1] to I_CustomerTaxClassification as _CustomerTaxClassification  on $projection.CustomerTaxCategory       = _CustomerTaxClassification.CustomerTaxCategory
                                                                                and $projection.CustomerTaxClassification = _CustomerTaxClassification.CustomerTaxClassification   
association [0..1] to I_Language                  as _Language                   on $projection.Language                  = _Language.Language 
{
    @ObjectModel.foreignKey.association: '_ConditionType'
    key tatyp as CustomerTaxCategory,
    
    @ObjectModel.foreignKey.association: '_CustomerTaxClassification'
    key taxkd as CustomerTaxClassification,
    
    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language'
    key spras as Language,
    
    @Semantics.text: true
    vtext as CustomerTaxClassificationName,
    
    //Association

    _ConditionType,
    _CustomerTaxClassification,
    _Language
};     
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TSKDT"
],
"ASSOCIATED":
[
"I_CONDITIONTYPE",
"I_CUSTOMERTAXCLASSIFICATION",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/