Hi.
I have an internal table to be download to txt file with the fields separated by ‘|’
EXPORTING
filename = lv_name
filetype = ‘ASC’
write_field_separator = ‘|’
TRUNC_TRAILING_BLANKS_EOL = ‘X’
TRUNC_TRAILING_BLANKS = ‘X’
changing
data_tab = t_final.
It saves the file, but with tabs between the fields (instead of the ‘|’ separator)
here is the result
Any ideas? What I’m doing wrong?