assign phone call using Plugin Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/assign-phone-call-using-plugin/ Microsoft Dynamics CRM . Microsoft Power Platform Mon, 24 Mar 2014 13:17:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 assign phone call using Plugin Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/assign-phone-call-using-plugin/ 32 32 176351444 Create Activity Of An Phone Call On Create of Contact Using Plugin In MSCRM 2011 2013 http://microsoftdynamics.in/2014/03/24/create-activity-of-an-phone-call-on-create-of-contact-using-plugin-in-mscrm-2011-2013/ http://microsoftdynamics.in/2014/03/24/create-activity-of-an-phone-call-on-create-of-contact-using-plugin-in-mscrm-2011-2013/#comments Mon, 24 Mar 2014 13:17:00 +0000 http://microsoftdynamics.in/2014/03/24/create-activity-of-an-phone-call-on-create-of-contact-using-plugin-in-mscrm-2011-2013/ using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Runtime.Serialization;using Microsoft.Xrm.Sdk;using Microsoft.Xrm.Sdk.Query; namespace ClassLibrary1{    public class Class1 : IPlugin    {        public void Execute(IServiceProvider serviceProvider)        {            IPluginExecutionContext context = (IPluginExecutionContext)             serviceProvider.GetService(typeof(IPluginExecutionContext));            IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));   ...

The post Create Activity Of An Phone Call On Create of Contact Using Plugin In MSCRM 2011 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Query;

namespace ClassLibrary1
{
    public class Class1 : IPlugin
    {
        public void Execute(IServiceProvider serviceProvider)
        {
            IPluginExecutionContext context = (IPluginExecutionContext)
             serviceProvider.GetService(typeof(IPluginExecutionContext));
            IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
            IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);

            Contact test = (Contact)service.Retrieve(context.PrimaryEntityName, context.PrimaryEntityId, new ColumnSet(true));

            PhoneCall phone = new PhoneCall();

            ActivityParty _from = new ActivityParty();
            _from.PartyId = new EntityReference(SystemUser.EntityLogicalName, context.UserId);

            ActivityParty _to = new ActivityParty();
            _to.PartyId = new EntityReference(Contact.EntityLogicalName, test.Id);

            phone.From = new ActivityParty[] { _from };
            phone.PhoneNumber = “9028170672”;
            phone.DirectionCode = true;   // true is for outgoing and false is for incoming
            phone.Subject = “phone call trial”;
            phone.To = new ActivityParty[] { _to };
            service.Create(phone);
        }

    }
}


SOURCE : JUST2CODE.IN
Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post Create Activity Of An Phone Call On Create of Contact Using Plugin In MSCRM 2011 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>
http://microsoftdynamics.in/2014/03/24/create-activity-of-an-phone-call-on-create-of-contact-using-plugin-in-mscrm-2011-2013/feed/ 1 2825