Hi,
We were getting the below error
<error>
<code>0x80040216</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
bye.
Discover more from Nishant Rana's Weblog
Subscribe to get the latest posts sent to your email.
