‎2008 May 24 7:29 AM
Hi
w_rwbtr is a character field.
Suppose the value of w_rwbtr is 1234567
I want to display it in the format
1,234,567.00
I was asked to try the below solution..
declare w_rwbtr1 as type P decimals 2.
move w_rwbtr to w_rwbtr 1.
again write ...
write w_rwbtr 1 to w_rwbtr.
It works but i do not get the comma separators.
It simply writes 1234567.00
but I want the comma separators as well. like
1,234,567.00
‎2008 May 24 7:37 AM
Hi,
u will give the amount data type as CURR
check once this okk.
‎2008 May 24 7:35 AM
Hi,
Declare one field to currency type and then try.
Also check the decimal Notation in user settings. ie. goto su01 > enter usename > click on display > deflut tab> check the Decimal Notation...If its not the one you want just change it.
REWARD IF USEFUL
‎2008 May 24 7:37 AM
Hi,
u will give the amount data type as CURR
check once this okk.
‎2008 Jun 04 7:17 AM