Names of computers based on targeting relevance

(imported topic written by SystemAdmin)

Hi.

When I issue an action, targeting computers by a property, in the targeting relevance field I found, for example, this:

(exists true whose (if true then (member of group 313 of site "CustomSite_site") else false))

Ho can I use this relevance, as is, to get names of computers ?

Thanks.

(imported comment written by SystemAdmin)

Use that relevance to create a dynamic group. Whichever machines are relevant to the group would be your list of who is in the site.

(imported comment written by SystemAdmin)

Let me explain better:

I do this relevance

(
    (if (exists Targeting Relevance of it) 
            then (concatenations " | " of (Targeting Relevance of it as string)) 
            else ("<none>")))
of 
    BES Actions 
            whose (
                    (ID of it = 7469))

and I get this result

(exists true whose (if true then (member of group 313 of site "CustomSite_site") else false))

I have to write a new relevance by using the result of the last relevance as is (“exists true …”) to get the names of computers

Is it possible ?

Thanks