Thursday, November 26, 2015

Recalculate Rollup Fields - Dynamics CRM 2015 Programatically (Plugin)

using Microsoft.Crm.Sdk.Messages;
      


CalculateRollupFieldRequest CRF = new CalculateRollupFieldRequest
                    {
                       Target = new EntityReference("ParentEntityName", ParentEntityNameID),
                        FieldName = "FieldName"
                    };

                  

 CalculateRollupFieldResponse response = (CalculateRollupFieldResponse)service.Execute(CRF);

Unexpected Error When Replying or Forwarding an Email

Recently came across an interesting issue from one of my clients, they were working fine since around 2 years ago with no issues, using Dyn...