RPUBOWBF 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 RPUBOWBF 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 RPUBOWBF
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = callback i_structure_name = 'T5BX4' is_layout = layout it_fieldcat = field_cat it_events = event is_print = print IMPORTING es_exit_caused_by_user = exit_by_user TABLES t_outtab = it_t5bx4 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_99S_DISPLAY_ERRORS CALL FUNCTION 'HR_99S_DISPLAY_ERRORS' tables P_tab_error = p_tab_error.
HR_99S_DISPLAY_ALV CALL FUNCTION 'HR_99S_DISPLAY_ALV' "#EC * EXPORTING p_tab_fieldcat = tab_fieldcat p_strucname = l_structure_name p_report = myrepid * p_pf_status = 'SET_PF_STATUS' p_user_command = 'CALLBACK' TABLES p_tab_alv = lt_error_t5bx4 p_tab_error = g_tab_error EXCEPTIONS error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.