ED_MONORD_ALV_FUNC 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 ED_MONORD_ALV_FUNC 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_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' I_CALLBACK_PROGRAM = G_F_REPID I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS' I_CALLBACK_USER_COMMAND = 'USER_COMMAND' IS_LAYOUT = G_R_LAYOUT IT_FIELDCAT = G_T_FIELDCAT[] * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = LT_FILTER * IS_SEL_HIDE = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * I_DEFAULT = g_default I_SAVE = G_F_SAVE IS_VARIANT = G_F_VARIANT IT_EVENTS = G_T_EVENTS[] * IT_EVENT_EXIT = I_TABNAME_HEADER = 'G_T_HEADER' I_TABNAME_ITEM = 'G_T_INFO' * I_STRUCTURE_NAME_HEADER = * I_STRUCTURE_NAME_ITEM = IS_KEYINFO = G_R_KEYINFO * IS_PRINT = * IS_REPREP_ID = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES T_OUTTAB_HEADER = G_T_HEADER T_OUTTAB_ITEM = G_T_INFO EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
REUSE_ALV_LIST_LAYOUT_INFO_GET CALL FUNCTION 'REUSE_ALV_LIST_LAYOUT_INFO_GET' IMPORTING ES_LAYOUT = G_R_LAYOUT ET_FIELDCAT = G_T_FIELDCAT[] * ET_SORT = T_SLIS_SORT * ET_FILTER = * ES_LIST_SCROLL = ES_VARIANT = G_F_VARIANT * E_WIDTH = * ET_MARKED_COLUMNS = * ET_FILTERED_ENTRIES = * ET_FILTERED_ENTRIES_HEADER = * ET_FILTERED_ENTRIES_ITEM = TABLES * ET_OUTTAB = ET_OUTTAB_HEADER = G_T_HEADER ET_OUTTAB_ITEM = G_T_INFO * ET_COLLECT00 = * ET_COLLECT01 = * ET_COLLECT02 = * ET_COLLECT03 = * ET_COLLECT04 = * ET_COLLECT05 = * ET_COLLECT06 = * ET_COLLECT07 = * ET_COLLECT08 = * ET_COLLECT09 = EXCEPTIONS NO_INFOS = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_LIST_LAYOUT_INFO_SET CALL FUNCTION 'REUSE_ALV_LIST_LAYOUT_INFO_SET' EXPORTING IS_LAYOUT = G_R_LAYOUT IT_FIELDCAT = G_T_FIELDCAT[].
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.