- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2016 04:19 AM
Hi
We like to insert a link to a Catalog Item in a "regular" list.
I know there is a field type "URL" and another type "HTML".
Unfortunately, the HTML field type only works fine on the form itself and the URL field type does not allow setting an display value.
How is it possible?
btw: the values are calculated:
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2016 04:43 AM
None that I know of at this point for the list view.
I love the idea and invite you to open an enhancement request! Our product managers DO listen.
Enhancement requests: Tell us how you would improve the ServiceNow product
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2016 10:36 AM
HI Chuck, I see this post is trying get the hyperlink on a list view.
The referenced post (shared with my by veena.kvkk88) tells how to make a client script to convert the full URL to a hyperlink.
Do you know of a way to make a business rule that will convert to a hyper link? My records are created using a web service from SharePoint so I can't use a client script as it would be bypassed.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2016 10:51 AM
Hi Carl,
A business rule (or calculated value for the field like that shown above) would do the trick.
I thought we already figured this one out yesterday. A before business rule something like this. (Note: Change field values to match yours.)
current.u_full_url = 'https://' + gs.getProperty('instance_name') + current.u_base_url + '/' + current.u_vendorName;
(or something close to that.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2016 10:58 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2016 11:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2019 01:22 PM
Can you please share the link the where