- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2023 06:48 PM
I'm working on the standard change proposal module and after approval or rejecting.. I get this error..
"StdChangeUtils undefined, maybe missing a global qualifier"
I can't find anything on where this is coming from. Please help!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2023 08:51 PM
Hi @paradise624 ,
Are you calling the StdChangeUtils from scoped application? Then update below line as
var StdChangeUtils = new global.StdChangeUtils();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2023 08:51 PM
Hi @paradise624 ,
Are you calling the StdChangeUtils from scoped application? Then update below line as
var StdChangeUtils = new global.StdChangeUtils();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2023 05:38 AM
Thanks! That worked..