A cause to become the error when I run the next sentence is unknown

(imported topic written by SystemAdmin)

A cause to become the error when I carry out(run) the sentence that next “relevance” is included in is unknown.

<?relevance (html"" & it & html"
Computer # Critical Fixlets
") of concatenation of (trs of (td of (name of item 0 of it) & td of (cve id list of item 1 of it)) of (it, set of relevant fixlets whose (fixlet flag of it is true) of it) of bes computers) ?>

However, in the following sentences, an error is not given.

I do not understand the cause.

<?relevance (html"" & it & html"
Computer # Critical Fixlets
") of concatenation of (trs of (td of (name of item 0 of it) & td of (size of item 1 of it as string)) of (it, set of relevant fixlets whose (fixlet flag of it is true and source severity of it as lowercase = "critical") of it)of bes computers) ?>

Thank you.

unno.

(imported comment written by BenKus)

Hi unno,

You can’t take the CVE ID of a “set” of fixlets… the second part of the code you posted generates a report like:

Computer # Critical Fixlets

PINKY 14

BRAIN 5

OLORIN 4

But how would you want to include CVE IDs in this list? In a big concatenation?

You can try this, but it is ugly looking:

<?relevance (html"" & it & html"
Computer # Critical Fixlets
") of concatenation of (trs of (td of (name of item 0 of it) & td of (concatenation ", " of cve id lists of elements of item 1 of it)) of (it, set of relevant fixlets whose (fixlet flag of it is true) of it) of bes computers whose (exists name of it)) ?>

Ben