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 convertion

Former Member
0 Likes
1,074

hi experts,

how to know the currency conversion values from one currency to other currency.is there any table to find the currency values of different types?

for 1 GPY what is the value in USD ? i.e. 1GPY = ?USD.

i want the values in USD. i want to know for all the currencies what is the USD value.

thanks in advance.

rgds,

nag.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,034

Hi,

Use TCURR table. But you should do a conversion on date before using it.

Thanks

Ramesh

hi experts,

how to know the currency conversion values from one currency to other currency.is there any table to find the currency values of different types?

for 1 GPY what is the value in USD ? i.e. 1GPY = ?USD.

i want the values in USD. i want to know for all the currencies what is the USD value.

thanks in advance.

rgds,

nag.

7 REPLIES 7
Read only

Former Member
0 Likes
1,035

Hi,

Use TCURR table. But you should do a conversion on date before using it.

Thanks

Ramesh

Read only

former_member435013
Active Participant
0 Likes
1,034

Hi,

it belongs to customizing. TA SPRO:

-> General Settings -> Currencies -> Enter exchange rates

regards

Walter Habich

Read only

0 Likes
1,034

i have to test the values manually, for that i need table to calculate the amount into USD fromother currencies.

Read only

0 Likes
1,034

hi,

you can use the above told function module in the way,

CALL FUNCTION 'BAPI_EXCHANGERATE_GETDETAIL'

EXPORTING

rate_type = 'M'

from_curr = it_out-waers

to_currncy = 'USD'

date = it_out-bedat

IMPORTING

exch_rate = exch_rate

  • RETURN =

.

it_final-netwr = it_final-netwr * exch_rate-exch_rate.

Read only

Former Member
0 Likes
1,034

hi,

BAPI_EXCHANGERATE_GETDETAIL

use this function module to convert any currency to required one..

Read only

Former Member
0 Likes
1,034

tcurv, tcurf

or you can use function module CONVERT_TO_LOCAL_CURRENCY

Read only

0 Likes
1,034

i want to know the amount in usd for that particular curency.

is there any table for this requirement ? i don't want Fm.

rgds,

nag.