I_CustomerTaxClassification
Customer Tax Classification
I_CustomerTaxClassification is a Basic CDS View (Dimension) that provides data about "Customer Tax Classification" in SAP S/4HANA. It reads from 1 data source (tskd) and exposes 4 fields with key fields CustomerTaxCategory, CustomerTaxClassification. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tskd | tskd | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ConditionType | _ConditionType | $projection.CustomerTaxCategory = _ConditionType.ConditionType and _ConditionType.ConditionUsage = 'A' and _ConditionType.ConditionApplication = 'V' |
| [0..*] | I_CustomerTaxClassificationT | _Text | $projection.CustomerTaxCategory = _Text.CustomerTaxCategory and $projection.CustomerTaxClassification = _Text.CustomerTaxClassification |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.sapObjectNodeType.name | CustomerTaxClassification | view | |
| ObjectModel.representativeKey | CustomerTaxClassification | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Customer Tax Classification | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ISDCUSTTAXCLASS | 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 (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustomerTaxCategory | tatyp | ||
| KEY | CustomerTaxClassification | taxkd | ||
| _ConditionType | _ConditionType | |||
| _Text | _Text |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.sapObjectNodeType.name: 'CustomerTaxClassification'
@ObjectModel.representativeKey: 'CustomerTaxClassification'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE ]
@EndUserText.label: 'Customer Tax Classification'
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
sqlViewName: 'ISDCUSTTAXCLASS',
compiler.compareFilter: true,
buffering: {
status: #ACTIVE,
type: #FULL
},
preserveKey: true
}
@Metadata.ignorePropagatedAnnotations: true
define view I_CustomerTaxClassification
as select from tskd
association [0..1] to I_ConditionType as _ConditionType on $projection.CustomerTaxCategory = _ConditionType.ConditionType
and _ConditionType.ConditionUsage = 'A'
and _ConditionType.ConditionApplication = 'V'
association [0..*] to I_CustomerTaxClassificationT as _Text on $projection.CustomerTaxCategory = _Text.CustomerTaxCategory
and $projection.CustomerTaxClassification = _Text.CustomerTaxClassification
{
@ObjectModel.foreignKey.association: '_ConditionType'
key tatyp as CustomerTaxCategory,
@ObjectModel.text.association: '_Text'
key taxkd as CustomerTaxClassification,
//Association
_ConditionType,
_Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TSKD"
],
"ASSOCIATED":
[
"I_CONDITIONTYPE",
"I_CUSTOMERTAXCLASSIFICATIONT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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