I am in the process of moving over from WHD to SolarWinds Service desk.
In our WHD implementation we used emails to the WHD to create tickets from alerts, I am now trying to move over to the Service Desk alert action and some of the field I would pull through SWQL queries are no longer working, it just shows the query and not the value. The same query works with the email version and if I run the query through SWQL studio it works as well.
an example of one that I'm trying to bring over is on the nodes to get the last successful install time for windows updates, as well as the Important and Optional counts of available updates. The queries are below, anyone have any idea on how to make these work.
${N=SWQL;M=Select ImportantCount From Orion.AssetInventory.WindowsUpdates WHERE NodeID=${N=SwisEntity;M=NodeID}}
${N=SWQL;M=Select OptionalCount From Orion.AssetInventory.WindowsUpdates WHERE NodeID=${N=SwisEntity;M=NodeID}}
${N=SWQL;M=Select ToLocal(LastSuccessInstallTime) AS Last_Install From Orion.AssetInventory.WindowsUpdates WHERE NodeID=${N=SwisEntity;M=NodeID}