P_AssetAcctDetermination

DDL: P_ASSETACCTDETERMINATION Type: view BASIC Package: FINS_FIS_AA_MD

Asset Account Determination

P_AssetAcctDetermination is a Basic CDS View that provides data about "Asset Account Determination" in SAP S/4HANA. It reads from 4 data sources (faac_acctdet0, P_TF_AssetRedesignSwitchStatus, P_TF_AssetRedesignSwitchStatus, t095a). Part of development package FINS_FIS_AA_MD.

Data Sources (4)

SourceAliasJoin Type
faac_acctdet0 faac_acctdet0 union_all
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
P_TF_AssetRedesignSwitchStatus P_TF_AssetRedesignSwitchStatus inner
t095a t095a from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PFIASSETACCTDET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
@AbapCatalog: { sqlViewName: 'PFIASSETACCTDET', 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_AssetAcctDetermination
  as select from t095a
    inner join   P_TF_AssetRedesignSwitchStatus( P_SAPClient : $session.client ) on P_TF_AssetRedesignSwitchStatus.IsActive = ''
{
  key ktogr as AssetAccountDetermination
}

union all select from faac_acctdet0
  inner join          P_TF_AssetRedesignSwitchStatus( P_SAPClient : $session.client ) on P_TF_AssetRedesignSwitchStatus.IsActive = 'X'
{
  key gl_account_det as AssetAccountDetermination
}