02-28-2006 05:40 PM
03-01-2006 08:36 AM - edited 03-01-2006 08:36 AM
RunState.Sequence.Main[<your step name goes here>].Result.Status
or
ThisContext.RunState.Sequence.Main[<your step name goes here>].Result.Status
.Main part assumes the step is in the Main Step Group, but this can be replaced with ".Setup" or ".Cleanup"
Regards
Steve
Message Edited by SercoSteve on 03-01-2006 08:40 AM
03-01-2006 09:43 AM
You can't see Step.Result.Status in the context tab while at a breakpoint because breakpoints occur between steps, thus there is no Step property at that time even though it does exist while a step is running.
However, you can inspect the value of RunState.PreviousStep.Result.Status in the context tab.