‎2006 Aug 10 2:07 PM
i'm doing it and i get 18
i have 18200
i neefd to get 18.2
i tried your answer and not sorry
‎2006 Aug 10 2:16 PM
‎2006 Aug 10 2:20 PM
He wants to divide the value by 1000 first.
I think the NUM variable is a quantity or currency field and is not defined fully in the ABAP program. For example, it needs the unit or currency key.
‎2006 Aug 10 2:19 PM
Try &NUM(2.3)&
Also, if you can cut-paste the data declaration for NUM in your abap.
Regards
Anurag
Message was edited by: Anurag Bankley
‎2006 Aug 10 2:32 PM
Try this solution...
In your ABAP..
Data : L_CNUM(10) type c.
--As indicated by you NUM in the ABAP is 18200
write NUM to L_CNUM using edit mask 'RR_______.__'.
-- and in your script.
&L_CNUM&
Regards
Anurag