
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2012 07:36 PM
I would like to customize the Dash board report "Computer scanning errors." It is more inclusive than WMI scanning errors. What is the base report or sql for this report? I would like to add the ip to this report, or make a custom report with this field included.
JW
JW
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2012 02:20 PM
Are you referring to the "Computer scanning errors" page linked in the web console under "Reporting"? You cannot easily change how this webpage behaves.
If you want to add to the information on this page, you will have to create a new, separate report. Use the SQL code below as a base.
If you want to add to the information on this page, you will have to create a new, separate report. Use the SQL code below as a base.
Select Top 1000000 tblerrors.Computername, tblComputers.Computer,
tblComputers.Domain, tblComputers.LastknownIP, tblerrors.CFGname,
tblerrors.ErrorText, Max(tblerrors.Lastchanged) As [Last changed]
From tblerrors Inner Join
tblComputers On tblerrors.Computername = tblComputers.Computername Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Left Outer Join
tblOperatingsystem On tblComputers.Computername =
tblOperatingsystem.Computername
Where tblOperatingsystem.Computername Is Null
Group By tblerrors.Computername, tblComputers.Computer, tblComputers.Domain,
tblComputers.LastknownIP, tblerrors.CFGname, tblerrors.ErrorText
Order By Max(tblerrors.Lastchanged) Desc
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2012 07:48 PM
Thank you, that worked nicely.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2012 02:20 PM
Are you referring to the "Computer scanning errors" page linked in the web console under "Reporting"? You cannot easily change how this webpage behaves.
If you want to add to the information on this page, you will have to create a new, separate report. Use the SQL code below as a base.
If you want to add to the information on this page, you will have to create a new, separate report. Use the SQL code below as a base.
Select Top 1000000 tblerrors.Computername, tblComputers.Computer,
tblComputers.Domain, tblComputers.LastknownIP, tblerrors.CFGname,
tblerrors.ErrorText, Max(tblerrors.Lastchanged) As [Last changed]
From tblerrors Inner Join
tblComputers On tblerrors.Computername = tblComputers.Computername Inner Join
web40ActiveComputers On tblComputers.Computername =
web40ActiveComputers.Computername Left Outer Join
tblOperatingsystem On tblComputers.Computername =
tblOperatingsystem.Computername
Where tblOperatingsystem.Computername Is Null
Group By tblerrors.Computername, tblComputers.Computer, tblComputers.Domain,
tblComputers.LastknownIP, tblerrors.CFGname, tblerrors.ErrorText
Order By Max(tblerrors.Lastchanged) Desc
