Bhubaneswar, Odisha, India
+91-8328865778
support@softchief.com

Month: October 2016

Dynamics 365 : The Biggest News

I am very much thrilled for the release of Dynamics 365 which is scheduled to available on 1st November in India.This product comes with a common data model for all Microsoft Business apps under one roof. The pain for integration between Microsoft business products is solved in this new Avatar of Dynamics 365 suit. Dynamics 365 is…
Read more

What can be Customized in CRM

Dynamics CRM provides a flexible system to customize in a easy way. There are various components those which can be customized in CRM. I termed a word to remember all customization areas in an abbreviation form called as SSPUAT as explained below. Before I will jump to the customization and configuration scope lets discuss what…
Read more

CRM Testing Best Practices

Testing is the important part of every development project. Here we will discuss what are the best practices we should follow before delivering a project. Please follow the best practices for testing CRM projects. Honestly the Unit testing in Dynamics CRM Customization is underutilized by developers. But there are always a way to do unit…
Read more

CRM JavaScripts Form Validations

Here is some ready made JS function that we can use in our web pages or form. Validate a Mandatory Field [code language=”css”] function CheckRequiredFields() { if (document.getElementById("txtMobile").value== "") { alert("Value is Required !"); return false; } } [/code] Allow Only Numeric Values [code language=”css”] function IsNumericKey(e) { var inputvalue = window.event.keyCode; if (inputvalue >…
Read more

CRM Build & Release Best Practice

The below best practices should be followed while preparing build and release for Dynamics CRM application.   Please follow the below steps for Build Best Practice: Automatic Build preparation is recommended for CRM. here is a detailed step by step article in this regard. Use Solution Packager tool to Compress and Extract a solution zip file.  Check…
Read more

CRM Deployment Best Practice

While Deploying Dynamics CRM Solutions we should follow the proven best practices and some pre and post deployment check lists to ensure a proper deployment. The deployment best practices depends on the deployments you choose, as there are different considerations for each. As an overview, with Microsoft Dynamics CRM On Premises you would have to install,…
Read more

Exception Best Practice

Handling exceptions is very crucial in our dynamics projects. Handling exceptions is an important part of any development effort. Prevention is better then cure. As a developer I always try to prevent errors or exceptions but sometimes there will be exceptions beyond control so we have to handle this type of exceptions correctly. Handling Exceptions…
Read more