You need to sign in to do that
Don't have an account?
cgoss
How do I get the Org's currency code in Apex?
From the API, you can do a getUserInfo() request, and the result contains a property for orgDefaultCurrencyIsoCode. This is the value of the currency for the organization in a single-currency org.
Any idea how I can get this value from Apex? The UserInfo system method does not have the same method, and UserInfo.getDefaultCurrency() returns null in a single-currency org.
Have you tried this :
User.CurrencyIsoCode
User.DefaultCurrencyIsoCode
Yes, I've tried all the System context objects, as well as using the explorer to check the DB for users and Organization, to no avail.
Any Solutions??
I stucked with the same problem...
Anu
"currency symbol to use for displaying currency values. Applicable only when organizationMultiCurrency is false."
https://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_getuserinfo_getuserinforesult.htm