RSWBO072 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 RSWBO072 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: Merge Object Lists (Display as List)
Text Symbol: 001 = Request
Text Symbol: 002 = Status
Text Symbol: 003 = Short Text
Text Symbol: 004 = Owner
Text Symbol: J01 = Merge Requests
Text Symbol: Q01 = Merge Requests
Text Symbol: Q02 = How should merge be performed?
Text Symbol: Q03 = Online
Text Symbol: Q04 = In Background
Text Symbol: T01 = Merge Requests
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING systemname = lv_system_name.
TRINT_SELECT_REQUESTS CALL FUNCTION 'TRINT_SELECT_REQUESTS' EXPORTING iv_username_pattern = ' ' is_selection = ls_selection iv_complete_projects = ' ' iv_via_selscreen = 'X' iv_title = lv_title IMPORTING et_requests = pt_requests EXCEPTIONS action_aborted_by_user = 1 OTHERS = 2.
TRINT_REQUEST_CHOICE CALL FUNCTION 'TRINT_REQUEST_CHOICE' EXPORTING iv_request_types = lv_types IMPORTING es_request = ls_target_request EXCEPTIONS OTHERS = 1.
TR_POPUP_TO_CONFIRM CALL FUNCTION 'TR_POPUP_TO_CONFIRM' EXPORTING iv_titlebar = text-q01 iv_text_question = text-q02 iv_text_button1 = 'Online '(q03) iv_icon_button1 = 'ICON_EXECUTE_OBJECT' iv_text_button2 = 'Im Hintergrund '(q04) iv_icon_button2 = 'ICON_EXECUTE_OBJECT' IMPORTING ev_answer = lv_answer.
ENQUEUE_E_TRKORR CALL FUNCTION 'ENQUEUE_E_TRKORR' EXPORTING trkorr = ls_target_request-trkorr EXCEPTIONS OTHERS = 1.
TRINT_MERGE_COMMS CALL FUNCTION 'TRINT_MERGE_COMMS' EXPORTING it_e070 = lt_e070 CHANGING cs_target_request = ls_target_request EXCEPTIONS OTHERS = 1.
DEQUEUE_E_TRKORR CALL FUNCTION 'DEQUEUE_E_TRKORR' EXPORTING trkorr = ls_target_request-trkorr.
DEQUEUE_E_TRKORR CALL FUNCTION 'DEQUEUE_E_TRKORR' EXPORTING trkorr = ls_target_request-trkorr.
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING no_dialog = 'X' immediately = ' ' IMPORTING out_parameters = ls_pri_params EXCEPTIONS OTHERS = 1.
JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING jobgroup = 'C' jobname = lv_jobname IMPORTING jobcount = lv_jobcount EXCEPTIONS cant_create_job = 01 invalid_job_data = 02 jobname_missing = 03.
JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING jobcount = lv_jobcount jobname = lv_jobname strtimmed = 'X' EXCEPTIONS cant_start_immediate = 1 invalid_startdate = 2 jobname_missing = 3 job_close_failed = 4 job_nosteps = 5 job_notex = 6 lock_failed = 7 OTHERS = 8.
TR_AUTHORITY_CHECK_DISPLAY CALL FUNCTION 'TR_AUTHORITY_CHECK_DISPLAY' EXCEPTIONS e_no_authority = 1.
TR_DISPLAY_REQUEST CALL FUNCTION 'TR_DISPLAY_REQUEST' EXPORTING i_trkorr = gs_output-trkorr.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.