SR100F10 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 SR100F10 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: Subroutines for Report RSUSR100
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BALW_BAPIRETURN_GET2 CALL FUNCTION 'BALW_BAPIRETURN_GET2' EXPORTING type = gc_type_w cl = gc_cl_s_sharp number = '221' par1 = ld_msgv1 par4 = ld_msgv4 IMPORTING return = ls_return.
BALW_BAPIRETURN_GET2 CALL FUNCTION 'BALW_BAPIRETURN_GET2' EXPORTING type = gc_type_a cl = gc_cl_s_sharp number = '150' par1 = ld_msgv4 par4 = ld_msgv4 IMPORTING return = ls_return.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 100 text = 'Display is starting...'(032).
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'RSUSR100' i_callback_user_command = id_callback_user_command i_grid_title = gv_grid_title is_layout = gs_layout it_fieldcat = pt_fieldcat[] it_sort = gt_sort[] i_save = 'A' is_variant = gs_variant TABLES t_outtab = pt_output EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'USRCD' CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
PRGN_FUNCTION_EXIST CALL FUNCTION 'PRGN_FUNCTION_EXIST' EXPORTING name = 'SUSR_GET_LOG_EXIT_COMMAND' EXCEPTIONS function_not_found = 1 OTHERS = 2.
SUSR_GET_LOG_EXIT_COMMAND CALL FUNCTION 'SUSR_GET_LOG_EXIT_COMMAND' IMPORTING es_s_excm = gs_s_excm.
SUSR_READ_PROF_STD_TEXTS CALL FUNCTION 'SUSR_READ_PROF_STD_TEXTS' EXPORTING exist_check = space CHANGING profiles = lt_new.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = ld_tx.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.