How to call Xrm.WebApi using TypeScript
A lot of projects come to a point where it gets necessary to get information from another entity within JavaScript (JS)/TypeScript (TS) to act…
A lot of projects come to a point where it gets necessary to get information from another entity within JavaScript (JS)/TypeScript (TS) to act…
Don’t be like me! This is the JavaScript: var uriClientLegacy = "?$select = cca_legacyservicefee, defaultpricelevelid & $filter=accountid eq " + clientLookupId; Xrm.WebApi.retrieveMultipleRecords("account", uriClientLegacy).then( function…
Using Xrm.WebApi needs you to be careful with the field names and what to use when. Especially, when you are dealing with Lookups. One…
The Xrm.WebApi client-side SDK has been around for a while now, but you may still be using a hand-built HTTP request to call the…