RSUVM037 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 RSUVM037 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: Report RSUVM037
INCLUDE RSUVMCONST.
INCLUDE RSUVMIN3.
No SAP DATABASE tables are accessed within this REPORT code!
TUJOB_START_MEAS_JOB CALL FUNCTION 'TUJOB_START_MEAS_JOB' EXPORTING applic = applic EXCEPTIONS not_planned = 1 db_error = 2 OTHERS = 3.
FUNCTION_IMPORT_INTERFACE CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE' EXPORTING funcname = fuba TABLES exception_list = exception_list export_parameter = export_param import_parameter = import_param tables_parameter = tables_param.
TUJOB_ABORT_MEAS_JOB CALL FUNCTION 'TUJOB_ABORT_MEAS_JOB' EXPORTING applic = applic EXCEPTIONS OTHERS = 0.
TUJOB_END_MEAS_JOB CALL FUNCTION 'TUJOB_END_MEAS_JOB' EXPORTING applic = applic EXCEPTIONS not_started = 1 db_error = 2 OTHERS = 3.
FUNCTION_IMPORT_INTERFACE * CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE' * EXPORTING * funcname = fuba * TABLES * exception_list = exception_list * export_parameter = export_param * import_parameter = import_param * tables_parameter = tables_param * CHANGING_PARAMETER = change_param.
TUJOB_ABORT_MEAS_JOB ** CALL FUNCTION 'TUJOB_ABORT_MEAS_JOB' ** EXPORTING ** applic = applic ** EXCEPTIONS ** OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.