I_ChartOfDepreciation

DDL: I_CHARTOFDEPRECIATION Type: view BASIC

Chart of Depreciation

I_ChartOfDepreciation (Basic)

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

Accounting and Financial Close

I_ChartOfDepreciation is a Basic CDS View (Dimension) that provides data about "Chart of Depreciation" in SAP S/4HANA. It reads from 1 data source (t096) and exposes 3 fields with key field ChartOfDepreciation. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business question: How many charts of depreciation are defined?

Structure
Measures and attributes Some important measures and attributes are: Chart of Depreciation

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-AA-IS
CapabilitiesData Source for Defining CDS Entities, Analytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>How many charts of depreciation are defined?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t096 t096 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChartOfDepreciationText _Text $projection.ChartOfDepreciation = _Text.ChartOfDepreciation

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICHARTOFDEPR view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
EndUserText.label Chart of Depreciation view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ChartOfDepreciation 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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChartOfDepreciation afapl Chart of Depreciaton for Asset Valuation
ChartOfDepreciationIsActive bplakt ID Chart of Depreciation Active
_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_ChartOfDepreciation.
-- 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_ChartOfDepreciation AS
SELECT
  afapl AS ChartOfDepreciation,
  bplakt AS ChartOfDepreciationIsActive
FROM t096
LEFT OUTER JOIN I_ChartOfDepreciationText AS _Text ON ChartOfDepreciation = _Text.ChartOfDepreciation  -- association [0..*]
;