RM06ENDR_ALV_GRID 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 RM06ENDR_ALV_GRID 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_internal_tabname = g_tabname_grid i_structure_name = 'NAST' i_client_never_display = 'X' CHANGING ct_fieldcat = l_fieldcat EXCEPTIONS OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_checked info = text-010 IMPORTING RESULT = gf_icon_checked EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_incomplete info = text-011 IMPORTING RESULT = gf_icon_incomplete EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = 'STATUS' i_callback_user_command = 'USER_COMMAND' is_layout = g_layout it_fieldcat = g_fieldcat[] i_save = 'A' is_variant = g_variant IMPORTING es_exit_caused_by_user = i_slis_exit_by_user TABLES t_outtab = gt_outtab_grid EXCEPTIONS OTHERS = 0.
RV_MESSAGES_UPDATE CALL FUNCTION 'RV_MESSAGES_UPDATE' EXPORTING msg_no_update_task = '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.