I recently needed to set currency for a record in CRM in my plugin. It sounded a good piece of code to refer to my blog as it is often needed. Here it goes:
EntityReference currencyType = new EntityReference(); currencyType.Id = “(The Guid Of The Currency Type Goes Here)”; currencyType.LogicalName = “transactioncurrency”;
2 thoughts on “Set Currency Programmatically : CRM 2011/2013/2015”
[…] For JS reference refer … Continue reading Set Currency Programmatically : CRM 2011/2013/2015 Read Complete Post and Comments Tags: Microsoft Dynamics CRM […]
[…] For JS reference refer … Continue reading Set Currency Programmatically : CRM 2011/2013/2015 Read Complete Post and Comments Tags: Microsoft Dynamics CRM […]
Thanks Deepesh, it saved my time!