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
KajaKaja 

Urgent- Please help me how to fetch ConversionRate from CurrencyType object

Hello Sir/Madam,
 
I am trying to fetch the conversion rate from sfdc query and use it to calculate currency rate in my java application.
Looks like CurrencyType is not xml object unlike Opportunity , Account !
 
In java,
 
 String currQuery = "Select CurrencyISOCode, ConversionRate from CurrencyType where CurrencyISOCode='USD'";
QueryResult qrCurr = sfdcCtrl.query(currQuery );
 
how  do i retrieve the value of ConversionRate from the above query?
 
Please help me,as this is very urgent
 
Awaiting for the response