
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2018 06:56 AM
I have to call a script include to update the record to bypass ACL write rules preventing user, hence the reason gsftSubmit() will not work.
Trying to use "action.setRedirectURL(current)" while still on the client side, but I believe this is only server side functionality.
So, can I reload the form via client due to the UI Action not able to hit server side?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2018 06:58 AM
Hi David,
In client side if you want to redirect/open then use following: give your table name highlighted in bold
var sysId = g_form.getUniqueValue();
var url = '/<tableName>.do?sys_id=' + sysId;
window.open('url');
Mark Correct if this solves your issue and also mark Helpful if you find my response worthy based on the impact.
Thanks
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2018 06:58 AM
Hi David,
In client side if you want to redirect/open then use following: give your table name highlighted in bold
var sysId = g_form.getUniqueValue();
var url = '/<tableName>.do?sys_id=' + sysId;
window.open('url');
Mark Correct if this solves your issue and also mark Helpful if you find my response worthy based on the impact.
Thanks
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2018 07:07 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2020 11:15 PM
Hi Ankur,
I am new to ServiceNow and I want to redirect to another page using servicenow.
I also ried the same thing for redirecting to another page but its not working. Please help me out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2020 11:58 PM
Hi,
the alert after window.open() won't show so remove that;
Also is the table name correct to which you are redirecting? u_incidentfieldaudit.do?
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader