SAP Reports / Programs

RSRFCUPD SAP ABAP Report - Convert SM59 Entries with IP Changes







RSRFCUPD 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 RSRFCUPD 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 RSRFCUPD. "Basic submit
SUBMIT RSRFCUPD AND RETURN. "Return to original report after report execution complete
SUBMIT RSRFCUPD VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Convert SM59 Entries with IP Changes
Text Symbol: 000 = Hostname conversion to IP failed
Text Symbol: 001 = Destination
Text Symbol: 002 = Type
Text Symbol: 003 = deleted
Text Symbol: 004 = No destinations found
Text Symbol: 005 = Deletion Flag
Text Symbol: 009 = SM59 Administration
Text Symbol: 014 = Network Administration


INCLUDES used within this REPORT RSRFCUPD

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:

RFC_HOST_TO_IP CALL FUNCTION 'RFC_HOST_TO_IP' EXPORTING RFCHOST = HOST IMPORTING RFCIP = IP_NEW EXCEPTIONS HOST_TO_IP_CONVERSION_ERROR = 1 OTHERS = 2.

RFCDES2RFCDISPLAY CALL FUNCTION 'RFCDES2RFCDISPLAY' EXPORTING IMPORT_RFCDES = RFCDES_LOCAL IMPORTING EXPORT_RFCDISPLAY = RFCDISPLAY EXCEPTIONS * format_error = 1 OTHERS = 2.

RFC_PREPARE_DESTINATION CALL FUNCTION 'RFC_PREPARE_DESTINATION' EXPORTING DESTINATION = RFCDES_LOCAL-RFCDEST ACTION = 'D' AUTHORITY_CHECK = ' ' * DESTCOPY = ' ' * DESTLOCK = ' ' * DEQUEUE_SYNCHRON = ' ' EXCEPTIONS AUTHORITY_NOT_AVAILABLE = 1 DESTINATION_ALREADY_EXIST = 2 DESTINATION_NOT_EXIST = 3 DESTINATION_ENQUEUE_REJECT = 4 DESTINATION_IS_LOCKED = 5 INFORMATION_FAILURE = 6 INTERNAL_FAILURE = 7 OTHERS = 8.

RFCDISPLAY2RFCDES CALL FUNCTION 'RFCDISPLAY2RFCDES' EXPORTING RFCDIS_IMPORT = RFCDISPLAY IMPORTING RFCDES_EXPORT = RFCDES_CHANGE.

RFC_SET_DESTINATION_ATTRIBUTES CALL FUNCTION 'RFC_SET_DESTINATION_ATTRIBUTES' EXPORTING DESTINATION = RFCDES_CHANGE-RFCDEST.



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 RSRFCUPD or its description.