
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2018 12:13 PM
I am calling a script include using glide ajax from client script in a UI page. And strangely getting this error GlideAjax is not defined. Everything is in global scope. not sure about the reason of such an error
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2018 01:07 PM
Ok. I unchecked the Direct CheckBox and it seems to be recognizing GlideAjax Now
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2018 12:25 PM
Can you share your code ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2018 12:26 PM
var ga = new GlideAjax('DraftServiceCatalog');
ga.addParam('sysparm_name','getQuotes');
ga.addParam('sysparm_silent_request','true');
ga.addParam('sysparm_quoteID',rec_num.value);
ga.getXML(showQuoteDetail);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2018 12:35 PM
can you try adding scope name in front of the SI name.
global.DraftServiceCatalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2018 12:38 PM
Also can you give a try based on the below community link
https://community.servicenow.com/community?id=community_question&sys_id=5ea05b69dbdcdbc01dcaf3231f96193a
please mark answer helpful or correct based on the impact of the response.
Thanks
Ishan Parikh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2018 12:45 PM
This is not related as mine is from client to server and that was on server to server