I am Try with below QNA but No Luck
(IDs of Actions of it, Names of Issuers of Actions of it, Names of Actions of it, States of Actions of it, Times Issued of Actions of it, start date of action of it, end date of action of it, Names of Computers of it, Operating Systems of Computers of it, IP Addresses of Computers of it, Last Report Times of Computers of it, Detailed Status of it,Status of it,Names of member actions of actions of it) of results whose (((Name of Action of it as lowercase starts with “Patch Channel 2024-12”))) of bes actions whose ((start time_of_day of it as string >=(“15 Dec 2024 00:00:00”))and (end time_of_day of it as string <=(“29 Jan 2025 23:59:59”)))
That’s Session Relevance. You won’t be able to use that int he Fixlet Debugger / QNA, because it requires reading from the BigFix Database (no client knows about what every other client is doing).
Have a read at Passing relay property to client in software deployment task - #14 by JasonWalker
You’ll need to try your Session Relevance query in a custom Web Report or through the REST API
As Jason said, this is an example of Session Relevance, which can be evaluated in custom Web Reports, in the QNA page of Web Reports (vs. QNA/Fixlet Debugger on the Client), and some other places (we can provide more reference here if there’s interest).
The session relevance example above should work, but do note that it seems to take as input an action name, but as it is above, the action’s name should be inputted in lowercase. Alternatively, we can cast it as lowercase as well to avoid issues with case (note the addition of as lowercase
below after the Action’s name):
(IDs of Actions of it, Names of Issuers of Actions of it, Names of Actions of it, States of Actions of it, Times Issued of Actions of it, start date of action of it, end date of action of it, Names of Computers of it, Operating Systems of Computers of it, IP Addresses of Computers of it, Last Report Times of Computers of it, Detailed Status of it,Status of it,Names of member actions of actions of it) of results whose (((Name of Action of it as lowercase starts with "Patch Channel 2024-12" as lowercase))) of bes actions whose ((start time_of_day of it as string >=("15 Dec 2024 00:00:00"))and (end time_of_day of it as string <=("29 Jan 2025 23:59:59")))
thanks for valuable input But the Q is how to get applicability of compter under MAG action agagint the fixlet.I want to know about the applicabile computer agagint the fixlet though QNA do you have such type of QNA refer the below snapshot for emaple
Perhaps it would help if you provided a screenshot with the error you’re receiving given your original post? You said you tried some relevance in QNA without any luck…what does that mean exactly? Did you receive an error? Or no data? Or not the data you were expecting/hoping?