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


Day 23: Creating New Records Programmatically with JavaScript in Dataverse / MSCRM

In this Blog, we will see how to Create New Records Programmatically with JavaScript in Dataverse / MSCRM var record = {}; record.bosch_day...