‎2008 Jun 02 11:40 AM
Hi
Can anyone tel me name of function module which is used to conver the positive values in to negative values..
For example (1000) to( - 10000).
Thanks and Regards,
Arun
‎2008 Jun 02 11:54 AM
Not a function for this, however
if field GT 0.
field = field * ( -1 ).
endif.
should do what you need.
‎2008 Jun 02 11:54 AM
Not a function for this, however
if field GT 0.
field = field * ( -1 ).
endif.
should do what you need.