‎2007 Feb 20 5:55 AM
In smartform at present one of the column is printing value like this 10.000,00
But according to my requirement i should print it as 10,000.00
Kindly suggest how to achieve this...thanks in advance
‎2007 Feb 20 5:57 AM
Hi
By using User Profile we can set this value.
Otherwise using SET country country(which country having the required formatt) we can achieve the same.
Regards,
kumar
‎2007 Feb 20 5:57 AM
Hi
By using User Profile we can set this value.
Otherwise using SET country country(which country having the required formatt) we can achieve the same.
Regards,
kumar
‎2007 Feb 20 6:07 AM
Hi,
For which country Are printing the Smartform? for India for other country.
Because it changes from Country to Country.
First You can set your setting in USER TCODE 'SU01' enter your user id and in Defaults you can set this.
Even if it won't works handle this in Form By setting the Country Settings .
Even in SPRO tCode also you can SET these settings for a particular Currency.
Regards,
Anji
‎2007 Feb 20 6:07 AM
‎2007 Feb 20 6:09 AM
Hi ,
Declare a varable type character after that assign quantity value to character field . Then the print the character variable .
example .
Let a = 10.000,00
data : b(15) .
write 😕 a to b .
write 😕 b .
Please use this code .Then it will solve your Problem .
I hope it will help you .
Please reward points if it helps you .
Thanks