https://support.microsoft.com/en-us/kb/2567984
Author: Cornel Croitoriu
Microsoft Dynamics CRM 2015 – Filtered Lookup for “Add Existing…” Button of a CRM N:N View – SubGrid
There was a situation where it was required for a sub-grid with a view in relation N:N with the current entity that was edited. This can be easy achived by adding a N:N relationship and then adding a view and select “related only” for the sub-grid that is added to the form that is being… Continue reading Microsoft Dynamics CRM 2015 – Filtered Lookup for “Add Existing…” Button of a CRM N:N View – SubGrid
Microsoft Dynamics CRM 2015 Overview
A quick review about the latest version of Microsoft Dynamics CRM can be found here.
Activity typed Entity – Display in Activity Menus
Upon creating a custom entity as Activity Entity and not checking the “Display in Activity Menus” option, there is no supported way to alter this. However, here is the unsupported approach (in SQL): UPDATE Entity SET ActivityTypeMask = 1 WHERE EntityId = (SELECT EntityId FROM Entity WHERE Name = ‘custom_entity_schema_name’) After this minor adjustment, a… Continue reading Activity typed Entity – Display in Activity Menus
Fixing Ajax “No Transport” error
Sometimes, making an $.ajax request to a web service might return the “No Transport” error, if the web service is hosted in a different domain. To solve this issue, you need to set the CORS support on true: $.support.cors = true; before you make the $.ajax request and the following property on the request level:… Continue reading Fixing Ajax “No Transport” error
WCF Service Bindings – web.config
When creating a web service, the following configured bindings should be taken into consideration, based on the endpoint you are using (soap, rest etc.), to avoid large parameter structures not being processed or timeout issues: Also, the following runtime tag should look like this: Another best practice to avoid potential “System.InvalidOperationException: The JSON request was too large… Continue reading WCF Service Bindings – web.config
Filtering Relationships in CRM (N:1 & N:N)
Hello guys, Long time no see. Hope you will find this brief post useful. To add custom filters to a N:1 relationship (lookup) in Microsoft Dynamics CRM (2011 and above), please read this post. To filter a N:N relationship (many to many), please read this post (for CRM 2013) or this post (for CRM 2011).… Continue reading Filtering Relationships in CRM (N:1 & N:N)
Useful CRM 2011 .NET extension methods
Hello guys, This will be pretty straight forward. In order to use the extension methods below in C# for CRM 2011 development, such as plugins, custom workflow actions, windows services or any other type of CRM SDK based application, you need to follow these steps: 1. Download the latest CRM SDK here. 2. Navigate to… Continue reading Useful CRM 2011 .NET extension methods
Comeback
Hello guys, Long time no talk 🙂 But don’t worry, we’re back on track, with a new team of focused authors. Soon to come: – CRM 2011 related posts (C# .NET / SDK / JavaScript) – Custom Chat Client (C# .NET sockets) Stay tuned! Cornel