I would like to change the screen that appears after submitting a catalog item.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
I have created a catalog item to be used in the portal.
When you submit the input form for the catalog item, you are usually redirected to a request summary screen.
I would like to change this screen transition.
What I expect is that when I submit the input form, the page at the specified URL will be displayed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
is that URL an external one or internal one?
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
in the onSubmit catalog client script you can add like this and see
function onSubmit() {
top.window.setTimeout(myRedirect,2000);
function myRedirect() {
top.window.location = "sp?id=xxxxx"; // add your URL here either internal or external one
}
}
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader

