I_AddlOwnrReplicationStatus

DDL: I_ADDLOWNRREPLICATIONSTATUS Type: view_entity BASIC

Replication status of messages

I_AddlOwnrReplicationStatus is a Basic CDS View that provides data about "Replication status of messages" in SAP S/4HANA. It reads from 2 data sources (mdg_bus_sys_tech, drfd_obj_rep_sta) and exposes 8 fields with key fields DRFReplicationStatusUUID, MDChgProcessSrceObjectTypeCode, MasterDataChangeProcess, MDChgProcessStep, MDChgProcessFederationDRFKey.

Data Sources (2)

SourceAliasJoin Type
mdg_bus_sys_tech bus_sys inner
drfd_obj_rep_sta drfd_obj_rep_sta from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Replication status of messages view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY DRFReplicationStatusUUID drfd_obj_rep_sta rep_sta_id
KEY MDChgProcessSrceObjectTypeCode drfd_obj_rep_sta business_object
KEY MasterDataChangeProcess
KEY MDChgProcessStep
KEY MDChgProcessFederationDRFKey
KEY BusinessSystemName mdg_bus_sys_tech business_system
KEY DataReplicationFrameworkRun drfd_obj_rep_sta run_id
DRFReplicationStatus drfd_obj_rep_sta repstatus
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Replication status of messages'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #XXL,
  dataClass: #MIXED
}
@VDM.viewType: #BASIC
define view entity I_AddlOwnrReplicationStatus
  as select from drfd_obj_rep_sta
    inner join   mdg_bus_sys_tech as bus_sys on bus_sys.bus_sys_id = drfd_obj_rep_sta.bus_sys_id

{
  key drfd_obj_rep_sta.rep_sta_id                                                 as DRFReplicationStatusUUID,
  key drfd_obj_rep_sta.business_object                                            as MDChgProcessSrceObjectTypeCode,
  key cast( substring(drfd_obj_rep_sta.object_id, 1, 12) as mdc_process_id )      as MasterDataChangeProcess,
  key cast( substring(drfd_obj_rep_sta.object_id, 13, 4) as mdc_process_step_no ) as MDChgProcessStep,
  key cast( substring(drfd_obj_rep_sta.object_id, 17, 32) as mdc_fed_drf_key )    as MDChgProcessFederationDRFKey,
  key bus_sys.business_system                                                     as BusinessSystemName,
  key drfd_obj_rep_sta.run_id                                                     as DataReplicationFrameworkRun,
      drfd_obj_rep_sta.repstatus                                                  as DRFReplicationStatus
}
where
  drfd_obj_rep_sta.business_object = 'FED_147'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DRFD_OBJ_REP_STA",
"MDG_BUS_SYS_TECH"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/