- 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 01:01 PM
Thank you, I set
producer.redirect ="home.do"
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 = "home.do";
and is working.
I do not is it is right or not but is working for me.

- 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.