RSSHOALV 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 RSSHOALV 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!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'MYSDBAHALV' i_client_never_display = 'X' CHANGING ct_fieldcat = g_brlist_log_fc_cat.
SHOW_RESULTS_BRBACKUP CALL FUNCTION 'SHOW_RESULTS_BRBACKUP' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRARCHIVE CALL FUNCTION 'SHOW_RESULTS_BRARCHIVE' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRCONNECT CALL FUNCTION 'SHOW_RESULTS_BRCONNECT' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRSPACE CALL FUNCTION 'SHOW_RESULTS_BRSPACE' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRRECOVER CALL FUNCTION 'SHOW_RESULTS_BRRECOVER' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRBACKUP CALL FUNCTION 'SHOW_RESULTS_BRBACKUP' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc sysid = ssyst-sysid dbhost = ssyst-dbhost EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRARCHIVE CALL FUNCTION 'SHOW_RESULTS_BRARCHIVE' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc sysid = ssyst-sysid dbhost = ssyst-dbhost EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRCONNECT CALL FUNCTION 'SHOW_RESULTS_BRCONNECT' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc sysid = ssyst-sysid dbhost = ssyst-dbhost EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRSPACE CALL FUNCTION 'SHOW_RESULTS_BRSPACE' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc sysid = ssyst-sysid dbhost = ssyst-dbhost EXCEPTIONS OTHERS = 0.
SHOW_RESULTS_BRRECOVER CALL FUNCTION 'SHOW_RESULTS_BRRECOVER' EXPORTING actid = g_listlogalv_ora_wa-actid beg = g_listlogalv_ora_wa-beg function = g_listlogalv_ora_wa-funct rc = g_listlogalv_ora_wa-rc sysid = ssyst-sysid dbhost = ssyst-dbhost EXCEPTIONS OTHERS = 0.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'FIDALV' i_client_never_display = 'X' CHANGING ct_fieldcat = g_brlist_log_fc_cat.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_background_id = 'ALV_BACKGROUND' i_buffer_active = 'X' i_callback_user_command = g_user_command i_callback_pf_status_set = g_status_set i_callback_program = g_repid it_fieldcat = g_brlist_log_fc_cat is_layout = gs_layout i_save = g_save * is_variant = gs_variant * it_events = gt_events[] IMPORTING e_exit_caused_by_caller = g_exit_caused_by_caller es_exit_caused_by_user = gs_exit_caused_by_user TABLES t_outtab = p_outtab EXCEPTIONS program_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.