Blog

Blog

How to get organization id with organization name in CRM 2011

How to get organization id with organization name in CRM 2011 To get an organization id with organization name in CRM 4.0 we used below static public string OrganizationId(string orgName){if (organizationIds == null)organizationIds = new Dictionary<string, string>();string organizationId = string.Empty;if … Read More

Featured Post

CRM 2011 get List of all Organizations and get url from organization details collection

CRM 2011 get List of all Organizations and get url from organization details collectionHow to get URL from list of organisations when getting data back from OrganizationDetailCollection Method to get list of OrganizationDetailCollectionpublic static OrganizationDetailCollection GetOrganizations(){string url = CrmServerConnection.GetMSCRMServerUrl(); if … Read More

Featured Post

CRM Difference between managed and unmanaged solution

Main differences between unmanaged solution and managed solution in MS Dynamics CRM Unmanaged Solution and managed solution In unmanaged solutions we can create components and customise as we want to where in managed we can restrict things Unmanaged solutions usually … Read More

Featured Post

Get OptionSet value and set OptionSet value in CRM 2015 Plugin

Below is an explanation how to get a value and label of an OptionSet field and set a value of an OptionSet field on the basis of lable in CRM 2015/2013 plugin. Let’s say we had two fields on our … Read More

Featured Post

Using Azure function with webhooks and updating Dynamics 365

We have a scenario where we want to call a third party API on update of a field on account entity in Dynamics 365, send some data to that API, then update Dynamics. To achieve above we will be using azure … Read More

Featured Post

Logic Apps For Each loop getting attribute value

Let’s say we have a logic app which gets some data in JSON and some of the data is in array{“Name”: “TestAPP”,”Detectors”: [{“@objectType”: “Detector”,”Name”: “”,”DetectorType”: {“@objectType”: “DetectorType”,”Name”: “Smoke”},”DetectorExpiryDate”: “2024-10-14T10:36:00″,”DetectorResults”: {“@objectType”: “PassFail”,”Name”: “Pass”},”DetectorLocation”: {“@objectType”: “Position”,”Name”: “Hall”}}]} In this example we have … Read More

Featured Post

Deploy Azure function from Visual Studio and connect to Dynamic 365/CRM

Today we are going to create a Logic App to pass some sample JSON data, do some basic steps in it, call Azure function from Logic App, connect to Dynamics 365 in azure function, create or update records in Dynamics … Read More

Featured Post

Logic App read content of a file from Azure Blob storage to save on FTP or One Drive

Let’s say we have a azure blob storage URL and we want to download contents of the file and store it somewhere, for example we could get a blob URL from a public or client environment and we want to … Read More

Featured Post

Logic App using Liquid template to transform JSON

In this example, we are going to use Liquid template to transform our JSON input. Let’s say we have a requirement where we get data in JSON format and we need to amend JSON before we could pass it to … Read More

Featured Post

Logic Apps have made developers’s life easy

If you are working in Dynamics 365 then most probably you have used or at least have heard about logic apps. We had an urgent requirement where needed to read some data from a CSV file, then send it third … Read More

Featured Post