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

rounding rule

Former Member
0 Likes
529

hi to all,

help me in this issue,

how to roundoff the netvalue of sales doucument level that r at billing document level.

thanks in advance

kiran kumar

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
500

Hi Kiran,

for amount u can use ROUND do that.

chk some FM also.

ROUND_AMOUNT

FI_ROUND_AMOUNT

anothe FM HR_IN_ROUND_AMT

Hope this helps,

Manish

2 REPLIES 2
Read only

Former Member
0 Likes
501

Hi Kiran,

for amount u can use ROUND do that.

chk some FM also.

ROUND_AMOUNT

FI_ROUND_AMOUNT

anothe FM HR_IN_ROUND_AMT

Hope this helps,

Manish

Read only

Former Member
0 Likes
500

You can use FLOOR command.

REPORT zkb_test1.

DATA: v_data TYPE p DECIMALS 4 VALUE '1034.567',

v_data1 TYPE i.

WRITE / v_data.

v_data1 = FLOOR( v_data ).

WRITE / v_data1.

Regards

Kathirvel