‎2010 Jan 29 7:31 AM
Hi All,
I am using ws_download function module to get .csv file as output . i am getting space between output values.But i want to get comma instead of space.
i am working on 4.6b version but in this version there no write filed separator field in gui_download function module.
Please suggest me the follow up
Regards
Sudhakar.
‎2010 Jan 29 12:57 PM
use field-symbol and do sth like this
data str type string.
loop at itab.
do.
assign component sy-index of table itab to <F>.
concatenate str <f> ';' into str.
enddo.
endloop.
hope taht helps
Andreas
‎2010 Jan 29 12:57 PM
use field-symbol and do sth like this
data str type string.
loop at itab.
do.
assign component sy-index of table itab to <F>.
concatenate str <f> ';' into str.
enddo.
endloop.
hope taht helps
Andreas
‎2010 Jan 29 1:05 PM
Data:lv_string type string.
data:begin of itab_download occurs 0,
lv_line type string,
end of itab_download.
Loop at itab.
concatenate itab1-f1 itab1-f2 into lv_string seperated by ','.
append lv_string to itab_download-lv_line.
endloop.
now download itab_download