‎2010 Feb 11 4:00 PM
Hi Everyone,
Can you tell me how to convert a floating point arithmetic field value to a currency field value.
thanks,
chan
‎2010 Feb 11 4:25 PM
Hi,
I hope simple move statement should work.
MOVE l_float TO l_curr.
Make sure that curr field has enough length.
Thanks,
Vinod.
‎2010 Feb 11 4:25 PM
Hi,
I hope simple move statement should work.
MOVE l_float TO l_curr.
Make sure that curr field has enough length.
Thanks,
Vinod.
‎2010 Feb 11 6:23 PM
you can use 'FLTP_CHAR_CONVERSION' function.. or if you search in SCN you have many discussions on the same topic.
‎2010 Feb 12 11:32 PM
My own personal quirk, I know, but I like to use a variable of type p decimals 2,
then: p_variable = 0 + fp-field....
alwys works for me )