‎2005 Apr 12 8:27 AM
Dear All,
Can anyone please let me know any function module for Currency conversion.
For Example i have differnt PO's with Different currencies,In my report i need to convert all those into one local currency.
My input will be : Document currency,value and the traget currency.
Output : target currencies value
‎2005 Apr 12 9:07 AM
Hi,
or CONVERT_AMOUNT_TO_CURRENCY
e.g.
CALL FUNCTION 'CONVERT_AMOUNT_TO_CURRENCY'
EXPORTING
date = sy-datum
foreign_currency = 'USD'
foreign_amount = '2000.00'
local_currency = 'EUR'
IMPORTING
local_amount = amount.Andreas
‎2005 Apr 12 8:35 AM
‎2005 Apr 12 9:02 AM
Hi,
Try CONVERT_TO_LOCAL_CURRENCY function module.
Regards,
J.Jayanthi
‎2005 Apr 12 9:07 AM
Hi,
or CONVERT_AMOUNT_TO_CURRENCY
e.g.
CALL FUNCTION 'CONVERT_AMOUNT_TO_CURRENCY'
EXPORTING
date = sy-datum
foreign_currency = 'USD'
foreign_amount = '2000.00'
local_currency = 'EUR'
IMPORTING
local_amount = amount.Andreas