I'm trying to do this
You can do this using conditional eval command in the search language to
create one of N different search
language strings, and then a
ResultsValueSetter to pull down that
string-valued field, and plug it into
your search using another Search
module.
I've my main search, and a table
From that table I make a postprocess to build a $varSearch$ with the search String
My Problem is my postprocess seems not to work as desired :
eval varSearch=case($row.fields.H_message_type$=="test","AA",H_message_type=="Ctest","ZZ")
This gives no results, so I'm not able to use it i the underlying search... ?
... View more