Author: Furkan Karacan
-
SharePoint Online API – Get Access Token with Client ID and Secret – Part 2
In Part 1 of this post we created our SharePoint add-in and added permissions to it. We now can start using the SharePoint Online API. With using PnP Framework library Add the PnP Framework library nuget package to use the below code: https://www.nuget.org/packages/PnP.Framework With using Postman appReg_clientId Your SharePoint add-in Client…
-
SharePoint Online API – Get Access Token with Client ID and Secret – Part 1
With Microsfot leaving basic authentication behind it is unsecure to use username and passwords anymore. Authentication with Client ID and Secrets is the suggested and secured method to use. We will look at how to do this for SharePoint Online API. First we will register an app on SharePoint site,…
-
Dynamics 365 – Switch Forms Dynamically by Using JavaScript | formselector
In CRM it is common that showing different forms to different user gropus. There might be some conditions that you check to switch and show different forms to users. For cases like these, formSelector() and navigate() functions save the day. formselector.items collection: A list of all the forms accessible to the…
-
Dynamics 365 – How to Show/Hide Sections and Form tabs
Just like attributes, tabs and sections are also controllers of the forms in Dynamics 365. You can apply same logic to show and hide those controls by using Javascript. For the tabs; you need to know unique name of the tab you are going to show/hide.For the sections, you need…
-
Dynamics 365 – Share-Unshare Records with Plugin or Custom Workflow Activity by using C#
In Dynamics 365, access privileges to records can be dynamically changed using Plugins or Workflows. This allows for sharing records with specific users or teams, depending on scenarios such as creating a new record or changing field values. This approach avoids the need to assign higher security roles and enables…
-
Dynamics 365 – Different Ways of Showing Form Level Error Messages – setFormNotification | setIsValid
Form notifications are useful when you want to prevent the user saving the form if the form fields do not meet the conditions. Say you have 2 date fields called “Start Date” and “End Date”. You want the records can only be saved if the “End Date” is bigger than…