‎2006 Oct 13 5:33 AM
Hi all,
Currently i'm using the write statement to do the conversions.
data : amt(30).
write bseg-dmbtr into amt currency 'USD'.
However the output is in "123,456.00" format.
I need the output in "123456.00" without the commas.
Other than doing a "REPLACE" command for the commas in the amt string, is there a better way of getting the desired currency output without commas?
regards
‎2006 Oct 13 5:51 AM
Hi,
Use the NO-GROUPING addition with the WRITE statement.
write bseg-dmbtr into amt <b>NO-GROUPING</b> currency 'USD'.
Manoj
‎2006 Oct 13 5:51 AM
Hi,
Use the NO-GROUPING addition with the WRITE statement.
write bseg-dmbtr into amt <b>NO-GROUPING</b> currency 'USD'.
Manoj
‎2006 Oct 13 7:39 AM
Ahhhh thanks!
I get error while rewarding the solution? I'll try again later
Message was edited by: Bee Huat, Leonard Yong
‎2006 Oct 13 6:05 AM