RFBELSPL_SUMMARY 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 RFBELSPL_SUMMARY 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: Include RFBELSPL_SUMMARY
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_HIERSEQ_LIST_DISPLAY * CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' * EXPORTING * i_callback_program = sy-repid * is_layout = ls_layout * it_fieldcat = lt_fieldcat_all ** it_sort = lt_sort_acc * is_variant = gs_variant * i_save = 'A' * it_events = lt_eventtab * i_tabname_header = 'HEAD' * i_tabname_item = 'GT_JOURNAL_ITEM' * is_keyinfo = ls_key * is_print = gs_print * TABLES * t_outtab_header = gt_doc_head * t_outtab_item = gt_journal_item * EXCEPTIONS * program_error = 1 * OTHERS = 2.
REUSE_ALV_LIST_DISPLAY * CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' * EXPORTING * i_callback_program = sy-repid * it_fieldcat = it_fieldcat * it_events = it_events * TABLES * t_outtab = it_gl[] * EXCEPTIONS * program_error = 1 * OTHERS = 2.
REUSE_ALV_LIST_DISPLAY * CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' * EXPORTING * i_callback_program = sy-repid * it_fieldcat = it_fieldcat * TABLES * t_outtab = it_summ3[] * EXCEPTIONS * program_error = 1 * OTHERS = 2.
REUSE_ALV_BLOCK_LIST_INIT *CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT' * EXPORTING * i_callback_program = sy-repid ** I_CALLBACK_PF_STATUS_SET = ' ' ** I_CALLBACK_USER_COMMAND = ' ' ** IT_EXCLUDING = * .
REUSE_ALV_BLOCK_LIST_APPEND * CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND' * EXPORTING * is_layout = Ls_layout * it_fieldcat = it_fieldcat * i_tabname = 'IT_SUMM2' * it_events = IT_EVENTS ** IT_SORT = ** I_TEXT = ' ' * tables * t_outtab = IT_SUMM2 ** EXCEPTIONS ** PROGRAM_ERROR = 1 ** MAXIMUM_OF_APPENDS_REACHED = 2 ** OTHERS = 3 * .
REUSE_ALV_LIST_DISPLAY * CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' * EXPORTING * i_callback_program = sy-repid * it_fieldcat = it_fieldcat * TABLES * t_outtab = it_summ2[].
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TITLEBAR = ' ' text_question = text-n58 text_button_1 = text-n62 icon_button_1 = 'ICON_OKAY ' text_button_2 = text-n63 icon_button_2 = 'ICON_CANCEL ' IMPORTING answer = ans .
POPUP_TO_DISPLAY_TEXT CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT' EXPORTING textline1 = text-n61.
POPUP_TO_DISPLAY_TEXT CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT' EXPORTING textline1 = text-n60.
POPUP_TO_DISPLAY_TEXT CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT' EXPORTING textline1 = text-n61.
POPUP_TO_DISPLAY_TEXT CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT' EXPORTING textline1 = text-n62.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.