Requirement: Let’s say we want to validate customer selection in opportunity record and if user selected inactive record, we want to display them an error alert to select another customer. Solution: We can implement this requirement using server side or client side code, in this post we are going to provide sample code for checking account status and throw alert… Read more »
If you are a .Net developer and trying to get your hands on in Dynamics CRM 2015 development or you are new to Dynamics CRM 2015 development and looking for free Dynamics CRM technical session, join us on CSharp Corner’s Delhi Chapter on 1 Oct 2015 at 7.30 PM IST to 9 PM IST for “Getting Started with Dynamics CRM 2015 Sitemap“,… Read more »
Some time you may get requirement to use price list based on the customer selected in opportunity or order. In this post we are going to provide steps to implement this requirement. If you are new to price list I will suggest you to first go through this KB which will help you to understand price list. To implement this… Read more »
We have a demo virtual machine for CRM 2015. Today, when I tried to create new organization in our demo virtual machine, I got below strange error message saying “The specified SQL Server instance must run on 64-bit Windows Server 2008 or Windows Server 2008 R2” which does not make any sense to me. Then I tried to troubleshoot this… Read more »
Requirement : While deactivating account record, we need to get deactivation comments from user before deactivating account. Solution: We can implement this requirement using different ways, in this post we are going to provide out of the box solution for this requirement. We can achieve this using dialog, if you are new to dialogs I suggest you to refer https://msdn.microsoft.com/en-us/library/gg509010.aspx first, where you can learn… Read more »
We can change display name of the entity fields easily by editing field display name property. But we can’t change fields label used in address composite controls. In this post we are demonstrating how to relabel composite control fields. Requirement:Relabel city field in address composite control in account entity. Note: You can’t change field logical name once it is created. Solution:… Read more »
Did you ever get requirement to rearrange existing buttons, there was one question today in Microsoft Dynamics CRM Community Forum where user wanted to rearrange existing buttons so thought of writing a quick post so that it can help others. Requirement :Rearrange existing command or ribbon button for entity in CRM, Let’s say we want to rearrange buttons on Activities, so… Read more »
There was one question today in Microsoft Dynamics CRM Community Forum, where user was looking for the information about what is the use of Entity input parameter in Actions, so thought of writing a post, so that it can help others. About Actions: Microsoft Dynamics CRM actions allows us to define our own custom events/messages, similar to existing standard events like Create,update,delete. Actions… Read more »
Another useful feature that is introduced in Dynamics CRM 2015 update 1 is, support for upsert operation. Upsert allows us to create or update record in CRM in single call, so we don’t need to bother if there is any existing record with the same keys or combination of other fields. This is specially useful in case of integration, when… Read more »