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

need formatting options in sap script

0 Likes
787

can any one provide formatting options in sap script, as my requirement is to nullify the , and . in quantity field and replace them with . and ,.

requirement is urgent...pls provide me answer as early as possible

i wait for ur replay...

Hareesh TADEPALLI

not possible in sap-script, you need to do that in an external perform or while fetching the data.

3 REPLIES 3
Read only

Former Member
0 Likes
748

not possible in sap-script, you need to do that in an external perform or while fetching the data.

Read only

Former Member
0 Likes
748

So, you want to change for example 1,456.23 into 1.456,23? This is defined by the country specific formating for the destination country of the form. Table T005X holds the settings for each country.

Regards,

Nick

Read only

varma_narayana
Active Contributor
0 Likes
748

Hi Harish..

We can achieve this using the command

/: SET COUNTRY '<COUNTRY>'

eg:

/: SET COUNTRY 'US'

This command will format the Decimal values as per the country. This will work for u.

There is no other formatting option for this.

REWARD IF HELPFUL.