cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Curreny Conversion ?

Former Member
0 Likes
152

Hi,

Why we can only write Currency COnversions in Update rule but not in Tranfer rules.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Likes

Hi Reddy,

Currency translation in the update allows you to translate data records from the source currency of the InfoSource into a target currency in the data target. This function is only available if key figures with currency fields exist in the source system in various currencies. Currency translation is not available if the currency of the data records to be transferred is the same as the currency of the target key figure in the InfoCube.

http://help.sap.com/saphelp_nw04/helpdata/en/80/1a64e0e07211d2acb80000e829fbfe/frameset.htm

This below link for unit conversion.

http://help.sap.com/saphelp_nw04/helpdata/en/3f/2aea76361311d4b2c30050dadfb23f/frameset.htm

These above links will give more examples on conversions.

Thaks

VJ

Former Member
0 Likes

Hi

We can write currency conversions in the update as well as the transfer rules..

Check this link out for further details..

http://help.sap.com/saphelp_nw04/helpdata/en/ec/076f3b6c980c3be10000000a11402f/content.htm

Regards,

Jess.

edwin_harpino
Active Contributor
0 Likes

hi,

we can also do currency conversion in transfer rules, using function module, e.g

CALL FUNCTION 'CONVERT_TO_FOREIGN_CURRENCY'

EXPORTING

DATE = 0DOC_DATE

FOREIGN_CURRENCY = 0DOC_CURRCY

LOCAL_AMOUNT = TRAN_STRUCTURE-[fieldname]

LOCAL_CURRENCY = TRAN_STRUCTURE-0LOC_CURRCY

IMPORTING

FOREIGN_AMOUNT = RESULT

EXCEPTIONS

.....

hope this helps.