Power Automate - Update Child record when a parent record is updated by using power automate in MS Dynamics CRM Trigger of the flow List Contacts Related to the Account Update Contacts On the Contacts entity map fields on the contact form from the account which field need to be updated in the account form, here I have mapped the address field from account to contact when the address on the Account is updated then the address on the Contact will also be updated.
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Xrm.Sdk; using System.ServiceModel; namespace MyPlugins { public class TaskCreate : IPlugin { public void Execute(IServiceProvider serviceProvider) { // Extract the tracing service for use in debugging sandboxed plug-ins. // If you are not registering the plug-in in the sandbox, then you do // not have to add any tracing service related code. ITracingService tracingService = (ITracingService)serviceProvider.GetService(typeof(ITracingService)); // Obtain the execution conte...
Comments
Post a Comment