Enrutar registros que no sean de casos mediante un complemento
Puede desencadenar el enrutamiento para registros que no sean de casos, como mensajes de correo electrónico mediante programación, utilizando la Interfaz de complemento.
Puede usar el siguiente código de muestra en su aplicación de consola (.NET framework) de Visual Studio. El código verifica las siguientes dos condiciones y, si se cumplen, activa la acción msdyn_ApplyRoutingRuleEntityRecord.
- Si el mensaje del servicio web es para crear un registro
- Si el registro es un mensaje de correo electrónico.
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;
}
}
}
}
}
}
}
Consulte también
Información general sobre el enrutamiento
Configurar el enrutamiento de registros
Enrutar registros manualmente
Enrutar registros automáticamente usando un flujo