RSRFCIDEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report to delete inactive internal RFC connections...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 RSRFCIDEL 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.
List of Inactive Internal RFC Destinations
Selection Text: DELETE = Delete Destinations
Selection Text: SIMULATE = Display Destinations
Title: Display/Delete Inactive Internal RFC Destinations
Text Symbol: 009 = SM59 Administration
Text Symbol: 014 = Network Administration
Text Symbol: 015 = No internal destinations found
Text Symbol: 016 = Number of Inactive Internal RFC Destinations:
Text Symbol: 017 = Number of Deleted Internal RFC Destinations:
Text Symbol: 018 = No inactive RFC destinations exist
Text Symbol: 019 = RFC destination deleted
Text Symbol: 020 = RFC destination can be deleted
Text Symbol: 022 = Destination
Text Symbol: 023 = Status
Text Symbol: 024 = Error
001 Inactive Internal RFC Destinations Action
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'IDEL' * P_PROGRAM = ' ' TABLES p_exclude = excl_itab.
RFC_PREPARE_DESTINATION CALL FUNCTION 'RFC_PREPARE_DESTINATION' EXPORTING destination = l_wa_rfcdes-rfcdest action = 'D' "Delete ! * AUTHORITY_CHECK = 'X' * DESTCOPY = ' ' * DESTLOOCK = ' '
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.
TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' TABLES list = serverlist EXCEPTIONS no_server_list = 1.
RFC_SYSTEM_INFO CALL FUNCTION 'RFC_SYSTEM_INFO' IMPORTING rfcsi_export = l_rfcsi.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSRFCIDEL - Display/Delete Inactive Internal RFC Destinations RSRFCIDEL - Display/Delete Inactive Internal RFC Destinations RSRFCFUN - Display Remote-Callable Function Modules RSRFCFUN - Display Remote-Callable Function Modules RSRFCDOC - Function Modules Available in External Program RSRFCDOC - Function Modules Available in External Program