RSVRSREM is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report lets you select a REMOTE destination from the list of defined RFC destinations for SAP systems (table RFCDES)...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSVRSREM 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: Interface for REMOTE Comparison
Text Symbol: L11 = Note: The original system of the object is the system
INCLUDE RSVCEUDB.
No SAP DATABASE tables are accessed within this REPORT code!
SVRS_CHECK_READ_PERMISSION CALL FUNCTION 'SVRS_CHECK_READ_PERMISSION' EXPORTING OBJTYPE = OBJTYPE OBJNAME = OBJNAME EXCEPTIONS NO_READ_PERMISSION = 1 OTHERS = 2.
SVRS_DISPLAY_REMOTE_DIR CALL FUNCTION 'SVRS_DISPLAY_REMOTE_DIR' EXPORTING DESTINATION = DESTINATION OBJECT_NAME = OBJNAME OBJECT_TYPE = OBJTYPE IMPORTING INFO_LINE_1 = REMOTE_INFO_LINE INFO_LINE_1_A = REMOTE_INFO_LINE_A INFO_LINE_1_B = REMOTE_INFO_LINE_B VERSNO_1 = REMOTE_VERSNO OBJNAME_1 = REMOTE_OBJNAME OBJTYPE_1 = REMOTE_OBJTYPE REMOTE_SYSTEM = REMOTE_SYSTEM EXCEPTIONS NO_DIRECTORY = 01 NO_SELECTION = 02.
SVRS_DISPLAY_REMOTE_DIR CALL FUNCTION 'SVRS_DISPLAY_REMOTE_DIR' EXPORTING DESTINATION = DESTINATION OBJECT_NAME = OBJNAME OBJECT_TYPE = OBJTYPE IMPORTING INFO_LINE_1 = REMOTE_INFO_LINE INFO_LINE_1_A = REMOTE_INFO_LINE_A INFO_LINE_1_B = REMOTE_INFO_LINE_B VERSNO_1 = REMOTE_VERSNO OBJNAME_1 = REMOTE_OBJNAME OBJTYPE_1 = REMOTE_OBJTYPE REMOTE_SYSTEM = REMOTE_SYSTEM EXCEPTIONS NO_DIRECTORY = 01 NO_SELECTION = 02.
SVRS_DISPLAY_REMOTE_DIR CALL FUNCTION 'SVRS_DISPLAY_REMOTE_DIR' EXPORTING DESTINATION = DESTINATION OBJECT_NAME = OBJNAME OBJECT_TYPE = OBJTYPE IMPORTING INFO_LINE_1 = REMOTE_INFO_LINE INFO_LINE_1_A = REMOTE_INFO_LINE_A INFO_LINE_1_B = REMOTE_INFO_LINE_B VERSNO_1 = REMOTE_VERSNO REMOTE_SYSTEM = REMOTE_SYSTEM EXCEPTIONS NO_DIRECTORY = 01 NO_SELECTION = 02.
SVRS_GET_RFC_DESTINATION CALL FUNCTION 'SVRS_GET_RFC_DESTINATION' EXPORTING P_TEXT = DEST_NOTE IMPORTING REMOTE_DEST = PO_DESTINATION EXCEPTIONS NO_DESTINATION = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.