R_TimeDependentTaxCode
TDT Tax Codes per Country
R_TimeDependentTaxCode is a Basic CDS View that provides data about "TDT Tax Codes per Country" in SAP S/4HANA. It reads from 1 data source (a4av) and exposes 8 fields with key fields ConditionApplication, Country, VATConditionType, TaxCode, CndnRecordValidityStartDate. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| a4av | a4av | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | TDT Tax Codes per Country | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConditionApplication | kappl | ||
| KEY | Country | aland | ||
| KEY | VATConditionType | kschl | ||
| KEY | TaxCode | mwskz | ||
| KEY | CndnRecordValidityStartDate | datab | ||
| ConditionRecord | knumh | |||
| CndnRecordValidityEndDate | datbi | |||
| CountryIsTimeDependentTxActive |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'TDT Tax Codes per Country'
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity R_TimeDependentTaxCode as select from a4av
{
key kappl as ConditionApplication,
key aland as Country,
key kschl as VATConditionType,
key mwskz as TaxCode,
key datab as CndnRecordValidityStartDate,
knumh as ConditionRecord,
datbi as CndnRecordValidityEndDate,
@Semantics.booleanIndicator:true
'X' as CountryIsTimeDependentTxActive
}
where kappl = 'TX'
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