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

Round up integer

Former Member
0 Likes
617

Hi all,

I need help on this urgently.

I have value as follow to be rounded up , eg:

941 rounded to 940,

98 rounded to 100,

934 rounded to 930.

thanks!!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
593

hi pompougnia,

U can use MOD too, like this.

data:

num(10) value '943',

module(2).

module = num mod 10.

case module.

when 0.

...

when 1.

num = num - 1.

when 2.

num = num - 2.

when 3.

num = num - 3.

when 4.

num = num - 4.

when 5.

num = num + 5. "or ( - 5 )

when 6.

num = num + 4.

when 7.

num = num + 3.

when 8.

num = num + 2.

when 9.

num = num + 1.

endcase.

write: num.

Regards

Allan Cristian

Message was edited by:

Allan Cristian

4 REPLIES 4
Read only

ferry_lianto
Active Contributor
0 Likes
593

Hi,

Please try FM ROUND to round it up or down.

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
594

hi pompougnia,

U can use MOD too, like this.

data:

num(10) value '943',

module(2).

module = num mod 10.

case module.

when 0.

...

when 1.

num = num - 1.

when 2.

num = num - 2.

when 3.

num = num - 3.

when 4.

num = num - 4.

when 5.

num = num + 5. "or ( - 5 )

when 6.

num = num + 4.

when 7.

num = num + 3.

when 8.

num = num + 2.

when 9.

num = num + 1.

endcase.

write: num.

Regards

Allan Cristian

Message was edited by:

Allan Cristian

Read only

Former Member
0 Likes
593

Try this.

PARAMETERS: p_number TYPE i.

DATA: reminder TYPE i.

p_number = ( p_number / 10 ) * 10.

WRITE p_number.

Read only

Former Member
0 Likes
593

You can use function module HR_BEN_ROUND_AMOUNT. Set the raw amount to the original amount, set the rounding rule to B, and set the rounding divisor to 10. The rounded amount will be returned to you.

- April King