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

changing currency type

Former Member
0 Likes
506

hi friends,

in po header there is one amount field which curr type <b>eur</b>.

but i want to change it to <b>inr</b> .

what will be the possible solution for this.

sonu

3 REPLIES 3
Read only

Former Member
0 Likes
444

Hi sonu,

try it

DATA: num1 TYPE p DECIMALS 4 VALUE '12.3456',

num2 TYPE p DECIMALS 0 VALUE '123456'.

SET COUNTRY 'US'.

WRITE: 'USD', num1 CURRENCY 'USD', num2 CURRENCY 'USD',

/ 'BEF', num1 CURRENCY 'BEF', num2 CURRENCY 'BEF',

/ 'KUD', num1 CURRENCY 'KUD', num2 CURRENCY 'KUD',

/ 'INR', num1 CURRENCY 'INR', num2 CURRENCY 'INR'.

look at table TCURX for values.

Regards

Allan Cristian

Message was edited by:

Allan Cristian

Read only

Former Member
0 Likes
444

hi sonu,

you can use the following function modules :

CONVERT_TO_FOREIGN_CURRENCY

CONVERT_TO_LOCAL_CURRENCY

reward if useful.

Read only

varma_narayana
Active Contributor
0 Likes
444

Hi

Call this Function module:

CONVERT_TO_LOCAL_CURRENCY

REWARD IF HELPFUL.