I_DepreciationKeyText

DDL: I_DEPRECIATIONKEYTEXT SQL: IFIDEPRKEYT Type: view BASIC Package: FINS_FIS_AA_MD

Depreciation Key - Text

I_DepreciationKeyText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Public Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_DepreciationKeyText is a Basic CDS View that provides data about "Depreciation Key - Text" in SAP S/4HANA. It reads from 1 data source (t090nat) and exposes 6 fields with key fields ChartOfDepreciation, DepreciationKey, Language. It has 2 associations to related views. Part of development package FINS_FIS_AA_MD.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-AA-ANA-2CL
CapabilitiesLanguage-Dependent Text,Data Source for Defining CDS Entities,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t090nat t090nat from

Associations (2)

CardinalityTargetAliasCondition
[1] I_ChartOfDepreciation _ChartOfDepreciation $projection.ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFIDEPRKEYT view
EndUserText.label Depreciation Key - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey DepreciationKey view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ChartOfDepreciation t090nat afapl Chart of Depreciaton for Asset Valuation
KEY DepreciationKey t090nat afasl Depreciation Key
KEY Language t090nat spras Off. Language
DepreciationKeyName Depreciation Key Name
_ChartOfDepreciation _ChartOfDepreciation
_Language _Language

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_DepreciationKeyText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IFIDEPRKEYT

CREATE VIEW I_DepreciationKeyText AS
SELECT
  t090nat.afapl AS ChartOfDepreciation,
  t090nat.afasl AS DepreciationKey,
  t090nat.spras AS Language,
  cast(t090nat.afatxt as fis_afatxt) AS DepreciationKeyName
FROM t090nat
LEFT OUTER JOIN I_ChartOfDepreciation AS _ChartOfDepreciation ON ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation  -- association [1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;