khunter
Posts: 84
Score: 0 Joined: 9/12/2006 Status: offline
|
I actually was able to get a clone of report 61 to work, after looking at some other reports that let you specify collection. There's only one twist I would like to add, and that is to add the Collection name as a column in the report. I can't see right off hand how to do it. Below is my SQL statement: select SYS.Netbios_Name0, SF.FileName, SF.FileDescription, SF.FileVersion, SF.FileSize, SF.FileModifiedDate, SF.FilePath From v_GS_SoftwareFile SF join v_R_System SYS on SYS.ResourceID = SF.ResourceID JOIN v_FullCollectionMembership FCM on FCM.ResourceID=SF.ResourceID Where SF.FileName LIKE @variable and FCM.CollectionID=@CollID ORDER BY SYS.Netbios_Name0
|