Wednesday, June 17, 2020

Trigger Custom Action using c#

// Calling the Action - new_EnquiryCreateProject
OrganizationRequest req = new OrganizationRequest("new_EnquiryCreateProject");
req["ProjectName"] = "This is a test operation for using Actions in CRM 2013 ";
req["Target"] = new EntityReference("new_enquiry", enquiryObj.Id);

//execute the request
OrganizationResponse response = service.Execute(req);

How do I patch a Currency field value from a Canvas Power App to Dataverse?

  Introduction: In this blog, we will see how to patch a Currency field value from a Canvas PowerApps to Dataverse or MSCRM Implementation S...