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.
Hope this helps.
--
Happy 365'ing
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");
});
}--
Happy 365'ing
Gopinath
No comments:
Post a Comment