function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SetupForceSetupForce 

ConversionRate from CurrencyType on Opportunity

Hi
 
I have multicurrency activated in my org (non advanced) and so the current exchange rates are stored in the CurrrencyType object.
 
We are global so opportunities are stored in the local exhange rate.  GBP, EUR, CHF etc. and the corporate currency is set as USD.
 
I need to be able to record an amount (in a new field) on the opportunity in USD but cannot access the CurrencyType object in which to create a formula with the ConversionRate to the local amount field.
 
Has anyone any "out of the box" solutions as it looks as though I'm going to have to do this in APEX code which seems a little unneccessary.
 
Regards
Paul
 
sandeep@Salesforcesandeep@Salesforce
Hi, 

Per my suggestion we can perform these sort of things in Apex better and then populate in desired field on record. 

Thanks 
Sandeep Singhal
Madhanprabhu Thangadurai 1Madhanprabhu Thangadurai 1
Hi,

Create an after insert & update trigger on Opportunity Object and do the conversion.

Thanks.