With the Underutilized Software report, if you set the Show metered software only parameter to "No", the Application parameter no longer filters the results.
ITMS 8.5
This is a defect.
This issue will be addressed in 8.5 RU3.
To work around the issue in 8.5 RU2, use the attached modified report that is fixed.
If you are using 8.5 - 8.5 RU1, use the following method:
Go into Edit mode and look for the following:
AND ('%Domain%' = '%' OR i.[Domain] = '%Domain%')
AND ('%Application%' = '%' OR LOWER (f.[Name]) LIKE LOWER
('%Application%'))
AND spu.IsUsageTracked = 1 OR '%Show metered software only%' = 'No'
GROUP BY
--Should have ( ) around the third AND line, as shown:
AND ('%Domain%' = '%' OR i.[Domain] = '%Domain%')
AND ('%Application%' = '%' OR LOWER (f.[Name]) LIKE LOWER
('%Application%'))
AND (spu.IsUsageTracked = 1 OR '%Show metered software only%' = 'No')
GROUP BY
Make the change and that should fix the report.