Running Dynamics GP on the Microsoft Cloud

…over time, more and more companies are making the move. I remember when salespeople were worried about putting all their prized contacts online. Companies like Salesforce.com changed their way of…

Contact

Feel free to say hi at carl@carldesouza.com….

Building a PCF Control that calls Context WebApi

…our index.ts, which will create a new account record: context.webAPI.createRecord(“account”, { name: “Sample Account” }).then( function (success) { console.log(“Account created with ID: ” + success.id); }, function (error) { console.log(error.message);…

Restricting Attachment Types in Dynamics 365

In Dynamics 365, users have the ability to attach files through notes. For example, on the Account form, clicking on Notes the user can select a file to attach to…

MSBUILD You Must Provide a Value Expression Following the Operator

command msbuild in PowerShell : “C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\amd64\MSBuild.exe” /t:restore In order to resolve this, run the command with an ampersand before it: & “C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\amd64\MSBuild.exe”…

Unified Service Desk – Client Folders

…like the following: The tokens.dat file looks something like: You may also see files looking like: ID_USDUSRProfile_1234.usdPrf If you run into issues logging in, you may want to rename this…

12 Traits of an Awesome CTO

…leave your company lagging behind the competition, or even worse. The CTO is an executive that guides the company’s technical direction, oversees product development, and sits in the boardroom with…

Unified Service Desk Patterns

…a new Windows or WPF application that is tightly integrated with USD. Create a UII Application You need to guide an agent through a series of questions when a call…

Using Fiddler with Web API

In this post, we will examine using Fiddler to send requests and receive responses from an ASP.NET Web API. I have a Web API sample that looks like the following:…