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
HDoshi.ax1738HDoshi.ax1738 

How to get Corporate currency value using SOQL query?

Hello,

 

I want to retrieve Corporate currency value using SOQL query.

 

I have checked Organization object - it has information for Locale & Language but it doesn't have information for Corporate Currency value.

 

How can I retrieve Corporate currency value?

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
sandeep1989sandeep1989

HI Doshi

 

CurrencyType ct : [select conversionrate, isocode, iscorporate from CurrencyType where iscorporate = true]
       isoCode = ct.isocode;

 

All Answers

sandeep1989sandeep1989

HI Doshi

 

CurrencyType ct : [select conversionrate, isocode, iscorporate from CurrencyType where iscorporate = true]
       isoCode = ct.isocode;

 

This was selected as the best answer
HDoshi.ax1738HDoshi.ax1738

Thanks. I implemented the same way.