‎2008 Aug 23 8:06 AM
Dear Experts,
I am using download function to download values from application server to desktop.
After downloading the output is like the foollowing.
0 temp 30 bar(kg)
But now the user requirement is I have to print it like the following.
0/temp/30/bar(kg)
I have to delete the space and have to give '/' sign.
Please help me to fix this.
Thanks in Advance
Ansuman Parhi
‎2008 Aug 23 8:08 AM
‎2008 Aug 23 9:53 AM
‎2008 Aug 23 2:01 PM
Dear Amit,
Can u please tell me elaborately and gives me a sample.
Regards
Ansuman
‎2008 Aug 25 11:32 AM
Hi,
THis is a simple conversion.
First Upload file from application server using dataset concept and Store Internal table of Char field like
Begin of itab occurs 0,
Data(200) type c,
End of itab .
then Split that into some fields space
Loop at itab.
Split itab-data at ' ' into fields,
Concatenate fields into itab-data seperated by '/'
Modify Itab.
endloop.
Then download this.