Good afternoon.
I'm having a trouble with the limitations and the search feature in solarwinds, it's displaying all the element with the same "name", for example if I search and ID 2525 it shows all the data that contains this number.
Now, checking the THWACK, i found a post about a custom search view with a Custom Query Resource.
I've already add this, but I'm trying to limit this search to an specific group and nodes contained in it.
SELECT
n.Caption AS NODE,
'/Orion/images/StatusIcons/small-' + ToString(n.StatusIcon) AS [_IconFor_NODE],
'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N%3a' + ToString(n.NodeID) AS [_LinkFor_NODE],
n.ObjectSubType,
n.StatusDescription,
n.IPAddress
FROM Orion.Nodes n
where
n.Caption LIKE '%${SEARCH_STRING}%'
This query shows me this:

¿Is there a way to search only the nodes related to a group? or the other option, ¿show in the custom search only the nodes asociated to a group?
I'll appreciate your comments.
Regards.