I_DepreciationKey
Depreciation Key
I_DepreciationKey is a Basic CDS View (Dimension) that provides data about "Depreciation Key" in SAP S/4HANA. It reads from 1 data source (t090na) and exposes 4 fields with key fields ChartOfDepreciation, DepreciationKey. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t090na | t090na | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_ChartOfDepreciation | _ChartOfDepreciation | $projection.ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation |
| [0..*] | I_DepreciationKeyText | _Text | $projection.ChartOfDepreciation = _Text.ChartOfDepreciation and $projection.DepreciationKey = _Text.DepreciationKey |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIDEPRKEY | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| EndUserText.label | Depreciation Key | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | DepreciationKey | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
@AbapCatalog.sqlViewName: 'IFIDEPRKEY'
@Analytics: { dataCategory: #DIMENSION }
@EndUserText.label: 'Depreciation Key'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'DepreciationKey',
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING,
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#ANALYTICAL_DIMENSION]
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_DepreciationKey
as select from t090na
association [1] to I_ChartOfDepreciation as _ChartOfDepreciation on $projection.ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation
association [0..*] to I_DepreciationKeyText as _Text on $projection.ChartOfDepreciation = _Text.ChartOfDepreciation
and $projection.DepreciationKey = _Text.DepreciationKey
{
@ObjectModel.foreignKey.association: '_ChartOfDepreciation'
key t090na.afapl as ChartOfDepreciation,
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key t090na.afasl as DepreciationKey,
_ChartOfDepreciation,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T090NA"
],
"ASSOCIATED":
[
"I_CHARTOFDEPRECIATION",
"I_DEPRECIATIONKEYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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