*---------------------------------------------------------------------* * FORM download_table_to_file *---------------------------------------------------------------------* * [+] Downloads a table of data into a file on the local pc *---------------------------------------------------------------------* FORM download_table_to_file TABLES p_table TYPE STANDARD TABLE with header line USING p_filename TYPE localfile. CALL FUNCTION 'WS_DOWNLOAD' EXPORTING filename = p_filename filetype = 'ASC' TABLES data_tab = p_table. ENDFORM.