I_CAOtherTaxCode
Other Tax Code
I_CAOtherTaxCode is a Basic CDS View that provides data about "Other Tax Code" in SAP S/4HANA. It reads from 1 data source (tfk007f) and exposes 7 fields with key fields Country, CAOtherTaxCode. It has 2 associations to related views. It is exposed through 1 OData service (UI_CADOCUMENT_MNG). Part of development package FKKB.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tfk007f | tfk007f | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Country | _Country | $projection.Country = _Country.Country |
| [0..*] | I_CAOtherTaxCodeText | _Text | $projection.Country = _Text.Country and $projection.CAOtherTaxCode = _Text.CAOtherTaxCode |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Other Tax Code | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| ObjectModel.representativeKey | CAOtherTaxCode | view | |
| ObjectModel.sapObjectNodeType.name | ContrAcctgOtherTaxCode | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_CADOCUMENT_MNG | UI_CADOCUMENT_MNG | V4 | C1 | NOT_RELEASED |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | land | ||
| KEY | CAOtherTaxCode | strkz | ||
| CAOtherTaxPercentage | pertax | |||
| CACategoriesAreUsedForOtherTax | xkschl | |||
| CAIsValidForUSTelcomTaxCode | xustc | |||
| _Country | _Country | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Other Tax Code'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { modelingPattern: #NONE,
representativeKey: 'CAOtherTaxCode',
sapObjectNodeType.name: 'ContrAcctgOtherTaxCode',
supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE ],
usageType: { dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S } }
@VDM.viewType: #BASIC
define view entity I_CAOtherTaxCode
as select from tfk007f
association [0..1] to I_Country as _Country on $projection.Country = _Country.Country
association [0..*] to I_CAOtherTaxCodeText as _Text on $projection.Country = _Text.Country
and $projection.CAOtherTaxCode = _Text.CAOtherTaxCode
{
@ObjectModel.foreignKey.association: '_Country'
key land as Country,
@ObjectModel.text.association: '_Text'
key strkz as CAOtherTaxCode,
pertax as CAOtherTaxPercentage,
xkschl as CACategoriesAreUsedForOtherTax,
xustc as CAIsValidForUSTelcomTaxCode,
// xspgl,
_Country,
_Text
}
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