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 Off

Former Member
0 Likes
418

Hi ,

like CEIL FLOOR i want Round off functionality is there possible in SAP or manually we have to do ?

i mean if x = 3.45412 means i want x = 3.45 and

if x = 3.45767 means i want x = 3.46

upto two decimals means

is ther any chance ..

THX

Hi ,

like CEIL FLOOR i want Round off functionality is there possible in SAP or manually we have to do ?

i mean if x = 3.45412 means i want x = 3.45 and

if x = 3.45767 means i want x = 3.46

upto two decimals means

is ther any chance ..

THX

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
399

DATA:v_round TYPE p DECIMALS 2 VALUE '0.2'.

WRITE wk_m ROUND v_round TO wk_n.

i guess this may work

Read only

Former Member
0 Likes
399

also check this thread.