- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 10:09 AM
In a Record Producer form, how do you refresh the current URL page after a submission.
Information states to not do it a the Catalog Client Script, but doesn't say where to do it.
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 10:50 AM
There must be an onSubmit client script that's causing the issue. Can you disable any onSubmit client scripts and try again? One issue at a time... 🙂

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 10:16 AM
Hello Jason,
producer.redirect
: Enables the redirect behavior within the Platform UI.producer.portal_redirect
: Enables the redirect behavior within Service Portal.
For example, the following code redirects users to their homepage after the record producer is submitted:
- Within the Platform UI:
producer.redirect="home.do";
- Within Service Portal:
producer.portal_redirect = "sp?id=sc_home"
RP.getParameterValue('sysparm_id')
The script field lives on the Record Producer itself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 10:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 10:28 AM
Is that the same record producer you just submitted, but you want a fresh/blank form?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2019 10:34 AM
Yes. Basically, creating an events check-in portal page. So each time that a record is submitted, I just want the page to refresh itself. I can manually do this by hitting F5.
Ideally, I would also like it to hold one of the event variables as well. In the example below, the page would refresh, but hold the Event constant.