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
p999_dfsp999_dfs 

How to get ISOCode description from Currency Type Object

I want to display a list of all the active currency in my org and its conversion rates.

 

I am able to get it from CurrencyType object.

 

Select c.IsoCode, c.IsCorporate, c.IsActive, c.DecimalPlaces, c.ConversionRate From CurrencyType c

 

But I am not able to show the IsoCode description. If I look at the IsoCode properites then I can see all the currency descriptions aas picklist values but how can I display the currency name in my visualforce page.

 

This is very urgen, can someone please help!!!!!!

 

thanks

 

Best Answer chosen by Admin (Salesforce Developers) 
p999_dfsp999_dfs

<apex:outputField> for CurrencyType.IsoCode field.