Hello Mates,
I want to know about CONVERT_TO_LOCAL_CURRENCY function module.
CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
EXPORTING
CLIENT = SY-MANDT
date = 01.01.2011
foreign_amount = 50
foreign_currency = 'INR'
local_currency = 'EUR'
RATE = 0
type_of_rate = 'BU'
READ_TCURR = 'X'
IMPORTING
exchange_rate =
foreign_factor =
local_amount =
local_factor =
exchange_ratex =
fixed_rate =
derived_rate_type =
EXCEPTIONS
no_rate_found = 1
overflow = 2
no_factors_found = 3
no_spread_found = 4
derived_2_times = 5
In above function module i know about exporting fields. But i need clear information about importing fields(meaning of each field).
Can any one please help me?
Regards,
Ranganath.