Hi,
I have a custom query that translates API Poller values back in to text.
SELECT str.text, vtm.displayname, ap.DisplayName as DisplayName, ap.Node.NodeID
FROM Orion.APIPoller.ValueToMonitor vtm
JOIN Orion.APIPoller.StringToNumberTransformationRule str ON vtm.id = str.valuetomonitorid
JOIN Orion.APIPoller.ApiPoller ap on ap.ID = vtm.ApiPollerId
Where ap.Node.NodeID = ${NodeID}
The query works fine in SWQL Studio when the last line ${NodeID} is replaced with a number. What I want to do is have it display for the node on the current page. Having searched around the query should work as is but all I get is the message 'There was an error processing the request.'