- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 10:45 AM
i have a record producer on change request table. as soon as the record producer is submitted from the portal, i want the user to be redirected to the change request form in the instance. can anyone tell me how to do it. thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 11:05 AM
Hi,
You can try something like:
producer.portal_redirect = "change_request.do?sys_id=" + current.getUniqueValue();
Reference:
Write this in the record producer script.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 11:01 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 11:02 AM
Hi there,
Haven't tested, though you could try something like adding below in your record producer script:
producer.redirect="/nav_to.do?uri=change_request.do?sys_id=" + current.getUniqueValue();
OR
producer.redirect="https://your-instance.service-now.com/nav_to.do?uri=change_request.do?sys_id=" + current.getUniqueValue();
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020-2022 ServiceNow Community MVP
2020-2022 ServiceNow Developer MVP
---
LinkedIn
Community article, blog, video list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2022 11:05 AM
Hi,
You can try something like:
producer.portal_redirect = "change_request.do?sys_id=" + current.getUniqueValue();
Reference:
Write this in the record producer script.
Thanks.