Querying Order By Link Entity with Fetch XML

If you want to sort the results based from linked data, we can add order by link entity’s attribute like this :

 

 

Read More

CRM Tips : Javascript Stop Form Saving

If you want to control your process on save event, you can use preventDefault method.

Dont forget to click “Pass execution context as first parameter” on Form Properties.

crm on save javascript

preventDefault : Cancels the save operation, but all remaining handlers for the event will still be executed.

 

Save event arguments (client-side reference)

https://msdn.microsoft.com/en-us/library/gg509060.aspx

Read More

ExecuteMultipleRequest For Bulk Operation

You can use the ExecuteMultipleRequest message to support higher throughput bulk message passing scenarios in Microsoft Dynamics CRM 2015 and Microsoft Dynamics CRM Online 2015 Update, particularly in the case of Microsoft Dynamics CRM Online where Internet latency can be the largest limiting factor. ExecuteMultipleRequest accepts an input collection of message Requests, executes each of the message requests in the order they appear in the input collection, and optionally returns a collection of Responses containing each message’s response or the error that occurred. Each message request in the input collection is processed in a separate database transaction.ExecuteMultipleRequest is executed by using the IOrganizationService.Execute method.

  • For Online CRM, maximum Batch Size is 1000. So, for Online CRM, maximum 1000 requests can be executed at a time.
  • For On Premise, Batch Size can be increased.

 

 

 

Here is another example of changing the State and Status of records by ExecuteMultipleRequest.

 

More info : https://msdn.microsoft.com/en-us/library/jj863631.aspx

Read More

Trigger a Workflow on CRM 2015 using C#

If you want to run/trigger a workflow, you can execute a workflow programmatically with following request :

Also this request is supported by Microsoft Dynamics CRM 2015 and Microsoft Dynamics CRM Online 2015 Update.

Source : https://msdn.microsoft.com/en-us/library/gg309600.aspx

Read More

Save the form with Callback functions on CRM 2015

Saves the record asynchronously with the option to set callback functions to be executed after the save operation is completed.

crm-2013-client-api

With Microsoft Dynamics CRM Online 2015 Update 1 or later you can also set an object to control how appointment, recurring appointment, or service activity records are processed.

Open different or same entity form after save :

Reload form after save

window.location.reload(true); or location.reload(); or window.location = document.url;

These scripts cannot work for CRM 2013 and higher version. So you have to use callback functions after saving.

Source : https://msdn.microsoft.com/en-us/library/dn481607.aspx

Read More

How to get the type of attribute on CRM using Javascript ?

getAttributeType

Returns a string value that represents the type of attribute.

This method will return one of the following string values:

  • boolean
  • datetime
  • decimal
  • double
  • integer
  • lookup
  • memo
  • money
  • optionset
  • string

getFormat

Returns a string value that represents formatting options for the attribute.

This method will return one of the following string values or null:

  • date
  • datetime
  • duration
  • email
  • language
  • none
  • phone
  • text
  • textarea
  • tickersymbol
  • timezone
  • url

 

Application Field Type Format Option Attribute Type Format Value
Date and Time Date Only datetime date
Date and Time Date and Time datetime datetime
Whole Number Duration integer duration
Single Line of Text E-mail string email
Whole Number Language optionset language
Whole Number None integer none
Single Line of Text Text Area string textarea
Single Line of Text Text string text
Single Line of Text Ticker Symbol string tickersymbol
Single Line of Text Phone string phone
Whole Number Time Zone optionset timezone
Single Line of Text Url string url

Source : https://msdn.microsoft.com/en-us/library/gg334409.aspx#BKMK_getAttributeType

Read More

Microsoft Dynamics CRM 2015 Resources for CRM Developers

You can find the most used resources in this post. There are also more resource if you know please specify in comments.

Also you can find all resources on Guido Preite’s blog for all version.

Microsoft Dynamics CRM 2015 Software Development Kit (CRM 2015 SDK)

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=44567

CRM Help & Training

https://www.microsoft.com/en-US/dynamics/crm-customer-center/

CRM eBooks and Videos

https://www.microsoft.com/en-US/dynamics/crm-customer-center/ebooks-and-videos.aspx

Microsoft Dynamics CRM 2015 Update 1 (KB 3056327)

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=46908

Microsoft Dynamics CRM 2015 Update 0.1 (KB 3010990)

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=46552

Microsoft Dynamics CRM 2015 for Microsoft Office Outlook (Outlook Client)

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=45015

XrmToolbox for Dynamics CRM 2013/2015

http://www.xrmtoolbox.com/

Microsoft System Center Management Pack for Dynamics CRM 2015

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=46371

Microsoft Dynamics CRM 2015 E-mail Router

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=45017

