(imported comment written by jessewk)
Jason,
You can not evaluate these in the relevance debugger because it does not have access to the console memory, which is where all the data is stored.
You have 2 options to evaluate queries that use session inspectors:
-
Web Reports QNA: http://your.webreports.server/cgi-bin/besreports/besreports.exe?page=QNA
-
Console Presentation debugger: In the console, press cntrl-alt-shift-D and check the box in the window that comes up to ‘show debug menu’. From the debug menu you can select the presentation debugger and use that to evaluate your queries.
To fix your report you’ll probably need to add some error checking. Instead of:
… of (relevant fixlets whose (source severity of it as lowercase = “critical” OR source severity of it as lowercase = “important”) of it, it)
Try:
of (relevant fixlets whose (exists source severity of it AND (source severity of it as lowercase = “critical” OR source severity of it as lowercase = “important”)) of it, it)
And instead of:
trs of (td of name of item 1 of it &
td of name of item 0 of it &
td of source of item 0 of it &
td of source id of item 0 of it &
td of source severity of item 0 of it &
td of source release date of item 0 of it &
td of category of item 0 of it
)
Try:
trs of (td of (if exists name of item 1 of it then name of item 1 of it else “no name”) of it &
td of (if exists name of item 0 of it then name of item 0 of it else “no name”) of it &
td of (if exists source of item 0 of it then source of item 0 of it else “no source”) of it &
td of (if exists source id of item 0 of it then source id of item 0 of it else “no source id”) of it &
td of (if exists source severity of item 0 of it then source severity of item 0 of it else “no source severity”) of it &
td of (if exists source release date of item 0 of it then source release date of item 0 of it else “no source release date”) of it &
td of (if exists category of item 0 of it then category of item 0 of it else “no category”) of it
)