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

Category: Dynamics 365 CRM

Using Solution Packager

Solution Packager is the best tool provided by customer to automate CRM Solution Build & Deploy. This tools comes with CRM Software Development Toolkit. This tool can reversibly decompose a Microsoft Dynamics 365 compressed solution file into multiple XML files and other files so that these files can be easily managed by a source control system. The…
Read more

Editable Grids in Dynamics 365

Dynamics 365 has a great feature called as Editable Grids. Here I will show you how to add an editable grid on an Customer form. Editable grids, one of the most highly requested features for Microsoft Dynamics 365, provide rich inline editing in main grids and sub-grids so you can update the information you need…
Read more

New Data Type called “Customer”

A new Data Type called as “Customer“is introduced in Dynamics 365 to have a lookup to either Account or Contact entity. In order to add a Customer type field, modify an existing form or create a new one, and add a new field. In the data type select from the drop-down Customer, as seen below. Remember…
Read more

Custom Workflow – Concepts

Concept Microsoft Dynamics 365 (online & on-premises) supports the registration and execution of custom workflow activities in addition to the out-of-box activities provided by Windows Workflow Foundation. Windows Workflow Foundation includes an activity library that provides activities for control flow, sending and receiving messages, doing work in parallel, and more. However, to build applications that…
Read more

TOP 20 Articles of year 2016

Here is a list of TOP 20 articles of the year 2016. Have a look for this list and Wish you a very special NEW Year 2017 to all of my beloved readers. All about Script Customization in CRM Retrieve More than 5000 records in CRM custom Code CRM Best Practices Create Sequential GUID CRM…
Read more

Dynamics CRM Exceptions

Welcome to another exciting article on Dynamics CRM. In this article we will discuss some common exceptions of Dynamics CRM and the ways to deal with these exceptions. While developing Dynamics extended projects like Plugins, Workflows, Batch jobs etc we face some exceptions in run-time. Errors in Dynamics CRM development & Solutions. The given key…
Read more

Dynamics 365 CRM Solutions

Welcome to another exciting post on Dynamics 365 (New brand name of CRM) Solutions. Here we will discuss in-depth about CRM Solutions with below points: Fundamentals of CRM Solution CRM Version Compatibility Matrix Solution Components Default Solution(System) & Custom Solution Un-managed & Managed Solution Solution Publisher Managed Properties Conflict Resolution : Merge & Top-Win Dependency…
Read more

Dynamics 365 CRM Plug-ins

This article will explain how we can be an expert writing and handling CRM plugins. As we know plugin is nothing but a custom business logic which gets injected into CRM platform to augment the default behavior of a specific process. Here we will discuss below points regarding CRM plugins. Plugin Concept Sample Task Build,…
Read more

The Future of Dynamics CRM

The best way to predict your future is to create it !!! I have came across a query from some of my friends that what is the future of Microsoft Dynamics CRM to be specific how the JOBs in this career will be demanding in future? But I did not have an answer because I…
Read more

Dynamics 365 CRM REST Snippets

REst is an important protocol to interact with CRM objects through javascript. Here I will discuss how to start REST codings using Dynamics CRM. Pre-requisites: Download the CRM SDK for your CRM version from here : Download SDK Here (Imp: Choose your correct version of SDK) Once you downloaded the SDK extract the package and you…
Read more

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

Javascript Best Practices

While Customizing CRM in client side you should follow the below best practices. Do not directly edit scripts in script editor window of CRM. Always use Visual studio to edit so that you can figure out the syntax errors properly. Limit the number of Script libraries your form references. Performance can lag when you view…
Read more

CRM Security Best Practices

Security Matrix in Dynamics CRM is a very crucial area to take special attention. In the machine.config and web.config configuration files you can determine whether debugging is enabled, and also if detailed error messages are sent to the client. You should make sure that debugging is disabled on all production servers, and that a generic…
Read more

Realtime workflow in CRM

Overview Similar to asynchronous workflows, real-time workflows can be used to model and automate real world business processes. They can optionally require user input, can start automatically based on specified event conditions, or can be started manually by a user. Real-time workflows are for business users, for example business analysts, to implement similar functionality to…
Read more

Inspiration from the Pre-Fall Collection

The hottest trend on the Spring/Summer 2016 runway, the slip dress stole the spotlight once more in the pre-Fall/Winter 2016-2017 collections. First made famous by Kate Moss in the Nineties, take a closer look at our favorite pre-Fall pieces. Morbi interdum mollis sapien. Sed ac risus. Phasellus lacinia, magna a ullamcorper laoreet, lectus arcu pulvinar…
Read more

Auditing in Dynamics CRM

Overview Organizations often need to be in compliance with various regulations to ensure availability of customer interaction history, audit logs, access reports, and security incident tracking reports. Organizations may want to track changes in Microsoft Dynamics CRM data for security and analytical purpose. Microsoft Dynamics CRM supports an auditing capability where entity and attribute data…
Read more

CRM Solution Entity Segments

Hello Friend!!! This is a tutorial explains an exciting feature on solution management (Solution Segmentation) in CRM 2016. With solution segmentation we can now export solutions with selected entity assets (fields, forms, views, etc.) rather than entire entities with all the assets. This helps a lot as previously if we were required to deploy a…
Read more

Open Google from CRM

Hello Friends, This tutorial will tell you how to open an external web page from your CRM system. Here We are customizing a CRM entity with some form script to open the page. Here you can learn below points. CRM Custom Solution Form Scripts Entity Customization Event Binding Open External URL from CRM Publishing Customization Check…
Read more

CRM 2016 Screen Walkthrough

Hello Friends, This tutorial is a walk though on the options available in new version of CRM 2016. Here we will discuss the the menu options available and the additional options.   Please check this video tutorial for the walk through. Thanks for watching. Please subscribe the YouTube channel for more tutorials.

Get The Look: Trip to the Maldives

Get the look egestas, ante et vulputate volutpat, eros pede semper est, vitae luctus metus libero eu augue. Morbi purus libero, faucibus adipiscing, commodo quis, gravida id, est. Sed lectus. Praesent elementum hendrerit tortor. Sed semper lorem at felis. Vestibulum volutpat, lacus a ultrices sagittis, mi neque euismod dui, eu pulvinar nunc sapien ornare nisl.…
Read more