HFILTUMF_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 HFILTUMF_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 HFIFTUM0_FORMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RP_TS_OPEN CALL FUNCTION 'RP_TS_OPEN' EXPORTING tsobj = tsobj empfg = no_ts_rec EXCEPTIONS fb_call_handle = 1 fb_error = 2 fb_rsts_noconv = 3 fb_rsts_other = 4 no_object = 5 no_permission = 6 no_hr_application_file = 7 invalid_version_number = 8 wrong_report = 9 OTHERS = 10.
RSTS_READ CALL FUNCTION 'RSTS_READ' IMPORTING alldata = sw_alldata TABLES datatab = temsedata EXCEPTIONS fb_call_handle = 1 fb_error = 2 fb_rsts_noconv = 3 fb_rsts_other = 4 OTHERS = 5.
F4IF_INT_TABLE_VALUE_REQUEST * CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' * EXPORTING * retfield = 'TSOBJ' * dynpprog = dynpprog * dynpnr = dynpnr * dynprofield = 'TSOBJ' * value_org = 'S' * TABLES * value_tab = f4_tab * EXCEPTIONS * parameter_error = 1 * no_values_found = 2 * OTHERS = 3.
RP_TS_HELPVIEW CALL FUNCTION 'RP_TS_HELPVIEW' EXPORTING repid = no_ts_rep IMPORTING tsobj = p_tsobj EXCEPTIONS internal_error = 1 no_texts_found = 2 table_has_no_fields = 3 table_not_activ = 4 field_not_in_ddic = 5 more_then_one_selectfield = 6 no_selectfield = 7 no_value_request_for_molga = 8 no_entries_found = 9 helpview_not_installed = 10 OTHERS = 11.
WS_FILENAME_GET CALL FUNCTION 'WS_FILENAME_GET' EXPORTING def_filename = fname def_path = 'C:\TEMP\' mask = ',*.*,*.*.'
DOWNLOAD * CALL FUNCTION 'DOWNLOAD' * EXPORTING ** BIN_FILESIZE = ' ' ** CODEPAGE = ' ' * filename = fname * filetype = 'ASC' ** ITEM = ' ' ** MODE = ' ' ** WK1_N_FORMAT = ' ' ** WK1_N_SIZE = ' ' ** WK1_T_FORMAT = ' ' ** WK1_T_SIZE = ' ' ** FILEMASK_MASK = ' ' ** FILEMASK_TEXT = ' ' ** FILETYPE_NO_CHANGE = ' ' ** FILEMASK_ALL = ' ' ** FILETYPE_NO_SHOW = ' ' ** SILENT = 'S' ** COL_SELECT = ' ' ** COL_SELECTMASK = ' ' ** NO_AUTH_CHECK = ' ' ** IMPORTING ** ACT_FILENAME = ** ACT_FILETYPE = ** FILESIZE = ** CANCEL = * TABLES * data_tab = disk_data[] ** FIELDNAMES = * EXCEPTIONS * invalid_filesize = 1 * invalid_table_width = 2 * invalid_type = 3 * no_batch = 4 * unknown_error = 5 * gui_refuse_filetransfer = 6 ** customer_error = 7 * OTHERS = 8 * .
GUI_DOWNLOAD call function 'GUI_DOWNLOAD' exporting * BIN_FILESIZE = filename = f_name FILETYPE = 'ASC' * IMPORTING * FILELENGTH = tables data_tab = disk_data[] exceptions file_write_error = 1 no_batch = 2 gui_refuse_filetransfer = 3 invalid_type = 4 others = 5 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.