2005 May 16 9:37 AM
Hi Experts,
<b>I need to display decimals like 999.99 but the currency is set as no decimal in the configuration for company setting.
When i print the smart form i am getting 2,00 instead of 2.00(TWD) . How to display 2.00 or 2 Expecting your valuable reply.</b>
Regards
Nathan
Hi Experts,
<b>I need to display decimals like 999.99 but the currency is set as no decimal in the configuration for company setting.
When i print the smart form i am getting 2,00 instead of 2.00(TWD) . How to display 2.00 or 2 Expecting your valuable reply.</b>
Regards
Nathan
2005 May 16 9:47 AM
Hello,
maybe you could edit a char variable, and in this variable put the data like this :
write your_amount to your_char currency your_currency.
Regards
Frédéric
2005 May 16 9:51 AM
Welcome to SDN.
<i>When i print the smart form i am getting 2,00 instead of 2.00(TWD) . How to display 2.00 or 2 Expecting your valuable reply.</i>
in the user setting (system->user profile->own data->defaults) set the decimal notation to '.' instead of ','
Regards
Raja
2005 May 16 10:49 AM
Hi,
Thanks for your reply. Is it like function call or i need to use "MOVE" . For other companies it showing decimal correctly for only this company (No decimal @ Company level) not showing correctly ..
Thanks for your prompt help.
Regards
Nathan
2005 May 16 10:51 AM
Hi,
Thanks. My setting is like that only ..
Any other ideas..
Regards
Nathan
2005 May 16 10:56 AM
try this
data: val1(10),
val2 type p decimals 2.
val1 = '10' .
write:/ val1 .
move: val1 to val2 .
write:/ val2 .
Regards
Raja
2005 May 16 11:02 AM
again, if you have trouble with no decimal have a look at the instruction : WRITE ... CURRENCY ...
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |