RFC_TT_UI_PAI is a standard ABAP INCLUDE 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 RFC_TT_UI_PAI 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RFC_MODIFY_TRUSTING_SYSTEM CALL FUNCTION 'RFC_MODIFY_TRUSTING_SYSTEM' DESTINATION wa_output-rfcdest EXPORTING action = 'M' rfctrust_id = wa_output-rfctrustsy rfctrust_sy = wa_output-rfcsysid * rfcdest_preentry = 'TRUSTING_SYSTEM@' IMPORTING rfcdest_entry = trusting_dest EXCEPTIONS destination_not_exist = 1 authority_not_available = 2 communication_failure = 3 MESSAGE msg system_failure = 4 MESSAGE msg.
RFC_SYSTEM_INFO CALL FUNCTION 'RFC_SYSTEM_INFO' IMPORTING rfcsi_export = rfcsi_import EXCEPTIONS OTHERS = 1.
SHOW_RFCLOCK CALL FUNCTION 'SHOW_RFCLOCK' EXPORTING rfclock_mode = 'X' EXCEPTIONS OTHERS = 0.
RFCDES_DISPLAY CALL FUNCTION 'RFCDES_DISPLAY' EXPORTING rfcdes_export = l_rfcdes IMPORTING * MODIFIED = rfcdes_import = m_rfcdes EXCEPTIONS OTHERS = 0.
RFCDES2RFCDISPLAY CALL FUNCTION 'RFCDES2RFCDISPLAY' EXPORTING import_rfcdes = l_rfcdes IMPORTING export_rfcdisplay = m_rfcdisplay EXCEPTIONS OTHERS = 0.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'SM59'(tra) text_question = 'Destination auf nicht änderbar setzen ?'(de0) text_button_1 = 'Ja'(001) icon_button_1 = ' ' text_button_2 = 'Nein'(002) icon_button_2 = ' ' default_button = '1' IMPORTING answer = antwort EXCEPTIONS text_not_found = 1 OTHERS = 2.
POPUP_TO_CONFIRM_STEP * CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' * EXPORTING * defaultoption = 'Y' * textline1 = space * textline2 = 'Destination auf nicht änderbar setzen ?'(de0) * titel = * IMPORTING * answer = antwort.
RFC_MODIFY_R3_DESTINATION CALL FUNCTION 'RFC_MODIFY_R3_DESTINATION' EXPORTING destination = wa_output-rfcdest action = 'L' destlock = 'X' dequeue_synchron = 'X' EXCEPTIONS authority_not_available = 1 destination_already_exist = 2 destination_not_exist = 3 destination_enqueue_reject = 4 information_failure = 5 trfc_entry_invalid = 6 internal_failure = 7 OTHERS = 8.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING dokclass = 'RE' doklangu = sy-langu dokname = sy-repid TABLES links = links EXCEPTIONS * OBJECT_NOT_FOUND = 1 * SAPSCRIPT_ERROR = 2 OTHERS = 3.
SHOW_RFCLOCK CALL FUNCTION 'SHOW_RFCLOCK' EXPORTING rfclock_mode = 'X' EXCEPTIONS OTHERS = 0.
RFCDES_DISPLAY CALL FUNCTION 'RFCDES_DISPLAY' EXPORTING rfcdes_export = l_rfcdes IMPORTING * MODIFIED = rfcdes_import = m_rfcdes EXCEPTIONS OTHERS = 0.
CHECK_TRUSING_DESTINATION CALL FUNCTION 'CHECK_TRUSING_DESTINATION' EXPORTING rfcdes_import = m_rfcdes rfctrust_import = l_rfctrust EXCEPTIONS invalid_destination_parameter = 1 OTHERS = 2.
RFCDES2RFCDISPLAY CALL FUNCTION 'RFCDES2RFCDISPLAY' EXPORTING import_rfcdes = l_rfcdes IMPORTING export_rfcdisplay = m_rfcdisplay EXCEPTIONS OTHERS = 0.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'SM59'(tra) text_question = 'Destination auf nicht änderbar setzen ?'(de0) text_button_1 = 'Ja'(001) icon_button_1 = ' ' text_button_2 = 'Nein'(002) icon_button_2 = ' ' default_button = '1' IMPORTING answer = antwort EXCEPTIONS text_not_found = 1 OTHERS = 2.
POPUP_TO_CONFIRM_STEP * CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' * EXPORTING * defaultoption = 'Y' * textline1 = space * textline2 = 'Destination auf nicht änderbar setzen ?'(de0) * titel = 'SM59'(tra) * IMPORTING * answer = antwort.
RFC_MODIFY_R3_DESTINATION CALL FUNCTION 'RFC_MODIFY_R3_DESTINATION' EXPORTING destination = l_rfctrust-rfcdest action = 'L' destlock = 'X' dequeue_synchron = 'X' EXCEPTIONS authority_not_available = 1 destination_already_exist = 2 destination_not_exist = 3 destination_enqueue_reject = 4 information_failure = 5 trfc_entry_invalid = 6 internal_failure = 7 OTHERS = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.