Dynamics 365 CE and Azure Function Part 5

Introduction This is our last article in the series of Dynamics 365 and Azure function integration. In earlier articles, we discuss how we can delete blob storage after our azure function trigger executed. Now we are going to discuss how can we trigger azure function from Microsoft Flow. You can refer our earlier articles from following links Dynamics 365 CE… Read more »

Datetime zone issue in Liquid – Dynamics 365 Portals

Introduction This article is about the date time format and zone issue in Dynamics 365 Portal. Dynamics 365 CE store date time in UTC format in CRM DB and when you will display date field on Dynamics 365 Portals it will display same date which sometime leads to incorrect date & time. If you are facing same issue this article… Read more »

Fix Duplicate Record Found for Entity error – Dynamics 365 Portals

Introduction This article is about fixing “Duplicate Record Found for Entity error..” in Dynamics 365 Portals. Details Sometime Dynamics 365 CE display confusing error, for example recently one user got following error while assigning a Web Role to user This error seems confusing as it’s saying Duplicate error, but when I looked into this issue, I found this issue was… Read more »

Dynamics 365 CE and Azure Function Part 4

Introduction This is our fourth article in the series of Dynamics 365 and Azure function integration. In earlier articles, we discuss how we integration Dynamics 365 with Azure, using hard-coded credentials and using the server to server authentication. Now we are going to discuss how can we delete Azure blob after it is processed. You can refer our earlier articles… Read more »

Dynamics 365 CE and Azure Function Part 3

Introduction This is our third article in the Dynamics 365 and Azure series, in first article we discussed basic introduction about azure function and set azure function app. In second article we discussed how we can connect to Dynamics 365 organization using hard coded user name and password. Today we are going to discuss how we can get rid of… Read more »

Dynamics 365 CE and Azure Function Part 2

Introduction This is our second article in the Dynamics 365 and Azure series, in first article we discussed basic introduction about azure function and set azure function app. In this article we are going to discuss how we can read CSV file from blob storage and process it to create/update contact record in Dynamics 365. Let’s say we have following… Read more »

Page Redirect options in entity form Dynamics 365 Portals

Introduction This is common while working with Dynamics 365 Portals we need to setup page redirection. Sometimes we want to use existing query string parameter sometime we need to use a different parameter. Today I am going to discuss different options which can be used to set page redirection in entity form through configurations. Details Page redirection can be configured… Read more »

Dynamics 365 CE and Azure Function Part 1

Introduction This is our first article in the series, of Dynamics 365 and Azure function integration. We will be discussing how we can import data from CSV file to Dynamics 365 using an Azure function, during these series we will be discussing the following options, 1. Introduction to Azure Function 2. Connecting Azure function to Dynamics 365 3. Setup Server to… Read more »

Executing workflow from command button using Web API

Introduction In our earlier sample, we discussed how to call actions using Web API, today we are going to share sample code to execute workflow from command button using Web API. Requirement Let’s say we got some requirement to validate some logic on click of the command button and need to send email using workflow. Let’s see how we can do that…. Read more »

SystemUserAccessMode is not either of (NonInteractive, SetupUser)

While creating work order record, I got following error: “Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: The user with SystemUserId=2….. in OrganizationContext=5…… is not licensed, and its SystemUserAccessMode is not either of (NonInteractive, SetupUser)……..” First thing I checked if the current user Access Mode is not set to Administrative or non-interactive as the error message was saying, but it was… Read more »