Hi Everyone,
Today I was working on something and we need to get AppId in JavaScript. We all know it is available on URL and we can get it from there but we cannot really depend on URL as it is generated by Product and it might change.
After quick check, I found that we can easily get AppId using the below code.
var globalContext = Xrm.Utility.getGlobalContext();
globalContext.getCurrentAppProperties().then(
function success(app) {
console.log(app);
console.log(app.appId);
},
function errorCallback() {
console.log("Error");
});

Hope this helps.
—
Happy 365’ing
Gopinath.
Hi, how would you use that code to get the appId to a variable that you could use? You can see it in the console.log(), but you want to be able to assign the appId to a variable when you are creating the string.
LikeLike
Hi Andrew,
Just declare a variable in JavaScript and assign the value as below.
var vAppId = app.appId;
LikeLike