Hi All,
I have one issue and i need to download the data into .txt file at my desktop.
I will get the data from diffrent tables and using gui_download function and i get in file.
simple code here
data : begin of itab_data occurs 0 ,
matnr like mara-matnr,
maktx like makt-maktx,
end of itab_data.
itab_data-matnr = '000000000000000098'.
itab_data-maktx = '1234567890'.
append itab_data.
and i am calling gui_download
I am getting output like this
0000000000000000981234567890( here i need get space )
after material description user will use -> symbol at keyboard,right now it is not going.when i put some delimter it is going.
but my case i should not use delimter and it is 4.6C .
I got output in 5.00 Vresion and my current sytem is 4.6C and can anyone give me the idea how to do.
Thanks
Seshu