Monday, January 18, 2021

Call WorkFlow MSCRM c#

Dear All,

Please find the below code for executing workflow request


ExecuteWorkflowRequest request = new ExecuteWorkflowRequest()

{

WorkflowId = new Guid(WORKFLOWGUID),

EntityId = loopGetQuote.Id

};

// Execute the workflow.

ExecuteWorkflowResponse responses = (ExecuteWorkflowResponse)service.Execute(request);


How to Retrieve Security Role based on Access in Dataverse using FetchXML ?

  Introduction: In tis blog, we will see how to Retrieve Security Role based on Access in Dataverse using FetchXML ? Implementation Steps: N...