2006 Nov 28 5:24 PM
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
2006 Nov 28 5:29 PM
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
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
2006 Nov 28 5:29 PM
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
2006 Nov 28 5:39 PM
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