How to Call Script include in Ui Macro
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 04:21 AM
Hi ,
i need to call script include in Ui macro , i had called Ui page from Ui macro now my requirement is to call the Script include.how can i achieve this
Could any one help me regarding this
Thanks in advance
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 04:23 AM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 04:27 AM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 04:33 AM
Hi SASi,
just add scipt tag in your
- <script>
- function showRelatedList(reference) {
- var ga = new GlideAjax('HelloWorld');
- ga.addParam('sysparm_name','helloWorld');
- ga.addParam('sysparm_user_name',"Bob");
- ga.getXML(HelloWorldParse);
- }
- </script>
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 05:06 AM