Set Currency Programmatically : CRM 2011/2013/2015

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”;

entity.Attributes.Add(“transactioncurrencyid”,currencyType);

For JS reference refer my older blog post: Click here

Hope it helps!

Advertisement

2 thoughts on “Set Currency Programmatically : CRM 2011/2013/2015

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s