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

P_FixedAssetTransactionAging

DDL: P_FIXEDASSETTRANSACTIONAGING SQL: PFASSETTRNAG Type: view COMPOSITE

P_FixedAssetTransactionAging is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_FixedAssetTransaction) and exposes 25 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, FiscalYear, FiscalPeriod.

Data Sources (1)

SourceAliasJoin Type
I_FixedAssetTransaction I_FixedAssetTransaction from

Parameters (3)

NameTypeDefault
P_KeyDate fagl_keydate
P_AssetAccountingKeyFigureSet faa_key_figure_set
P_AssetAccountingKeyFigureSet2 faa_key_figure_set

Annotations (7)

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

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY MasterFixedAsset MasterFixedAsset Fixed Asset
KEY FixedAsset FixedAsset Sub-number
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY FiscalPeriod FiscalPeriod Tax period
KEY AssetDepreciationArea AssetDepreciationArea Deprec. Area
KEY Ledger Ledger Ledger
KEY AccountingDocument AccountingDocument Journal Entry
KEY TransactionSubitem TransactionSubitem Sub Transaction
KEY DebitCreditCode DebitCreditCode Single-Character Flag
KEY CurrencyRole CurrencyRole Curr./Val. Type
KEY SubLedgerAcctLineItemType SubLedgerAcctLineItemType SLALineItemType
PostingDate PostingDate Posting Date for GR
ChartOfDepreciation ChartOfDepreciation
CompanyCodeName CompanyCodeName Company Name
AssetCostCenter AssetCostCenter
AssetClass AssetClass Asset Class
AssetPlant AssetPlant
BusinessArea AssetBusinessArea
Segment Segment Segment number
AssetProfitCenter AssetProfitCenter
AssetAccountingKeyFigureSet
SelectedCurrencyBranch SelectedCurrencyBranch
_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_FixedAssetTransactionAging.
-- 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: PFASSETTRNAG
-- Parameters: P_KeyDate : fagl_keydate, P_AssetAccountingKeyFigureSet : faa_key_figure_set, P_AssetAccountingKeyFigureSet2 : faa_key_figure_set

CREATE VIEW P_FixedAssetTransactionAging AS
SELECT
  CompanyCode,
  MasterFixedAsset,
  FixedAsset,
  FiscalYear,
  FiscalPeriod,
  AssetDepreciationArea,
  Ledger,
  AccountingDocument,
  TransactionSubitem,
  DebitCreditCode,
  CurrencyRole,
  SubLedgerAcctLineItemType,
  PostingDate,
  ChartOfDepreciation,
  CompanyCodeName,
  AssetCostCenter,
  AssetClass,
  AssetPlant,
  AssetBusinessArea AS BusinessArea,
  Segment,
  AssetProfitCenter,
  :P_AssetAccountingKeyFigureSet2 AS AssetAccountingKeyFigureSet,
  SelectedCurrencyBranch
FROM I_FixedAssetTransaction
;