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

FM to remove negative values

Former Member
0 Likes
563

Hi Friends,

Any FM to remove the negative sign.

Thanx in advance,

Venu.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
470

better way is

output = input * - 1.

Regards

Prabhu

3 REPLIES 3
Read only

Former Member
0 Likes
471

better way is

output = input * - 1.

Regards

Prabhu

Read only

anversha_s
Active Contributor
0 Likes
470

HI venu,

this is the only way

FLD1 = FLD1 * -1.

Regards

Anver

if hlped mark points

Read only

Former Member
0 Likes
470

data p type i value '-266'.

write:/ p .

write:/ p no-sign.

vijay.