I_MDCHGPROCHISTLMODIFDOBJECTS

CDS View

MD Change Process Historical Modified Objects

I_MDCHGPROCHISTLMODIFDOBJECTS is a CDS View in S/4HANA. MD Change Process Historical Modified Objects. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MDChgProcModifdObjectsEnhcd view union COMPOSITE MD Change Process Modified Objects
@AbapCatalog.sqlViewName: 'IMDCHGHPROCMOBJS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: { dataClass: #TRANSACTIONAL, sizeCategory: #M, serviceQuality: #C }
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'MDChgProcessSrceObject'
@EndUserText.label: 'MD Change Process Historical Modified Objects'
define view I_MDChgProcHistlModifdObjects
  as select from mdc_modified_h
  association [1..1] to I_MasterDataChangeProcessEnhcd as _MasterDataChangeProcessEnhcd on  _MasterDataChangeProcessEnhcd.MasterDataChangeProcess = $projection.MasterDataChangeProcess
  association [1..1] to I_MDChgProcessStepEnhcd        as _MDChgProcessStepEnhcd        on  _MDChgProcessStepEnhcd.MasterDataChangeProcess = $projection.MasterDataChangeProcess
                                                                                        and _MDChgProcessStepEnhcd.MDChgProcessStep        = $projection.MDChgProcessStep
{
      //mdc_modified

  key process_id      as MasterDataChangeProcess,
  key process_step_no as MDChgProcessStep,
  key source_id       as MDChgProcessSrceObject,
  key source_system   as MDChgProcessSrceSystem,
  
  cast (1 as abap.int4 )               as  MDChgProcModifdObjectsCount,       

      // I_MDChgProcModifdSrceObjects

      _MasterDataChangeProcessEnhcd,
      _MDChgProcessStepEnhcd
}