Session 3 : Microsoft Button Flows Integration

What are button flows?1.There are many repetitive tasks that we all wish we could run with just a tap of a button. 2.Create buttons so that we can easily run repetitive tasks from any place, at anytime via your mobile.3.Executing buttons saves our time and, since the tasks they perform are automated, there will be less errors than if you manually did them.Example, •Quick email to team. •Trigger the...

Session 2: Automated MS Flows Integrations

What are the different types of Flows ?•Automated flows•Button flows•Scheduled flows•Business process flowsConnectors:  MS Flow need access to data, services, and systems. we can use prebuilt connectors that are designed to connect, access, and work with your data.Triggers:  Many connectors provide triggers that fire when events or new data meet specified conditions. Actions:  ...

Updating a record from JavaScript using the Xrm.WebAPi in Dynamics 365 V9

Summary : Updating a record from JavaScript using the Xrm.WebAPi in Dynamics 365 V9 Now let’s update a record Syntax: Xrm.WebApi.updateRecord(entityLogicalName, id, data).then(successCallback, errorCallback); ***Code starts here*** var entityData =                 {                    ...

Creating a record from JavaScript using the Xrm.WebAPi in Dynamics 365 V9

Create Record: Let’s see how we can create a “Lead” record using newly introduced  Web API calls in Dynamics 365 V9 Xrm.WebApi.createRecord(“entityLogicalName”,data).then(successCallback,errorCallback); // This line of code is required if you are creating from HTML webresource. <script src="ClientGlobalContext.js.aspx" type="text/javascript"></script> var entityData =                 {                     "subject":...

How to Download Plugin Registration Tool from nuget Using Power Shell Script in Dynamics 365 Version 9.x

Summary :  How to Download Plugin Registration Tool Using Power Shell Script in Dynamics 365 Version 9.x  1. Start menu, Search for Windows Powershell and open. 2. Navigate to the folder you want to install the tools to. For example (d:/Tools) 3. Execute the following Script $sourceNugetExe = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" $targetNugetExe = ".\nuget.exe" Remove-Item...

Virtual Entity feature in Dynamics 365 V9.x Part 2

Create a Virtual Entity Data Source Login to Dynamics 365 click Settings -> Administration and then Virtual Entity Data Source to open the Data Sources grid. In the Data Sources grid click on New, to open the Select Data Provider window In Select Data Provider window select OData v4 Data...

RPA: Blue Prism Training Course Content

                                              RPA: Blue Prism Training Content Introduction to Blue Prism Blue Prism’s Robotic Automation Process Studio Running a Process Basic Skills Process Validation Decision...

Virtual Entity feature Pros and Cons in Dynamics 365 V9.x.

Summary : Virtual Entity feature in Dynamics 365 V9.x. Virtual Entity helps us to get data from External network without any client-side and server-side approaches. It helps admins and system customizers in administration and configuration. Virtual Entity looks in D365 to user as a regular entity but contains...

Xrm.Utility JavaScript methods in Dynamics 365 Version 9.x

Xrm.Utility:  Method Description closeProgressIndicator Closes a progress dialog box. Xrm.Utility.closeProgressIndicator() getAllowedStatusTransitions Returns the valid state transitions for the specified entity type and state code. Xrm.Utility.getAllowedStatusTransitions(entityName,stateCode).then(successCallback, errorCallback) getEntityMetadata ...

Popular Posts