Do the following:
- In the Dashboard\Reports\All Reports section of the web console, hit the edit button next to the report.
- Replace the report's SQL code with the one below. Replace YourService1 with the name of the service you want to exclude.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tblAssets.Description,
tblServicesUni.Caption,
tblServices.Lastchanged,
tsysOS.Image As icon
From tblServices
Inner Join tblAssets On tblServices.AssetID = tblAssets.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Inner Join tblServicesUni On tblServices.ServiceuniqueID =
tblServicesUni.ServiceuniqueID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblComputersystem.Domainrole > 1 And tblServices.StartID = 3 And
tblServices.StateID = 1 And tblAssetCustom.State = 1 And
tblServicesUni.Name <> 'YourService1'
Order By tblAssets.AssetName
- You can add additional exclusions as shown below.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tblAssets.Description,
tblServicesUni.Caption,
tblServices.Lastchanged,
tsysOS.Image As icon
From tblServices
Inner Join tblAssets On tblServices.AssetID = tblAssets.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Inner Join tblServicesUni On tblServices.ServiceuniqueID =
tblServicesUni.ServiceuniqueID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblComputersystem.Domainrole > 1 And tblServices.StartID = 3 And
tblServices.StateID = 1 And tblAssetCustom.State = 1 And
tblServicesUni.Name <> 'YourService1' and <> 'YourService2' and <> 'YourService3'
Order By tblAssets.AssetName
- Hit the Save & Run Report button.