Session relevance help sub actions

I’m having some trouble writing some session relevance and I’d appreciate any help that I can get. The end result that I’m trying to achieve is to report back the operation status of a baseline.

I have an OS baseline with 10 fixlets inside it, when I patch 10 computers I want to pull back a report that shows the following information; Sub action status (failed, complete), computer name, sub action name (MS15-001, MS15-002).

I cannot for the life of me get a relevance statement to work.

Here is where I’m at now;

names of member actions of (bes action whose (id of it is 12345))
This successfully pulls back the names of the fixlets in my baseline

(statuses of it, names of computers of it) of results of member actions of (bes action whose (id of it is 12345)) as string
This successfully pulls back the status of the sub actions and the computer it was applied to in my baseline

And now I’m stuck. I’ve tried a bunch of different ideas and they all failed.

(status of it, name of computers of it, name of it) of (results of member actions of it; member actions of it) of (bes action whose (id of it is 12345))
This just says “Incompatible types”

((status of it, name of computers of it) of (results of member actions of it),(name of it) of member actions of it) of (bes action whose (id of it is 12345))
This kind of worked, but it worked as a factorial - VERY BAD…

Help? Please?

I haven’t tested this, but how about:

(statuses of results of it, names of computers of results of it, names of it) of member actions of (bes action whose (id of it is 12345))

1 Like

Well, don’t I look like a fool. That worked just fine. I had tried a similar line to that before. It appears that the problem was me using the “results of” section.

(status of it, name of computers of it, name of it) of results of member actions of (bes action whose (id of it is 12345)) as string

Thanks!