IFFSSIW_MON_FORMS 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 IFFSSIW_MON_FORMS 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 IFFSSIW_MON_FORMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAL_DSP_TXT_MSG_READ CALL FUNCTION 'BAL_DSP_TXT_MSG_READ' EXPORTING i_msgid = ls_log_line-msgid i_msgno = ls_log_line-msgno i_msgv1 = ls_log_line-msgv1 i_msgv2 = ls_log_line-msgv2 i_msgv3 = ls_log_line-msgv3 i_msgv4 = ls_log_line-msgv4 IMPORTING e_message_text = lv_msg_txt.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'SIW_MONITOR' i_callback_user_command = 'CALLBACK_USER_COMMAND' i_callback_pf_status_set = 'CALLBACK_SET_PF_STATUS' "i_structure_name = 'SFLIGHT' " XWU added back is_layout = l_str_layout it_fieldcat = l_tab_fieldcat i_grid_title = l_grid_title i_save = 'A' "Standard and user saving * is_variant = l_variant it_except_qinfo = lt_qinfo TABLES t_outtab = g_tab_list EXCEPTIONS program_error = 1 OTHERS = 2.
POPUP_TO_CONFIRM * CALL FUNCTION 'POPUP_TO_CONFIRM' * EXPORTING * titlebar = text-pt4 ** DIAGNOSE_OBJECT = ' ' * text_question = text-pt5 ** text_button_1 = text-p03 ** icon_button_1 = 'ICON_SAVE' ** TEXT_BUTTON_2 = 'Nein'(002) ** ICON_BUTTON_2 ** = = ** ' ' = ** DEFAULT_BUTTON = '1' * display_cancel_button = 'X' ** USERDEFINED_F1_HELP = ' ' ** START_COLUMN = 25 ** START_ROW = 6 ** POPUP_TYPE = * iv_quickinfo_button_1 = ' ' ** IV_QUICKINFO_BUTTON_2 = ' ' * IMPORTING * answer = l_rc.
FS_SIW_EFG_SELECTION_LIST_ALV * CALL FUNCTION 'FS_SIW_EFG_SELECTION_LIST_ALV' * EXPORTING * i_str_header = l_header * i_str_layout = l_layout * i_selmode = 'M' * CHANGING * c_tab_sellist = l_tab_sellist * EXCEPTIONS * cancelled = 2.
POPUP_TO_CONFIRM * CALL FUNCTION 'POPUP_TO_CONFIRM' * EXPORTING * titlebar = text-pt3 * text_question = text-pt3 * display_cancel_button = 'X' * iv_quickinfo_button_1 = ' ' * IMPORTING * answer = l_rc.
POPUP_GET_VALUES * CALL FUNCTION 'POPUP_GET_VALUES' * EXPORTING * popup_title = text-pt2 * IMPORTING * returncode = l_rc * TABLES * fields = l_tab_fields.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.