Teilen über


Weiterleiten von Nicht-Fall-Datensätzen mit einem Plug-In

Sie können das Routing für Nicht-Falldatensätze wie E-Mail-Nachrichten programmgesteuert auslösen, indem Sie die Plugin-Schnittstelle verwenden.

Sie können den folgenden Beispielcode in Ihrer Konsolen-App (.NET-Framework) von Visual Studio verwenden. Der Code prüft auf die folgenden zwei Bedingungen und wenn sie erfüllt sind, löst er die msdyn_ApplyRoutingRuleEntityRecord Aktion aus.

  • Ob die Web-Service-Nachricht einen Datensatz erstellen soll
  • ob der Datensatz eine E-Mail-Nachricht ist.
public class SamplePlugin : IPlugin 
{ 
    public void Execute(IServiceProvider serviceProvider) 
    { 
          // Obtain the tracing service 
        ITracingService tracingService = (ITracingService)serviceProvider.GetService(typeof(ITracingService)); 
        // Obtain the execution context from the service provider 
        IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext)); 
            // Check if create message 
            if (context.MessageName.ToLower().Equals("create")) 
            { 
                // The InputParameters collection contains all the data passed in the message request 
                if (context.InputParameters.Contains("Target") && context.InputParameters["Target"] is Entity) 
                { 
                    // Obtain the target entity from the input parameters 
                    Entity entity = (Entity)context.InputParameters["Target"]; 
                    // Target is an email 
                    if (entity.LogicalName.ToLower().Equals("email")) 
                    { 
                        try 
                        {  
                            // Obtain the organization service reference that you'll need for web service calls 
                            IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory)); 
                            IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId); 
                            // Execute msdyn_ApplyRoutingRuleEntityRecord request 
                            OrganizationRequest request = new OrganizationRequest("msdyn_ApplyRoutingRuleEntityRecord"); 
                            request["Target"] = new EntityReference("email", entity.Id); 
                            service.Execute(request); 
                        } 
                        catch (Exception ex) 
                        { 
                            tracingService.Trace("SamplePlugin: {0}", ex.ToString()); 
                            throw; 
                        } 
                    } 
                } 
            } 
        } 
    } 
}

Siehe auch

Übersicht über das Routing
Routing für Datensätze einrichten
Datensätze manuell routen
Datensätze mit Flow automatisch weiterleiten