Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem with printing value

Former Member
0 Likes
528

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

1 ACCEPTED SOLUTION
Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
509

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

4 REPLIES 4
Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
510

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

Read only

Former Member
0 Likes
509

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

Read only

Former Member
0 Likes
509

Hi,

Please check the link,

Regards,

Hema.

    • Reward points if it is useful.

Read only

Former Member
0 Likes
509

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