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
KEY MasterFixedAsset MasterFixedAsset
KEY FixedAsset FixedAsset
KEY FiscalYear FiscalYear
KEY FiscalPeriod FiscalPeriod
KEY AssetDepreciationArea AssetDepreciationArea
KEY Ledger Ledger
KEY AccountingDocument AccountingDocument
KEY TransactionSubitem TransactionSubitem
KEY DebitCreditCode DebitCreditCode
KEY CurrencyRole CurrencyRole
KEY SubLedgerAcctLineItemType SubLedgerAcctLineItemType
PostingDate PostingDate
ChartOfDepreciation ChartOfDepreciation
CompanyCodeName CompanyCodeName
AssetCostCenter AssetCostCenter
AssetClass AssetClass
AssetPlant AssetPlant
BusinessArea AssetBusinessArea
Segment Segment
AssetProfitCenter AssetProfitCenter
AssetAccountingKeyFigureSet
SelectedCurrencyBranch SelectedCurrencyBranch
_FixedAsset _FixedAsset
_DepreciationArea _DepreciationArea
@AbapCatalog.sqlViewName: 'PFASSETTRNAG'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.status: #DEPRECATED
@VDM.private: true
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_FixedAssetTransactionAging
  with parameters
    P_KeyDate                      : fagl_keydate,
    P_AssetAccountingKeyFigureSet  : faa_key_figure_set,
    P_AssetAccountingKeyFigureSet2 : faa_key_figure_set
  as select from I_FixedAssetTransaction( P_KeyDate: :P_KeyDate,
                                          P_AssetAccountingKeyFigureSet: :P_AssetAccountingKeyFigureSet)
{
  key CompanyCode,
  key MasterFixedAsset,
  key FixedAsset,
  key FiscalYear,
  key FiscalPeriod,
  key AssetDepreciationArea,
  key Ledger,
  key AccountingDocument,
  key TransactionSubitem,
  key DebitCreditCode,
  key CurrencyRole,
  key SubLedgerAcctLineItemType,

      PostingDate,
      ChartOfDepreciation,

      CompanyCodeName,
      AssetCostCenter,

      AssetClass,

      AssetPlant,
      AssetBusinessArea               as BusinessArea,
      Segment,

      AssetProfitCenter,

      :P_AssetAccountingKeyFigureSet2 as AssetAccountingKeyFigureSet,

      SelectedCurrencyBranch,

      _FixedAsset,
      _DepreciationArea
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FIXEDASSETTRANSACTION"
],
"ASSOCIATED":
[
"I_DEPRECIATIONAREAFORLEDGER",
"I_FIXEDASSET"
],
"BASE":
[
"I_FIXEDASSETTRANSACTION"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/