How to redirect to another URL
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-27-2015 12:31 AM
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-27-2015 12:43 AM
window.location.href = url;
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-27-2015 01:06 AM
Samrat,
You don't need to have 'client' checkbox as true.
'action.setRedirectURL' is a server side action.
You can check this from : UI Actions - ServiceNow Wiki
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-27-2015 01:08 AM
These will run on server side, so if you want to sue this make your ui action client = false
action.setRedirectURL("URL");
action.setReturnURL("URL");
-Anurag