Skip to Content
0
Former Member
Dec 23, 2004 at 11:23 AM

Problem with GUI_DOWNLOAD

53 Views

I have a internal table with records length 256 characters. This table must be placed on the PC in Latin-5, but i don't want to have CR LF.

Which parameters i need to fill on GUI_DOWNLOAD to place the table on the PC and which for the GUI_UPLOAD

Now i'm using

DATA lc_codepage TYPE abap_encod.

lc_codepage = '1611'.

CALL FUNCTION 'GUI_DOWNLOAD'

EXPORTING

filename = ls_filename

  • filetype = 'ASC'

  • WRITE_LF = 'X'

codepage = lc_codepage

This give CRLF.

Using BIN gives a very big file. Even bigger dan the one with CRLF.

Using ASC and write_lf = spaces gives a dump.

The file is 8 MB big.