Microsoft Dynamics CRM 2015 Custom Code Validation Tool

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=45535

Windows Identity Foundation for Windows 7, 2008, 2008 R2, and Vista

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=17331

Microsoft Dynamics Marketing SDK

Download link: https://www.microsoft.com/en-us/download/details.aspx?id=45023

Microsoft Dynamics Marketing 2015 Resources

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=43108

Microsoft Dynamics CRM 2015 Report Authoring Extension (CRM 2015 BIDS)

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=45013

Microsoft Dynamics CRM 2015 List Component for Microsoft SharePoint Server 2010
and Microsoft SharePoint Server 2013 (for multiple browsers)

Download link: http://www.microsoft.com/en-us/download/details.aspx?id=45018

Compatibility with Microsoft Dynamics CRM 2015

https://support.microsoft.com/en-us/kb/3018360

Read More

CRM 2015 .NET Framework 4.5.2 Version

The type or namespace name ‘Xrm’ does not exist in the namespace ‘Microsoft’ (are you missing an assembly reference?)

 

You have to change .NET Framework version in your projects, if you use CRM 2015

If you say “.NET Framework 4.5.2 not showing in Visual Studio” or “How to select .NET 4.5.2 as a target framework in Visual Studio ? “, follow the links below.

NET Framework 4 5 2 Visual Studio

You can find some helpful links about that :

Compatibility with Microsoft Dynamics CRM 2015

https://support.microsoft.com/en-us/kb/3018360

Microsoft.Xrm.Sdk version : 7.0.0.0

CRM 2015 Framework Compability

Download .NET Framework 4.5.2 Developer Pack

https://www.microsoft.com/en-us/download/details.aspx?id=42637

This pack contains the following components :

  • .NET Framework 4.5.2
  • .NET Framework 4.5.2 Multi-Targeting Pack: Contains the reference assemblies needed to build apps that target the .NET Framework 4.5.2
  • .NET Framework 4.5.2 Language Packs
  • .NET Framework 4.5.2 Multi-Targeting Pack Language Packs: Contains the IntelliSense files to display help while building apps that target the .NET Framework 4.5.2 through Visual Studio and third party IDEs.

Visual Studio and .NET Framework

https://msdn.microsoft.com/en-us/library/dn481609.aspx

Moving to the .NET Framework 4.5.2

http://blogs.msdn.com/b/dotnet/archive/2014/08/07/moving-to-the-net-framework-4-5-2.aspx

 

 

Read More

CRM Online 2015 Debugging

How to Debug CRM Online 2015 Plugin ?

We use Plugin Registration Tool for deployment and debugging because there is no CRM Developer Toolkit for CRM 2015. If you dont find this tool you can download latest CRM 2015 SDK. Follow the steps to debug plugins registered for online version.

Connect to Microsoft Dynamics CRM Online 2015 Server

CRM Online 2015 Debugging

 

Install Profiler in the Plugin Registration Tool

CRM 2015 Online Debugging

Select a Plugin step and click Start Profiling

CRM Online 2015 Debugging

Perform the operation which trigger the plugin in CRM

Here creation of Account which trigger the plugin.

Click Download Log File and Save this file

CRM Online 2015 Debugging

The Plugin throws an exception and Business Process Dialog is displayed, click Download Log File and save this file.

Click Debug in the Plugin Registration Tool

Now debug dialog will open and select the file you downloaded ErrorDetails.txt for Profile Location. Then select the Plugin assembly dll where dll and pdb files available to debug.

CRM Online 2015 Debugging

Attach the PluginRegistration.exe process in Visual Studio

Open the plugin solution in Visual Studio and then place the break point to debug, attach the debugger to PluginRegistration.exe process.

CRM Online 2015 Debugging

Click Start Execution in the Plugin Registration Tool’s Dialog

CRM Online 2015 Debugging

Now Debugger will start debugging from the break point in the Visual Studio.

CRM Online 2015 Debugging

 

 

Also I recommend you to read these posts and video :

I reviewed the article by Guru Prasad which was really helpful in getting this article together.

Read More

Dynamics CRM 2013 Developer Toolkit for Visual Studio 2013

 

Normally there is no CRM Developer Toolkit installation file for Visual Studio 2013. But you can install it with some customization.

s2

  • Firstly Download the installation files.
  • Open Visual Studio folder and Run Microsoft.CrmDeveloperTools.vsix file
  • s3
  • Run the crmSDKFix.reg file
  • Copy contents of the CRM MSBuild folder to “C:\Program Files\MSBuild\Microsoft\CRM” or “C:\Program Files (x86)\MSBuild\Microsoft\CRM”
  • If there is no CRM folder in MSBuild folder, you can create this CRM folder.
  • Now open Visual Studio and you can create CRM Toolkit Project.

Read More