Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function module

Former Member
0 Likes
336

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
318

Not a function for this, however


  if field GT 0.
    field = field * ( -1 ).
  endif.

should do what you need.

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

1 REPLY 1
Read only

Former Member
0 Likes
319

Not a function for this, however


  if field GT 0.
    field = field * ( -1 ).
  endif.

should do what you need.