cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Barrett
Engaged Sweeper
Hi, Lansweeper detecting all of our Xerox malfunction printers firmware version but its listed under the description. Is there anyway to create a report to look for a specific version number within the description field text?
1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
Please use the report below and replace YourVersion with the version number you would like to report on.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Description,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tsysAssetTypes.AssetTypename = 'multifunction printer' And
tblAssets.Description Like '%YourVersion%' And tblAssetCustom.State = 1
Order By tblAssets.IPNumeric

To use the report above, do the following:
•Open the report builder under Reports/Create New Report.
•Paste the SQL code we provided at the bottom of the page.
•Left-click somewhere in the upper section of the page so the code applies.
•Give the report a Title and hit the Save & Run button to save it. Export options are listed on the left.

View solution in original post

2 REPLIES 2
Barrett
Engaged Sweeper
That works... thanks.
Hemoco
Lansweeper Alumni
Please use the report below and replace YourVersion with the version number you would like to report on.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Description,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tsysAssetTypes.AssetTypename = 'multifunction printer' And
tblAssets.Description Like '%YourVersion%' And tblAssetCustom.State = 1
Order By tblAssets.IPNumeric

To use the report above, do the following:
•Open the report builder under Reports/Create New Report.
•Paste the SQL code we provided at the bottom of the page.
•Left-click somewhere in the upper section of the page so the code applies.
•Give the report a Title and hit the Save & Run button to save it. Export options are listed on the left.