I have the following simple SWQL query to test inserting the Details URL as a link for the Node column and no matter how I format it the Node caption is not clickable. Any ideas? What am I doing wrong? (This is for a Report if that makes a difference).
SELECT TOP 1000 I.InterfaceName, N.Caption AS Node, N.DetailsUrl as [_LinkFor_Node]
FROM NCM.Interfaces I
INNER JOIN Orion.Nodes N ON I.Node.CoreNodeID = N.NodeID
ORDER BY Node ASC