How to Refresh the existing page from server side
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2020 08:32 AM
HI All,
I have a change form . As soon as submit or update the change_request form. The form should be refresh (not redirect).So i have one business rule to update change_request . So i tried the below method to refresh but did not work.
gs.setRedirect('change_request.do?sys_id='+current.sys_id);
Any other method?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2020 08:42 AM
Hi,
Try the below
action.setRedirectURL(current);
current.update();
Mark my ANSWER as CORRECT and HELPFUL if it helps.
This you can use in UI action were server side script is used.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2020 11:45 PM
HI ,
SOrry i tried it did not work. Any other suggestion?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2020 08:56 AM
Hi sreeni,
You can use current.update();
or
if it does not resolve then here is link which has some GlideRecord methods that will help you
If it Helps,please mark it as Correct and Helpful.
Warm Regards,
Milind
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2020 09:07 AM
By default, “Submit” and “Update” UI actions take the user to the previous page. Unlike them, “Save” UI action available from the form header context menu redirects to the current record. To make it more obvious for the users, you can, for example, configure that UI action to be displayed as a button rather than a context menu option and possibly also rename it to “Save and stay” or something similar.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/