
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2019 06:35 AM
Hi All,
I am unable to open URL using UI Action for Agent workspace.
I tried below options already, but didn't help.
1. action.setRedirectURL('http://www.mysite.com/mypage.htm');
2. window.open('http://www.mysite.com/mypage.htm');
3. g_navigation.open("'http://www.mysite.com/mypage.htm'");
Nothing works here, I don't know what I need to else, remember it is Scoped application and it is "ITSM Workspace" application.
Regards,
Satpal Singh
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2019 12:12 AM
Bad memory, but I have actually in my book how to redirect client-side to external as well 🙂 For those who doesn't have the book, it's just like this:
var win = top.window.open(‘http://www.coolsite.com’, '_blank');
win.focus();
Who knows what else there might be in the book 😉
//Göran
Feel free to connect:
LinkedIn
Subscribe to my YouTube Channel
or look at my Book: The Witch Doctor’s Guide To ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2019 12:08 AM
I don't think it's so happy of redirecting outside of the instance. I did a quick test with this one in the CSM scope and it worked.
//Göran
Feel free to connect:
LinkedIn
Subscribe to my YouTube Channel
or look at my Book: The Witch Doctor’s Guide To ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2019 12:12 AM
Bad memory, but I have actually in my book how to redirect client-side to external as well 🙂 For those who doesn't have the book, it's just like this:
var win = top.window.open(‘http://www.coolsite.com’, '_blank');
win.focus();
Who knows what else there might be in the book 😉
//Göran
Feel free to connect:
LinkedIn
Subscribe to my YouTube Channel
or look at my Book: The Witch Doctor’s Guide To ServiceNow

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2019 12:19 AM
Awesome This works for me 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2019 12:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2019 10:43 AM
Did you figure this out?