(imported comment written by Lee Wei)
tscott,
Yes, it is possible to filter the Fixlets only for those visible and exclude the hidden ones. There are Global and Local flags known respectively as “Globally Visible Flag” and “Locally Visible Flag”.
Until and unless I modify the JavaScript source located below, you will have to modify the file yourself.
\BigFix Enterprise\BES Server\BESReportsServer\wwwroot\ext-3.2.0\fixlet_compliance.js
There are many places to make the change, here is an example code fragment, and what to edit:
Original code fragment for all Critical Fixlets for MS patches:
(sets of bes fixlets whose (display name of site of it = “Patches for Windows (English)” and source severity of it as lowercase = “critical” and name of it as lowercase does not contain “corrupt patch” and name of it as lowercase does not contain “superseded”))
Change to:
(sets of bes fixlets whose (
color=red
globally visible flag of it = true and [/color]display name of site of it = “Patches for Windows (English)” and source severity of it as lowercase = “critical” and name of it as lowercase does not contain “corrupt patch” and name of it as lowercase does not contain “superseded”))
Lee Wei