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

Currency Conversion

Former Member
0 Likes
799

Hi,

could any body help me in finding FM for converting a currency into another or any other way to do it

I have Currency USD , amount 600 want to convert into EUR

many thanks in advance

bobby

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
701

Hi,

Please try this FM.

CONVERT_TO_FOREIGN_CURRENCY

CONVERT_AMOUNT_TO_CURRENCY

Regards,

Ferry Lianto

Hi,

could any body help me in finding FM for converting a currency into another or any other way to do it

I have Currency USD , amount 600 want to convert into EUR

many thanks in advance

bobby

5 REPLIES 5
Read only

Former Member
0 Likes
702

Hi,

Please try this FM.

CONVERT_TO_FOREIGN_CURRENCY

CONVERT_AMOUNT_TO_CURRENCY

Regards,

Ferry Lianto

Read only

former_member404244
Active Contributor
0 Likes
701

Hi,

plz chek the below FM'S

CONVERT_TO_FOREIGN_CURRENCY

CONVERT_TO_LOCAL_CURRENCY

Regards,

Nagaraj

Read only

suresh_datti
Active Contributor
0 Likes
701

Try the function call HRCM_AMOUNT_CONVERT_CURRENCY.

~Suresh

Read only

Former Member
0 Likes
701
CALL FUNCTION 'CONVERT_TO_FOREIGN_CURRENCY'

  EXPORTING   DATE             = BKPF-WWERT

              FOREIGN_CURRENCY = BKPF-WAERS

              LOCAL_CURRENCY   = T001-WAERS

              LOCAL_AMOUNT     = BSEG-DMBTR

              RATE             = BKPF-KURSF

              TYPE_OF_RATE     = 'M'

  IMPORTING   EXCHANGE_RATE    = KURS

              FOREIGN_AMOUNT   = BSEG-WRBTR

              FOREIGN_FACTOR   = FAKTOR-F

              LOCAL_FACTOR     = FAKTOR-L

  EXCEPTIONS  NO_RATE_FOUND    = 4

              NO_FACTORS_FOUND = 8.
Read only

Former Member
0 Likes
701

searched my own