(imported topic written by null)
Using session relevance we are trying to identify the status of all member actions of any given multiple actions group.
Since member actions have no result and thus no status for both ‘not relevant’ and ‘not reported’ actions we are making the assumption that if there is no status and the computer is relevant for the source fixlet then it is not reported.
The relevance I have so far follows:
(
id
of
it
as
string
,
name
of
it,
((
status
of
result from
(
bes computer
whose
(
id
of
it
=
1481680
))
of
it
)
as
string
|
(
if
(
relevant
(
bes computer
whose
(
id
of
it
=
1481680
))
of
source fixlet
of
it
)
of
component
whose
(
name
of
it
=
“whatever
the
name
of
the
member
action
is”
)
of
component groups
of
source fixlet
of
bes action
whose
(
id
of
it
=
529246
)
then
"Not
Reported"
else
"Not
Relevant"
)))
of
member actions
of
bes actions
whose
(
id
of
it
=
529246
)
The problem is that I don’t know how I can reference the name of the member action to compare it to the name of the component.
I need to replace “whatever the name of the member action is” with something like ‘name of it’.
I am also open to any suggestion on more efficient ways to write the relevance or if my assumptions are incorrect.
Thanks