Redirect after on submit in service portal
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2024 12:31 AM
hello,
I created custom table and RB.
I want when user submit on portal the RB to redirect him to the record not in portal.
is that possible ?
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2024 01:43 AM
I tried redirecting to the generated record in native view. I am able to with the below script :
var sysID = current.getUniqueValue();
producer.portal_redirect = "incident.do?sys_id="+sysID;
Refer below snips for better understanding :
Record Producer -
Post submission, it redirects to generated Incident -
Please mark this response as correct and helpful if it assisted you with your question.