Posted by: Nishant Rana | September 21, 2009

0×80040216 An unexpected error occurred Platform while sending mail through custom workflow activity in CRM 4

Hi,

We were getting the below error

<error>

  <code>0×80040216</code>

  <description>An unexpected error occurred.</description>

  <type>Platform</type>

</error>

on our custom workflow activity for the following requests

SendEmailRequest

SendEmailFromTemplateRequest

This is how we were creating the CrmService instance

workflowContext.CreateCrmService(true);

however later we changed it to

workflowContext.CreateCrmService();

and the error got resolved.

 

CreateCrmService(bool asAdminUser):

Both of these methods return an ICrmService interface. This is optimal way to interact with CRM to execute the various requests in the CRM web service. The overload allows you to execute with more privileges if needed; just in case the current user doesn’t have the required privileges to perform some action in your custom business logic.

More on IWorkflowContext interface

http://blogs.msdn.com/crm/archive/2009/06/24/microsoft-dynamics-crm-4-0-iworkflowcontext-interface.aspx

bye.


Leave a response

Your response:

Categories