Skip to main content

Posts

Showing posts from February, 2017

Create Lead CRM 2011 online using Webservice and Html 5 responsive Page

Hi Guys I am writing a new Article which is quite interesting, I use CRM 2011 Online version first time and got an idea, if we connect our company website contact us page to CRM Lead then we can improve our sale Here is the Example which I create Lead in CRM through simple asp.net website. I design this website to HTML 5 so, Website can open in any browser any mobile any tablet .I have tested in multiple Mobile Sets. This is best example of responsive application   Web Version Mobile Version How to Work? Back End Code   Hi Guys I am writing a new Article which is quite interesting, I use CRM 2011 Online version first time and got an idea, if we connect our company website contact us page to CRM Lead then we can improve our sale Here is the Example which I create Lead in CRM through simple asp.net website. I design this website to HTML 5 so, Website can open in any browser any mobile any tablet .I have tested in mul

Unable to log on to Microsoft Dynamics AX

Unable to log on to Microsoft Dynamics AX” error message when opening the AX client” Currently somehow the other I was unable to log on my local vm, and I used another user to log on and try to connect with dynamics Ax. I got the Error “Unable to log on to Microsoft Dynamics AX” error message when opening the AX client” On Searched found that have to made User as admin on Dynamics Ax and then log in with it. This scenario also occurred, when dynamics ax back restored on local vm. where Development environment user is not register in other environment. This is  two step process. First have to get User sid on domain. This is done by using power shell script. I used following script run in powershell  to get user sid. $AdObj = New-Object System.Security.Principal.NTAccount("AXAdmin") $strSID = $AdObj.Translate([System.Security.Principal.SecurityIdentifier]) $strSID.Value Copy the Sid and paste it in following SQL statement. update userinfo set networkdomain =

Duplicate Detection custom plugin C# Dynamics CRM 2016,2013,2011

using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Query; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DuplicateDetection {     public class Plugin : IPlugin     {         void IPlugin.Execute(IServiceProvider serviceProvider)         {             IPluginExecutionContext context             = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));             IOrganizationServiceFactory serviceFactory     = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));             IOrganizationService service                 = (IOrganizationService)serviceFactory.CreateOrganizationService(context.UserId);             ITracingService tracingService                 = (ITracingService)serviceProvider.GetService(typeof(ITracingService));             if (context.InputParameters.Contains("Target") && context.InputParameters["Targ

Startup Dynamics 365

Step 1: Visit the link for signup Dynamics 365 https://signup.microsoft.com/Signup?OfferId=bd569279-37f5-4f5c-99d0-425873bb9a4b&dl=DYN365_ENTERPRISE_PLAN1&Culture=en-us&Country=us&ali=1 Check All of these Enjoy the fantastic Dynamics 365 for 30 days trial :) You can download the sdk of dynamics 365 from the link below.