Can we show completed surveys in Service Portal?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2018 02:42 AM
Hi,
I am trying to show Completed Surveys in Service Portal. Can we show it? When I try to enter the URL of a completed survey in place of a new Survey URL, it says survey already completed.
I can use the Simple List (OOTB widget) to show the Completed Surveys in a list view, but opening it is of not much use, since the Survey Questions are kind of an UI page and not separate fields which can be shown (ex: assigned to, created, number, etc)
Any ideas? I want to show the completed surveys just like new ones.
Thanks
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2018 03:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2018 03:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2019 01:36 PM
We have the same question, we need to be able to view a completed survey with questions. Is there any way to do this?
User A completed the survey, how would user A view the survey with questions in the ui page?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2019 06:41 AM
I have been able to simply add a link to the UI page assessment_take2.do like this.
data.src = 'assessment_take3.do?sysparm_assessable_sysid=' + data.sys_id + '&sysparm_assessable_type=' + data.type_id + '&sysparm_reader_view=true';
I use data.src in an iframe in a custom widget, but essentially that is how you would build the url to view a survey. I have not been able to figure out how to show "completed" surveys though. I have been wondering if maybe it's because the item we are trying to view is actually an assessment and not a survey.