RFBKUPTSYNC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RFBKUPTSYNC into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: UPT Synchronization Report
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_EBKKMDISPJOBS CALL FUNCTION 'ENQUEUE_EBKKMDISPJOBS' EXPORTING mode_bkkmdispjobs = 'X' _wait = 'X' _scope = '3' dispid = l_dispid EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
BKK_PA_DISP_DB_SET_JOBSTATUS CALL FUNCTION 'BKK_PA_DISP_DB_SET_JOBSTATUS' EXPORTING i_dispid = l_dispid i_tab_jobstatus = l_tab_jobstat EXCEPTIONS OTHERS = 1.
BKK_PA_DISP_DB_GET_JOBDATA CALL FUNCTION 'BKK_PA_DISP_DB_GET_JOBDATA' EXPORTING i_dispid = l_dispid IMPORTING e_tab_jobstat = l_tab_jobstat.
BKK_PA_DISP_DB_DEL_JOBS CALL FUNCTION 'BKK_PA_DISP_DB_DEL_JOBS' EXPORTING i_dispid = l_dispid.
BKK_PA_DISP_DB_GET_TASKSTATUS CALL FUNCTION 'BKK_PA_DISP_DB_GET_TASKSTATUS' EXPORTING i_dispid = l_dispid IMPORTING e_taskstatus = l_status e_taskstatus_sim = l_status_sim.
BKK_PA_DISP_DB_SET_TASKSTATUS CALL FUNCTION 'BKK_PA_DISP_DB_SET_TASKSTATUS' EXPORTING i_dispid = l_dispid i_taskstatus = l_status_new i_xsimulation = l_xsimulation i_xuptsync = l_xuptsync EXCEPTIONS others = 1.
DEQUEUE_EBKKMDISPJOBS CALL FUNCTION 'DEQUEUE_EBKKMDISPJOBS' EXPORTING mode_bkkmdispjobs = 'X' _synchron = 'X' dispid = l_dispid.
GET_JOB_RUNTIME_INFO CALL FUNCTION 'GET_JOB_RUNTIME_INFO' IMPORTING jobcount = l_s_curr-jobcount jobname = l_s_curr-jobname.
BP_JOB_GET_PREDECESSORS CALL FUNCTION 'BP_JOB_GET_PREDECESSORS' EXPORTING jobcount = l_s_curr-jobcount jobname = l_s_curr-jobname TABLES pred_joblist = l_tab_pred.
BP_JOB_READ CALL FUNCTION 'BP_JOB_READ' EXPORTING job_read_jobcount = c_s_pred-jobcount job_read_jobname = c_s_pred-jobname job_read_opcode = btc_read_jobhead_only IMPORTING job_read_jobhead = l_s_jobhead.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.