- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2015 01:26 AM
I've tried posting something similar to this before without getting any answers so I thought I would try one more time.
I'm trying to create a URL field that when exported to Excel would allow me to click the URL and have it open in a new browser window.
I've created my field, made it calculated and in the calculation box I have:-
"https://myinstance.service-now.com/nav_to.do?uri=incident.do%3Fsys_id=" + current.sys_id + "%26sysparm_stack=incident_list.do%3Fsysparm_query=active=true"
This generates a URL like this:-
However when I choose to 'Export the URL' from incident record it generates this:-
https://myinstance.service-now.com/nav_to.do?uri=incident.do?sys_id=f0124d160f7b350055b138b362050e41
Using the URL generated once the record is exported I click on the link all I get is the Service Now home page, scanning through the list it appears that the sys_id is there but just not being picked it up. I have verified that the value for sys_id in the generated URL is the same as the sys_id for the record in question, see above.
The link does work when clicked in Service Now and opens in a new tab, the link generated by 'Copy URL' from Incident record also works when pasted into a browser.
I would welcome any suggestions.
TIA
Solved! Go to Solution.
- Labels:
-
User Interface (UI)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2015 02:34 AM
populate just this much in your URL field
"https://myinstance.service-now.com/incident.do?sys_id=" + current.sys_id
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-19-2023 05:30 AM - edited ‎09-19-2023 05:32 AM
Hi @Anurag Tripathi ,
I was using the method you mentioned above its working fine in UI but its not a clickable link service portal. May i know how to make it clickable in portal as well?
My UI view:
My Portal View:
Thanks!