Get Bearer Token in Power Automate Flow

In this post, we will look at how to get a Bearer token in a Power Automate flow. First, we will create a new Instant flow in Power Automate: And

Dynamics 365 Web Resources

Web resources are different types of files that can be uploaded to Dynamics 365. You can add web resources to solutions. In clicking to add a new web resource, you…

Troubleshooting Issues Logging into USD

…resolve this, go to the folder: \AppData\Roaming\Microsoft\USD This folder contains several files, including the USD tokens: Rename the USD folder and restart USD. The folder will be recreated. Confirm the…

C#

…Code Generator OData Connected Service WCF Create a WCF Windows Service ORM Dapper Entity Framework Introduction Input/Output Write to Text File Console App Exit Codes Bat Files Windows Using the…

Introduction to Troubleshooting USD

…see verbose messages to determine where the error occurs. You can also write to the USD log files with TraceLogger. Debug. Use the USD debugger to view the error message….

Dynamics 365 Configuration Migration

for export complete: 2 files will be created: The ZIP file contains: Data.xml: To import a configuration, you can select the data.zip package and import into a destination organization using…

Dynamics 365, TLS 1.2 and How to Fix Your Apps

…TLS 1.2 on the Microsoft website here. Simulating the Problem First, create a new Console app: Change the .NET version to 4.5.2: Now add code. We will do something simple,…

Power Virtual Agents Glossary and Terminology

Below is a glossary and list of terminology for Power Virtual Agents in the Microsoft platform. Topic – a subject that the bot understands. New topics can be created, and

Set and Retrieve a Lookup Id and Value using Xrm.WebApi

…lookup[0] = new Object; lookup[0].id = p[“_ownerid_value”]; lookup[0].name = p[“_ownerid_value@OData.Community.Display.V1.FormattedValue”]; lookup[0].entityType = p[“_ownerid_value@Microsoft.Dynamics.CRM.lookuplogicalname”]; Xrm.Page.getAttribute(“ownerid”).setValue(lookup); } If we look up Alan’s systemuser record to get the Guid and name, we can…