‎2009 Mar 18 7:43 AM
Hi,
I wanna display blank instead of 0.00
data type is packed decimal
any function module is there..
this is alv...so i cant use write statement
pls help me
‎2009 Mar 18 7:51 AM
Hi Rajkamal,
Just move those valuse to the Chareter type..
data lv_char type c.
if value = 0.00.
move value to lv_char.
endif.thanks!
‎2009 Mar 18 7:51 AM
Hi Rajkamal,
Just move those valuse to the Chareter type..
data lv_char type c.
if value = 0.00.
move value to lv_char.
endif.thanks!
‎2009 Mar 18 8:27 AM
Prasanth,
I will have to display the variable which is of data type P.
‎2009 Mar 18 8:34 AM
Hi,
While displayingt he output use the following:
DATA : G_TEXT TYPE P DECIMALS 2.
G_TEXT = '0.00'.
WRITE : G_TEXT NO-ZERO.
‎2009 Mar 18 9:49 AM
‎2009 Aug 05 12:06 PM
‎2010 Jan 19 3:59 PM
Hi,
what did you do to fix the problem, I am facing the same scenario.
Thanks
Anne