Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

call function 'GUI_DOWNLOAD'

Former Member
0 Likes
363

hi all,

i have a small doubt. im supposed to download to the client the text file with the header line.

call function 'GUI_DOWNLOAD'

exporting

    • BIN_FILESIZE =

filename = 'c:/data.txt'

FILETYPE = 'ASC'

    • APPEND = ' '

WRITE_FIELD_SEPARATOR = 'X'

HEADER = '00'----


>wanna know whether i can use this to give a header line. what exactly does paramter mean and what r the available options.

    • TRUNC_TRAILING_BLANKS = ' '

    • WRITE_LF = 'X'

    • COL_SELECT = ' '

    • COL_SELECT_MASK = ' '

    • DAT_MODE = ' '

    • CONFIRM_OVERWRITE = ' '

    • NO_AUTH_CHECK = ' '

    • CODEPAGE = ' '

    • IGNORE_CERR = ABAP_TRUE

    • REPLACEMENT = '#'

    • WRITE_BOM = ' '

    • TRUNC_TRAILING_BLANKS_EOL = 'X'

    • IMPORTING

    • FILELENGTH =

tables

data_tab = i_chqs.

Thanks A lot.

Santosh Kotra.

1 REPLY 1
Read only

Former Member
0 Likes
313

hi,

This parameter allows you to prefix the data with individual bytes during the binary download.

Value range

Hexadecimal string with a length of up to 1023 bytes.

Default

'00'

Regrads

aMOLE