- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2019 04:42 AM
Hi All,
After submitting the order guide, I need to redirect to particular page in service portal instead of Request, am unable to find any properties and script which is redirecting. Please let me know, is it even possible to do or not.
Thanks,
Swathi.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2019 04:47 AM
Hi,
follow the below steps:
- Create an after insert business rule on the Requested Item table
- Set the condition where order guide is <order_guide_name>
- In the advanced section insert the following code:
(function executeRule(current, previous /*null when async*/) {
gs.setRedirect('<your_page_name>.do');
})(current, previous);
It should work fine!
If I have answered your question, please mark my response as correct and/or helpful.
Thank you very much
Cheers
Alberto

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2019 04:47 AM
Hi,
follow the below steps:
- Create an after insert business rule on the Requested Item table
- Set the condition where order guide is <order_guide_name>
- In the advanced section insert the following code:
(function executeRule(current, previous /*null when async*/) {
gs.setRedirect('<your_page_name>.do');
})(current, previous);
It should work fine!
If I have answered your question, please mark my response as correct and/or helpful.
Thank you very much
Cheers
Alberto