I am able to get all scripts of actions using below url
relevance=(names of applicable computers of it,id of it,name of it,source severity of it,scripts of actions of it) of bes fixlets whose (name of site of it contains “Patches” )
As our fixlets are having multiple actions ,above query is returning multiple results
But my requirement is to get only actionscript which is having “text/x-uri”
so in the above screen shot i want to get ‘http://www.ubuntu.com/usn/USN-2265-1/’. I have used below query but its failing with 'Requested resource does not exist.
Could some one help me in correcting below query
relevance=(names of applicable computers of it,name of site of it,id of it,name of it,source severity of it,scripts of actions of it whose (script type of it = “text/x-uri”)) of bes fixlets whose (name of site of it contains “Patches” )
I think you were quite close! The ‘whose’ element must come immediately after the object you want to filter:
(names of applicable computers of it,name of site of it,id of it,name of it,source severity of it | "n/a", scripts of actions whose (script type of it = "text/x-uri") of it) of bes fixlets whose (name of site of it contains "Patches")
when i use above the latest query given by you its working and when i use following (which i have modified in the latest query given by you) then also its working
relevance=(names of applicable computers of it,name of site of it,id of it,name of it,source severity of it | “n%2Fa”, scripts of actions whose (script type of it = “text%2Fx-uri”) of it) of bes fixlets whose (name of site of it contains “Patches”)
but when i use
relevance=(names of applicable computers of it,name of site of it,id of it,name of it,source severity of it | “n/a”, scripts of actions whose (script type of it = “text/x-uri”) of it) of bes fixlets whose (name of site of it contains “Patches”)
its failing when i use “/” in “n/a” and “text/x-uri” . If i use “%2F” in place of “/” its working fine