2008 Feb 04 2:06 PM
Hi,
I would like use CALL FUNCTION 'GUI_DOWNLOAD'
But I want separator ';' of columnes - not "TAB".
Have you any ideas?
thanks,
Bogdan
2008 Feb 04 2:09 PM
Hi,
I would like use CALL FUNCTION 'GUI_DOWNLOAD'
But I want separator ';' of columnes - not "TAB".
Have you any ideas?
thanks,
Bogdan
2008 Feb 04 2:09 PM
2008 Feb 04 2:20 PM
2008 Feb 04 2:15 PM
Hi
U need to insert the separator directly in internal table with the record of the file, so while you're filling the field of the file, you have to insert the separator.
Max
2008 Feb 04 2:25 PM
if you are in 4.7 or above , u have the option WRITE_FIELD_SEPARATOR , u can use that
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
* BIN_FILESIZE =
FILENAME =
* FILETYPE = 'ASC'
* APPEND = ' '
*WRITE_FIELD_SEPARATOR = ' '* If you using below 4.7 then try something like this
LOOP AT i_final.
DO.
ASSIGN COMPONENT sy-index OF STRUCTURE i_final TO <fs_field>.
IF sy-subrc EQ 0.
CONCATENATE <fs_field> ';' INTO i_download-field.
ELSE.
EXIT.
ENDIF.
ENDDO.
Append i_download
clear i_download
ENDLOOP.