‎2006 Sep 10 8:14 AM
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.
‎2006 Sep 10 3:10 PM
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