SAP Reports / Programs

RFBKUPTSYNC SAP ABAP Report - UPT Synchronization Report







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFBKUPTSYNC. "Basic submit
SUBMIT RFBKUPTSYNC AND RETURN. "Return to original report after report execution complete
SUBMIT RFBKUPTSYNC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: UPT Synchronization Report


INCLUDES used within this REPORT RFBKUPTSYNC

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFBKUPTSYNC or its description.