‎2007 Oct 11 12:42 PM
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
‎2007 Oct 11 12:49 PM
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
‎2007 Oct 11 1:00 PM
hi sonu,
you can use the following function modules :
CONVERT_TO_FOREIGN_CURRENCY
CONVERT_TO_LOCAL_CURRENCY
reward if useful.
‎2007 Oct 11 1:07 PM
Hi
Call this Function module:
CONVERT_TO_LOCAL_CURRENCY
REWARD IF HELPFUL.