Deprecated
This CDS view is deprecated in S/4HANA. Use I_DepreciationAreaForLedger instead. View all deprecated CDS views →

I_RealDepreciationArea

DDL: I_REALDEPRECIATIONAREA SQL: IREALDEPRAREA Type: view BASIC

Real Depreciation Area

I_RealDepreciationArea is a Basic CDS View (Dimension) that provides data about "Real Depreciation Area" in SAP S/4HANA. It reads from 1 data source (t093a) and exposes 7 fields with key fields ChartOfDepreciation, AssetRealDepreciationArea. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t093a t093a from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_ChartOfDepreciation _ChartOfDepreciation $projection.ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation
[0..1] I_CurrencyRole _CurrencyRole $projection.CurrencyRole = _CurrencyRole.CurrencyRole
[0..*] I_AssetDepreciationAreaText _Text $projection.ChartOfDepreciation = _Text.ChartOfDepreciation and $projection.AssetRealDepreciationArea = _Text.AssetDepreciationArea

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IREALDEPRAREA view
Analytics.dataCategory #DIMENSION view
EndUserText.label Real Depreciation Area view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_DepreciationAreaForLedger view
ObjectModel.representativeKey AssetRealDepreciationArea view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ChartOfDepreciation afapl Chart of Depr.
KEY AssetRealDepreciationArea afabe Deprec. Area
CurrencyRole curtp Valuation Area
ValueReferenceDepreciationArea wrtafb Adopt Values From
_ChartOfDepreciation _ChartOfDepreciation
_CurrencyRole _CurrencyRole
_Text _Text

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_RealDepreciationArea.
-- 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: IREALDEPRAREA

CREATE VIEW I_RealDepreciationArea AS
SELECT
  afapl AS ChartOfDepreciation,
  afabe AS AssetRealDepreciationArea,
  curtp AS CurrencyRole,
  wrtafb AS ValueReferenceDepreciationArea
FROM t093a
LEFT OUTER JOIN I_ChartOfDepreciation AS _ChartOfDepreciation ON ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation  -- association [0..1]
LEFT OUTER JOIN I_CurrencyRole AS _CurrencyRole ON CurrencyRole = _CurrencyRole.CurrencyRole  -- association [0..1]
LEFT OUTER JOIN I_AssetDepreciationAreaText AS _Text ON ChartOfDepreciation = _Text.ChartOfDepreciation AND AssetRealDepreciationArea = _Text.AssetDepreciationArea  -- association [0..*]
;