RSRDEBUG 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 RSRDEBUG into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SRDEBUG - Activate Remote Debugging
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: Remote ABAP Debugging
Text Symbol: E01 = Mark at least one entry
Text Symbol: 041 = Deactivate Debugging for user
Text Symbol: 031 = Deactivate Debugging
Text Symbol: 027 = IP Address
Text Symbol: 026 = Timeout
Text Symbol: 025 = Date
Text Symbol: 024 = SAPGUI Host
Text Symbol: 023 = Developer
Text Symbol: 022 = Application Server
Text Symbol: 021 = User
Text Symbol: 012 = Unknown error
Text Symbol: 011 = Internal Error
Text Symbol: 010 = Update External Debugging failed
Text Symbol: 009 = Set External Breakpoint failed
Text Symbol: 008 = Invalid LOGON Group
Text Symbol: 006 = Invalid Method Name
Text Symbol: 005 = Invalid Class Name
Text Symbol: 004 = Invalid Function Module Name
Text Symbol: 003 = No breakpoint set
Text Symbol: 002 = Invalid User-ID
Text Symbol: 001 = Attach SAPGUI not available
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Deactivate Debugging'(031) text_question = l_question IMPORTING answer = l_answer.
SRDEBUG_START CALL FUNCTION 'SRDEBUG_START' EXCEPTIONS attach_sapgui_failed = 1 invalid_userid = 2 no_breakpoint_set = 3 function_not_found = 4 class_not_found = 5 method_not_found = 6 invalid_logon_group = 7 cannot_set_breakpoint = 8 cannot_update_http_debug = 9 internal_error = 10 OTHERS = 11.
SRDEBUG_DEACTIVATE CALL FUNCTION 'SRDEBUG_DEACTIVATE' DESTINATION p_dest EXPORTING dbg_user = p_user gui_ipaddr = '*' EXCEPTIONS system_failure = 1 MESSAGE rfcmess communication_failure = 2 MESSAGE rfcmess cannot_update_http_debug = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.