RPLBGND0_OUTPUT 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 RPLBGND0_OUTPUT 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!
HR_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'HR_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING data_structure = gc_list_item data_structure_header = gc_list_head current_report = gc_report * LIST_TITLE = * LIST_TITLE2 = * GUI_STATUS = ' ' variant = gs_variant-variant hr_display_error_list = gc_yes HR_DISPLAY_ERROR_NR = gc_yes "14 * HR_DISPLAY_STAT_LIST = ' ' * CALLBACK_USER_COMMAND = ' ' * CALLBACK_END_OF_LIST = ' ' * CALLBACK_BUTTON1 = ' ' * TEXT_BUTTON1 = ' ' * CALLBACK_BUTTON2 = ' ' * TEXT_BUTTON2 = ' ' * EXPAND_FIELDNAME = ' ' * SAPSCRIPT_FORM = * SAPSCRIPT_PRINTER = TABLES * data_tab_header = gt_evaluation_table_header "09 * data_tab = gt_evaluation_table "09 data_tab_header = _tab_header "09 data_tab = _evt "09
EXCEPTIONS OTHERS = 0 .
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_BUFFER_ACTIVE = * I_INTERFACE_CHECK = ' ' i_callback_program = gc_report i_structure_name = gc_list_item i_callback_pf_status_set = gc_set_pf_status "25b * I_BACKGROUND_ID = ' ' * I_GRID_TITLE = * I_GRID_SETTINGS = * IS_LAYOUT = * IT_FIELDCAT = * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' i_save = gc_isave_all is_variant = gs_variant it_events = gt_events * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES * t_outtab = gt_evaluation_table "09 t_outtab = _evt "09
EXCEPTIONS OTHERS = 0 .
HR_GET_ERROR_LIST call function 'HR_GET_ERROR_LIST' "25b EXCEPTIONS "25b NO_ERRORS = 1 "25b OTHERS = 2. "25b
HR_DISPLAY_ERROR_LIST call function 'HR_DISPLAY_ERROR_LIST' "25b EXPORTING "25b NO_POPUP = 'X' "25b NO_PRINT = ' '. "25b
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = $_events.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING * I_LOGO = 'ENJOYSAP_LOGO' it_list_commentary = gt_listheader.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_print = gc_yes no_msgno = gc_no listheader = text-e01.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_print = gc_yes no_msgno = gc_no listheader = text-e02.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-d01 default_button = '2' display_cancel_button = gc_no IMPORTING answer = _answer EXCEPTIONS OTHERS = 0.
HR_GET_ERROR_LIST call function 'HR_GET_ERROR_LIST' * EXPORTING * USE_ABAP_MEMORY = ' ' * TABLES * ERROR = * ERRORTEXTS = EXCEPTIONS NO_ERRORS = 1 OTHERS = 2.
HR_DISPLAY_ERROR_LIST call function 'HR_DISPLAY_ERROR_LIST' * EXPORTING * NO_POPUP = ' ' * NO_PRINT = 'X' .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.