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

P_FxdAstDeprValInCurPeriod

DDL: P_FXDASTDEPRVALINCURPERIOD SQL: PFASSETDPVLCP Type: view COMPOSITE

P_FxdAstDeprValInCurPeriod is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_FixedAssetValueCube) and exposes 14 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, AssetDepreciationArea, Ledger.

Data Sources (1)

SourceAliasJoin Type
I_FixedAssetValueCube I_FixedAssetValueCube from

Parameters (3)

NameTypeDefault
P_CurrencyRole fis_curtp
P_FiscalYear fis_gjahr
P_FiscalPeriod fis_poper

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PFASSETDPVLCP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view
VDM.lifecycle.status #DEPRECATED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY MasterFixedAsset MasterFixedAsset Fixed Asset
KEY FixedAsset FixedAsset Sub-number
KEY AssetDepreciationArea AssetDepreciationArea Deprec. Area
KEY Ledger Ledger Ledger
FiscalYearVariant FiscalYearVariant FY Variant
ChartOfDepreciation ChartOfDepreciation
AssetClass AssetClass Asset Class
AssetDeactivationDate AssetDeactivationDate
AssetCapitalizationDate AssetCapitalizationDate Asset Capitalization
DisplayCurrency DisplayCurrency Display Currency
TotalPlannedDepreciationAmount
_FixedAsset _FixedAsset
_DepreciationArea _DepreciationArea

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 P_FxdAstDeprValInCurPeriod.
-- 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: PFASSETDPVLCP
-- Parameters: P_CurrencyRole : fis_curtp, P_FiscalYear : fis_gjahr, P_FiscalPeriod : fis_poper

CREATE VIEW P_FxdAstDeprValInCurPeriod AS
SELECT
  CompanyCode,
  MasterFixedAsset,
  FixedAsset,
  AssetDepreciationArea,
  Ledger,
  FiscalYearVariant,
  ChartOfDepreciation,
  AssetClass,
  AssetDeactivationDate,
  AssetCapitalizationDate,
  DisplayCurrency,
  sum(AmountInDisplayCurrency) AS TotalPlannedDepreciationAmount
FROM I_FixedAssetValueCube
;