FAA_SIL_DEPR

DDL: FAAV_SIL_CHECK_DEPR SQL: FAAV_SIL_DEPR Type: view

Intern: Abschreibungen verdichtet auf DEPR_PERIOD & SLALITTYPE-Ebene

FAA_SIL_DEPR is a CDS View that provides data about "Intern: Abschreibungen verdichtet auf DEPR_PERIOD & SLALITTYPE-Ebene" in SAP S/4HANA. It reads from 2 data sources (anla, faav_plan_values) and exposes 18 fields.

Data Sources (2)

SourceAliasJoin Type
anla a inner
faav_plan_values v from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_SIL_DEPR view
EndUserText.label Intern: Abschreibungen verdichtet auf DEPR_PERIOD & SLALITTYPE-Ebene view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view

Fields (18)

KeyFieldSource TableSource FieldDescription
mandt anla mandt Editing Client
bukrs anla bukrs Value
anlkl anla anlkl Asset Class
anln1 anla anln1 Asset
anln2 anla anln2 Sub-number
gjahr faav_plan_values gjahr Settlement Year
depr_period faav_plan_values depr_period Posting Period
afaber faav_plan_values afaber Deprec. Area
hsl
ksl
osl
vsl
bsl
csl
dsl
esl
fsl
gsl

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 FAA_SIL_DEPR.
-- 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: FAAV_SIL_DEPR

CREATE VIEW FAA_SIL_DEPR AS
SELECT
  a.mandt AS mandt,
  a.bukrs AS bukrs,
  a.anlkl AS anlkl,
  a.anln1 AS anln1,
  a.anln2 AS anln2,
  v.gjahr AS gjahr,
  v.depr_period AS depr_period,
  v.afaber AS afaber,
  sum ( v.hsl ) AS hsl,
  sum ( v.ksl ) AS ksl,
  sum ( v.osl ) AS osl,
  sum ( v.vsl ) AS vsl,
  sum ( v.bsl ) AS bsl,
  sum ( v.csl ) AS csl,
  sum ( v.dsl ) AS dsl,
  sum ( v.esl ) AS esl,
  sum ( v.fsl ) AS fsl,
  sum ( v.gsl ) AS gsl
FROM faav_plan_values AS v
INNER JOIN anla AS a ON /* join condition not captured in parsed metadata */
;