Report for All Actions for All Computers

Does anyone have a report that will list all of the actions for all computers? There is a report that list all actions, but it does not list all of the computers that took the action.

I am doing something similar in a Dashboard and I’ve reworked the relevance statement here.
Note that this will give a LOT of results. I’m formatting it as an HTML Table. You’d need to change the “id of it = " in the bes actions filter to use an action ID that you’re interested in, or remove the “id of it = " altogether to report on all actions. I’m also limiting to actions that are still in the Open state.
Also, change “concatenation (html(”< b r >”))” to remove the spaces in the HTML tag - this site is mangling the tags.

/* Header Row */
(
b of “ID” as html,
b of “Link” as html,
b of “Issuer” as html,
b of “Site Name”,
b of “time issued” as html,
b of “time expired” as html,
b of “results” as html
);
/*Result Rows - must match data type of Header Row so cast “as html” */
(
id of it as string as html,
link of it,
name of issuer of it as html,
(if exists (names of sites of source fixlets of it) then name of site of source fixlet of it else “”) as html,
time issued of it as string as html,
(if exists expiration time of it then expiration time of it as string else “”) as html,
concatenation (html ("< b r >")) of (name of computer of it as html & " " & status of it as string as html) of results of it
)
of bes actions whose (id of it = 471572 and state of it = “Open” and (if exists parent group of it then state of parent group of it = “Open” else true) and exists (statuses of results of it) whose (it as string = “Running”) )

Hi Walker,

i need your help pull out a monthly report from TEM Web reports, which contain only the list of servers which used TEM for patching and which are not used to TEM for patching in this month.

  1. Site.: Patches from Windows ( English)
  2. Computer Name : TEST
  3. Action Issued : in the Month.
  4. Patched using TEM ( Yes or No)
  5. Report frequency is : Monthly.

Please let me know if you have any custom report… :smile:

Thanks,
Naresh.Jon

I do not have such a report but you could possibly build one based on the relevance I posted earlier.

Make no mistake, I do not work for IBM and do not support BigFix. I’m just another customer like you, coming here to get help when I need it and trying to help others when I can.

Hi Walker,

Please share the the relevance … Thanks a lot for your help in advance

Naresh