- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 09:53 AM
Hi Everyone,
We have a problem, on Geneva version, when the end user submit "Incidents" the messages error showed "Page not Found" and "hel_thank_you.do?"
Could you help me?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 01:05 PM
Thanks for the update Diego. This will redirect users to the homepage once the click on submit incident. You can remove the line producer.redirect completely in case you don't want that.
Let me know if that answered your question. If so, please mark the appropriate response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
If you are viewing this from the community inbox you will not see the correct answer button. If so, please review How to Mark Answers Correct From Inbox View.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 11:45 AM
Click on 2 and 3rd record and check for the script field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 11:50 AM
here is the script:
current.contact_type = 'self-service';
if (producer.cmdb_ci.support_group != ""){
current.assignment_group = producer.cmdb_ci.support_group;
} else if (producer.u_business_service.support_group != ""){
current.assignment_group = producer.u_business_service.support_group;
} else {
current.assignment_group = producer.caller_id.location.u_service_desk_group;
}
producer.redirect = "help_thank_you.do";

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 12:08 PM
Cool. Okay this line producer.redirect = "help_thank_you.do"; actually redirects to the UI page.
Can you please now navigate to the UI page and search for text help_thank_you and paste result here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 12:34 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 12:48 PM
maybe the corrcet redirect was:
producer.redirect ="nav_to.do?uri=/home.do"