This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

How can i create a hyperlink to nodetails page using SWQL?

I am using Custom Query resource with custom SWQL query and
search SWQL query.

custom
SWQL query

Select t1.Caption as NODENAME,t1.customproperties.NodeDetailsLink,t1.PercentLoss,
t1.AvgResponseTime, t1.lastsync,t1.nextpoll  from Orion.Nodes as t1 where
t1.customproperties.service like 'Videoconference' and t1.contact like
'test'

order by t1.caption

search
SWQL query

Select t1.Caption as
NODENAME,t1.customproperties.NodeDetailsLink,t1.PercentLoss,
t1.AvgResponseTime, t1.lastsync,t1.nextpoll  from Orion.Nodes as t1 where
t1.customproperties.service like 'Videoconference' and t1.contact like
'test' and t1.caption LIKE '%${SEARCH_STRING}%'

order by t1.caption

t1.customproperties.NodeDetailsLink is the custom
property with input : <a href="https://abc/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N:4169">
Details </a>

When I am adding above custom field in my query it shows up
the input text not the hyperlink “Details” in the customized view.