I_DepreciationKey

DDL: I_DEPRECIATIONKEY SQL: IFIDEPRKEY Type: view BASIC

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)

SourceAliasJoin Type
t090na t090na from

Associations (2)

CardinalityTargetAliasCondition
[1] I_ChartOfDepreciation _ChartOfDepreciation $projection.ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation
[0..*] I_DepreciationKeyText _Text $projection.ChartOfDepreciation = _Text.ChartOfDepreciation and $projection.DepreciationKey = _Text.DepreciationKey

Annotations (13)

NameValueLevelField
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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChartOfDepreciation t090na afapl
KEY DepreciationKey t090na afasl
_ChartOfDepreciation _ChartOfDepreciation
_Text _Text
@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":""
}
}*/