Tuesday, September 26, 2017

Custom Dynamics CRM Integration with SharePoint (Tested on Dynamics 365 Online)


Scenario:
Requirement is that there must be Document type with each document, so that when document is uploaded from crm to sharepoint the document type can be tracked.
One solution can be to create a field (text field / option set) in CRM & SharePoint and mapped so that when document is uploaded the filed can be filled. But this solution was not found after hours of effort and searching for SharePoint.

One solution can be to create folder as per each Document Type in respective record. This will give option to upload document using CRM in respective site location which will represent respective folder in SharePoint.

Thursday, September 21, 2017

Custom XRM Library: Enhance functions

Custom XRM Library to enhance the functionality of xrm functions. This library is a small effort from my side. This includes validations and avoid null reference exceptions in javascript.

I am improving it and planning to add more functions and improvements.

Download

Web API retrieve Specific Account all fields


   var customerid = ""; // Pass account guid here or get from context as per your logic.

    // replacing brackets if found in id

        customerid = customerid.replace("{", "");
        customerid = customerid.replace("}", "");

Asp.Net MVC (5) - Exception Filter - HandleError

Applicable on Asp.Net MVC5 HandleError Filter This belongs to Exception Filters category (Authentication Filter, Authoriz...