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

Multi-Currency and Multi-Language

Former Member
0 Likes
637

Hello,

What issues does an ABAP developer need to be concerned about when programming objects that involve multiple currencies and multiple languages?

Rae

Hello,

What issues does an ABAP developer need to be concerned about when programming objects that involve multiple currencies and multiple languages?

Rae

3 REPLIES 3
Read only

aabhas_wilmar
Contributor
0 Likes
530

Hi Rae,

Can't think of many but few that comes to my mind spontaneously are:

1. When reading data such as texts, make sure you pass language key.

2. Translate each and every text (in scripts, smartforms, data element labels, documentations etc to all the language, use the same logon language in which you want to maintain and test.

3. Currencies should not be much of a problem but if you have to make a lot of calculations, make sure you do them with dimensional consistency, for examply JPY doesn't have decimals!

I would like to watch this thread to learn more.

Thanks,

Aabhas

Read only

Former Member
0 Likes
530

the only thing what you need to look into is : currency key and language key

every table which has an currency field come with a currency key too like WAERS. while fetching you should fetch the key as well.

and for every table which language element, has a language key as SPRAS

Read only

Former Member
0 Likes
530

Thanks for answering my question.