Skip to main content

Microsoft Dynamics CRM 2011 Tip 1




MS CRM Developer Tool Kit

The Developer Toolkit is a set of Microsoft Visual Studio 2010 integration tools focused on accelerating the development of custom code for Microsoft Dynamics CRM 2011 and Microsoft Dynamics CRM Online.
With the Developer Toolkit, you can do the following:
· Easily generate strongly typed proxy classes without having to run CrmSvcUtil.exe.
· Get access to entity and option set definitions within Visual Studio.
· Generate plug-in code so you can immediately begin to write code for business logic.
· Edit and register plug-ins without using the Plug-in registration tool.
· Create new web resources or extract existing web resources, add them to your solution, edit them, and deploy changes all within Visual Studio.
· Create and edit workflow and dialog processes from within Visual Studio.
· Create and deploy XAML workflows in Visual Studio.
· Get easy access to security role and field security profile information in Visual Studio.




Download CRM 2011 SDK :http://www.microsoft.com/en-us/download/details.aspx?id=24004





Comments

Popular posts from this blog

Case Resolution using Power Automate

Case Resolution using Power Automate 1. Create a flow, 2. Add a step to create a new record for Case Resolutions.  4. Give a Subject as per your case title, here in the example i gave it as Case Resolution 5. Resolution Type as Problem Solved . 5. Cases Reference to be added in the Case field. 6. Save the flow. When the below flow is run, it will create a Case Resolution Record and mark the case as resolved.

Debug Dynamics CRM Ribbon Javascript Code

Go to Internet Explorer Settings and uncheck the disable debug options as shown below Add debugger; with terminator as first line in your javscript function.  Once you have above steps done, clean all your browsing history and reload the form where you have this ribbon button.  Open Debugger from F12 when debugger will open it will load CRM in browser again.  Now when the javascript function is called, pointer will come at debugger to debug.  Enjoy CRMing...!!
Connect to Dynamics CRM Online V9 from a console application Using CrmServiceClient Nuget Package Required :  C# Code :  Extra Step in the connect code we have to add for CRMV9 :     ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; public   static   IOrganizationService  getCRMConnection() {   ServicePointManager . SecurityProtocol  =   SecurityProtocolType . Tls12;   var  connectionStringName  =   Config . ConnectionString . CRM;   var  connectionStringValue  =     ConfigurationManager . ConnectionStrings[connectionStringName] . ConnectionString;   var  crmConnection  =   new   CrmServiceClient (connectionStringValue);   return    ( IOrganizationService )crmConnection . OrganizationWebProxyClient  !=   null   ?    ( IOrganizationService )crmConnection . OrganizationWebProxyCli...