06-20-2011 05:20 PM
Hello,
In the TestReport callback I am attempting to call a subsequence that will create a custom report (in addition to the default report). The problem I face is most of the information for the custom report is located in "MainSequence.Locals." Is there a method to pass the variables via "TestReport.Parameter" or find it using the RunState stack?
Thanks!
Solved! Go to Solution.
06-21-2011 07:42 AM
I don't believe you can access the locals of your completed MainSequence execution - they are discarded when the MainSequence returns to the Process Model Entry point from the MainSequence callback. Assuming that you're using the TestReport Callback in your test sequence file, if you moved/copied your information to the FileGlobals of your test sequence file before you left the MainSequence, then the TestReport callback in your test sequence file could see them.
Hope this helps
-Jack
06-21-2011 11:00 AM
Hey Jack,
Thanks for the reply, that should work just fine.
-Brant