OK so I have gotten this far with Query text:
SELECT DISTINCT A0.DISPLAYNAME AS "Device Name", A1.SUITENAME AS "Name", A1.PUBLISHER AS "Publisher", A1.VERSION AS "Version" FROM Computer A0 (nolock) LEFT OUTER JOIN AppSoftwareSuites A1 (nolock) ON A0.Computer_Idn = A1.Computer_Idn WHERE (A1.SUITENAME IS NOT NULL AND A0.DEVICENAME = N'MYPCNAME') ORDER BY A0.DISPLAYNAME
Where MYPCNAME is the device that I want to pull the software list for.
I'd like to make this interactive by adding a parameter to select the pc name(s) from a list & also add grouping by pc name.
I tried following the docs to add parameters but keep running into errors with the query text. I'm on 9.5 - is anyone able to assist with this?
Thanks!