RFC_TT_UI_CLASSIMPL 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_CLASSIMPL 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.
INCLUDE RFC_TT_UI_TREE_IMPL.
INCLUDE RFC_TT_UI_CLIENT_TREE_IMPL.
INCLUDE RFC_TT_UI_UTILITY_IMPL.
No SAP DATABASE tables are accessed within this REPORT code!
WZ_SWF_STTREL_TRUSTING_START CALL FUNCTION 'WZ_SWF_STTREL_TRUSTING_START' EXCEPTIONS cancelled_by_user = 1 error = 2 OTHERS = 3.
POPUP_TO_CONFIRM * CALL FUNCTION 'POPUP_TO_CONFIRM' * EXPORTING * defaultoption = 'Y' * textline1 = * 'Löschen kann zu inkonsistenten Beziehung führen.'(tr1)
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = titel * diagnose_object = diagnose text_question = text_frage default_button = '1' display_cancel_button = space popup_type = 'ICON_MESSAGE_INFORMATION' importing answer = answer exceptions others = 1.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = titel * diagnose_object = diagnose text_question = text_frage default_button = '1' display_cancel_button = space popup_type = 'ICON_MESSAGE_INFORMATION' IMPORTING answer = answer EXCEPTIONS OTHERS = 1.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = percent text = text_str.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = percent text = text_str.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.