‎2010 Feb 17 9:31 AM
Hi,
i did a normal report.i got the output
WRITE: 74(09) gl_output-volmea DECIMALS 0 NO-ZERO, as in my report 12 instaed of 12.2 which is the requirement
but when i am downloading the output to my desktop(in excell) by ws_download
i am getting the value 12.2 instead of 12.
so kindly let me know how to i correct it ??
thabks
‎2010 Feb 17 10:04 AM
The data downloaded is from the internal table , not from the list written.
‎2010 Feb 17 9:37 AM
hi,
ws_download is obsolete.
use gui_download instead.
you have to do the changes in your internal table that u are downloading.
write is only for display purpose.
regards.
‎2010 Feb 17 9:38 AM
Could it be that Excel is formatting the column? Check the file before opening with Excel. Does the field contain 2 decimal places?
‎2010 Feb 17 9:39 AM
Hello,
Write statement with NO-ZERO formatting is just for displaying purpose. It will not change the actual value of the variable. You might have to assign the value to a variable of type i and then download it.
Vikranth
‎2010 Feb 17 10:04 AM
The data downloaded is from the internal table , not from the list written.