I_AssetDepreciationAreaText

DDL: I_ASSETDEPRECIATIONAREATEXT Type: view BASIC

Depreciation Area Text

I_AssetDepreciationAreaText is a Basic CDS View that provides data about "Depreciation Area Text" in SAP S/4HANA. It reads from 1 data source (t093t) and exposes 6 fields with key fields ChartOfDepreciation, AssetDepreciationArea, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t093t t093t from

Associations (2)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IASTDEPRAREAT view
AbapCatalog.preserveKey true view
EndUserText.label Depreciation Area Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AssetDepreciationArea view
ObjectModel.dataCategory #TEXT 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 (6)

KeyFieldSource TableSource FieldDescription
KEY ChartOfDepreciation afapl Chart of Depr.
KEY AssetDepreciationArea afaber Deprec. Area
KEY Language spras Off. Language
AssetDepreciationAreaName afbtxt Depr. Area 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_AssetDepreciationAreaText.
-- 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.

CREATE VIEW I_AssetDepreciationAreaText AS
SELECT
  afapl AS ChartOfDepreciation,
  afaber AS AssetDepreciationArea,
  spras AS Language,
  afbtxt AS AssetDepreciationAreaName
FROM t093t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_ChartOfDepreciation AS _ChartOfDepreciation ON ChartOfDepreciation = _ChartOfDepreciation.ChartOfDepreciation  -- association [0..1]
;