02-21-2018 03:57 PM
The following result filtering expression works for the ASCII text file result processing but not for the database adapter. Why is that?
Result.Status != "Done" && Result.Status != "Skipped"
An error occurred calling 'LogMultipleResults' in 'ITSDBLog' of 'zNI TestStand Database Logging'
An error occurred evaluating the database logging result filter expression.
Unknown variable or property name 'Result'.
Error accessing item 'Result'.
Source: TSDBLog
02-21-2018 04:53 PM
I found the answer poking around. I want:
Logging.StepResult.Status != "Done" && Logging.StepResult.Status != "Skipped"
for the database result processing filter expression.