02-17-2009 10:16 PM
Hi,
I use post step failure callback to handle failures in my sequence. The post step failure callback sequence has lot of steps in it. I realized that other callbacks like post step runtime error callback and Post result list enrty do not work for steps in Post step failure callback. Any suggestions for handling errors in the post step failure callback?
Also i have to generate a report for steps in the post step failure callback. How do i do this?
Thanks,
Ananthi
Solved! Go to Solution.
02-20-2009 06:41 PM - edited 02-20-2009 06:42 PM
Hi Ananthi,
The attached example demonstrates how to add the contents of PreStep and PostStep callbacks to the report. You can use this logic for the post step failure callback.
Let me know if you have questions.
02-25-2009 10:17 PM
Thanks for your response. I use developed a similar approach for reporting. I use the Locals.Resultlist property of the seq file post step failure callback to accumulate the results and have a LabVIEW VI in the clean up step group for pulling out the results from the locals.Result List and writing to an excel file.
Thanks,
Ananthi
02-25-2009 10:24 PM
To Handle run time errors in the Post Step failure Callback, i select ignore run time errors for each step in the Post step failure callback and put a post action in each step "Step.Result.Status==Error" Goto "Error Handling Section" where i do the custom Error handling for my sequence.
Thanks,
Ananthi