IRFFM_FC_SET_DUPLICATES_F01 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 IRFFM_FC_SET_DUPLICATES_F01 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 IRFFM_FC_SET_DUPLICATES_F01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_VARIANT_CONTENTS CALL FUNCTION 'RS_VARIANT_CONTENTS' EXPORTING report = 'RFFM_CREATE_FC_SET_DUPLICATES' variant = l_variant TABLES valutab = l_t_valutab.
FM_SET_FM_AREA CALL FUNCTION 'FM_SET_FM_AREA' EXPORTING i_flg_process_popup = u_flg_popup IMPORTING e_fikrs = c_fm_area EXCEPTIONS no_fikrs_selected = 1.
G_TABLE_FIELD_GET_SETCLASS CALL FUNCTION 'G_TABLE_FIELD_GET_SETCLASS' EXPORTING tabname = 'FMIT' fieldname =
-fieldname IMPORTING setclass = -class.
G_RW_SET_SELECT * CALL FUNCTION 'G_RW_SET_SELECT' * EXPORTING * set = l_setname_aux * class = l_setclass_aux * table = 'FMMEASURE' * show_table_name = ' ' * show_field_name = ' ' * no_field_name_change = 'X' * no_table_name_change = 'X' * IMPORTING * set_name = l_setname_aux * class_name = l_setclass_aux * EXCEPTIONS * no_set_picked = 01 * no_sets = 02 * OTHERS = 999.
G_TABLE_FIELD_GET_SETCLASS CALL FUNCTION 'G_TABLE_FIELD_GET_SETCLASS' EXPORTING tabname = 'CCSS' fieldname =
-fieldname IMPORTING setclass = -class.
K_GROUP_SELECT CALL FUNCTION 'K_GROUP_SELECT' EXPORTING class =
-class field_name = -fieldname searchfld = l_help_searchfld searchfld_input = ' ' searchfld_required = '' * set = l_help_set fikrs = u_fmarea IMPORTING set_name = l_help_setnr EXCEPTIONS no_set_picked = 1.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' i_callback_top_of_page = 'TOP_OF_PAGE' i_callback_html_top_of_page = 'HTML_TOP_OF_GRID' i_background_id = l_background_id i_grid_title = l_grid_title is_layout = l_f_layout it_fieldcat = g_t_fieldcat i_save = g_save is_variant = g_f_variant i_html_height_top = '45' TABLES t_outtab = u_t_protocol EXCEPTIONS OTHERS = 1.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_internal_tabname = l_tabname_item i_structure_name = 'SETHIER' CHANGING ct_fieldcat = C_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.