P_ASSETBALANCESHEETACCOUNT

CDS View

P_ASSETBALANCESHEETACCOUNT is a CDS View in S/4HANA. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_AssetBalanceSheetAccount view from BASIC Asset Balance Sheet Account
@AbapCatalog: { sqlViewName: 'PFIASSETBALACCT', preserveKey: true, compiler.compareFilter: true }
@VDM.viewType: #BASIC
@VDM.private:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

define view P_AssetBalanceSheetAccount
  as select from t001
    inner join   t095                                                            on t095.ktopl = t001.ktopl
    inner join   P_TF_AssetRedesignSwitchStatus( P_SAPClient : $session.client ) on P_TF_AssetRedesignSwitchStatus.IsActive = ''
{
  key t001.bukrs  as CompanyCode,
  key t095.ktogr  as AssetAccountDetermination,
  key t095.afabe  as AssetRealDepreciationArea,

      t095.ktopl  as ChartOfAccounts,
      t095.ktansw as AcqnProdnCostGLAccount
}

union all select from P_TF_AssetBalanceSheetAccount( P_SAPClient : $session.client )
  inner join          P_TF_AssetRedesignSwitchStatus( P_SAPClient : $session.client ) on P_TF_AssetRedesignSwitchStatus.IsActive = 'X'
{
  key CompanyCode,
  key AssetAccountDetermination,
  key AssetRealDepreciationArea,

      ChartOfAccounts,
      AcqnProdnCostGLAccount
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T001",
"T095"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/