‎2011 Sep 16 1:27 PM
Hi experts,
I have a requirement in which i have :-
Source quantity
Source Price/UOM
I have to calculate amount.
Example - Mango is 2Rupee/Gm
quantity - 35 KG
I want to calculate price in Euro.
Is there is any standard Method/FM for this.
Please help
Thanks
Mahesh
‎2011 Sep 16 1:32 PM
Hi,
Try with FM 'CURRENCY_CONVERT_TO_EURO'.
Thanks & Regards
Bala Krishna
‎2011 Sep 17 10:53 PM
Hi,
You have first to use UNIT_CONVERSION_SIMPLE to convert the quantity from a unit of measure to another (here 35 KG, to be converted into Gm, will return 35 thousands),
then calculate rupees : 35000 * 2 -> 70000 rupees (easy )
then use CONVERT_AMOUNT_TO_CURRENCY (only available in ECC) to convert from one currency to another. You'll have to take care of the currency rate. Note that if you have to convert to or from a local currency (for instance EUR is the local currency of your company), you may use CONVERT_TO_LOCAL_CURRENCY (or CONVERT_TO_FOREIGN_CURRENCY if your company has rupees as local currency)
For more information, see [SAP Library: quantity conversions api - units of measures|http://help.sap.com/saphelp_nw70/helpdata/en/2a/fa013c493111d182b70000e829fbfe/frameset.htm ], and
Sandra
‎2011 Nov 04 8:34 AM