10-25-2007 11:50 AM
Step.Result.Status != "Done" && Step.Result.Status != "Skipped" && Step.StepType != "SequenceCall"
I've also tried Step.StepType.Name != "SequenceCall" (ran but didn't help) and Logging.StepResult.TS.StepType != "SequenceCall" (caused a runtime error).
I can't turn off the Record Results in Run Options because that blocks the subsequence results.
Anybody have a solution?
Thanks,
Steve S.
10-25-2007 04:40 PM
10-26-2007 06:41 AM
Hi Hans,
I thought that would work too. And it might if you cofigure database options from the Configure menu. But when I used that in the callback (see above) it caused a runtime error. Thats why the other statements were converted from Logging.StepResult.XXX to Step.Result.XXX.
Thanks,
Steve S.
10-26-2007 10:14 AM
Steve -
I added an expression step to the DatabaseOptions callback and it worked fine. Its expression is shown below:
Parameters.DatabaseOptions.ResultFilterExpression = "Logging.StepResult.TS.StepType != \"SequenceCall\""
10-26-2007 11:37 AM
Scott,
Thanks - that works great! That should reduce my record size by close to 50%.
Can you explain the purpose of the backslashes around sequence call so I can use them properly with my other filter expressions?
Thanks,
Steve S.
10-29-2007 08:41 AM
10-29-2007 10:09 AM
Hi Adam,
That makes sense and may explain some difficulty I've run into setting the connection path with the database callback.
Thanks,
Steve S.