Survey Scorecard URL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2017 01:50 PM
I would like to create a menu item for the Survey Scorecard of the one and only survey we are conducting, visible to a small group that I do not want to have access to all the rights on the View Survey menu item. The URL I grabbed is showing the Navigation Panel in addition to the scorecard. Then, each time I click the menu item, an additional nav column is nested in the view.
Has anyone created a menu item to just display the scorecard for one particular survey?
Thanks!
- Labels:
-
Reporting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2017 02:50 PM
Update: if I put _blank for the window, I am able to open the link in a new window and don't have that nested navigation panel. That works for now, but I would love to understand how to edit the URL to prevent that from happening within the same window.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2017 08:42 AM
Hi Cheryl,
I've was having the same issue, this is how I have managed to resolve it.
My example is based on the "Service Desk Satisfaction Survey"
1. Open the "View Scorecard" Related Link UI Action
2. Copy the complete URL for that web page
e.g. https://<instance_name>/nav_to.do?uri=/assessment_scorecard.do%3Fsysparm_record_sysid%3D502a2c44d7211100158ba6859e6103a3%26sysparm_assessable_table%3Dasmt_metric_type%26sysparm_metric_type%3D502a2c44d7211100158ba6859e6103a3%26sysparm_display%3DService%2520Desk%2520Satisfaction%2520Survey%26sysparm_title%3DSurvey%2520Scorecard%26sysparm_uipage%3Dtrue
3. Open the "View Scorecard" UI Action from the "Customize > UI Actions" context menu option
4. Copy line 9, this is where to UI Action is building the URL
e.g. var url = 'assessment_scorecard.do?sysparm_record_sysid=' + sys_id + '&sysparm_assessable_table=' + table + '&sysparm_metric_type=' + sys_id + '&sysparm_display=' + encodeURIComponent(display) + '&sysparm_title=' + encodeURIComponent(title) + '&sysparm_uipage=true';
5. With this combination of information it is now possible to re-build the URL you require for the "URL (from argument)"
e.g. assessment_scorecard.do?sysparm_record_sysid=502a2c44d7211100158ba6859e6103a3&sysparm_assessable_table=asmt_metric_type&sysparm_metric_type=502a2c44d7211100158ba6859e6103a3&sysparm_display=Service Desk Satisfaction Survey&sysparm_title=Survey Scorecard&sysparm_uipage=true
You will notice that there are a certain set of characters that need replacing throughout the string:
%3F -> ?
%3D -> =
%26 -> &
%2520 -> [white space]
The result should look a little like this:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2017 05:48 AM
Thanks Alex. Sorry for the delay in response; I got distracted by several other issues!
I will try this out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2018 03:46 AM
Hey,
what can I replace this %255E with? Thanks.