03-26-2015 12:19 PM
Hi everyone, in my sequence file I callback the PreUUT sequence file. I want to be able to use one of the local variables I assign in this callback sequence in my main sequence. In my main sequence this variable will trigger if I should run some tests or not in my main sequence. Is this possible? How would I do this?
Thanks so much!
03-26-2015 04:23 PM
U need to make a parameter in your Callback, parameters are seen outside of sequences, then in PreUUT u will make statement to update parameter, or use the parameter in your callback directly
Parameters.MyPara=Locals.MyLoc
etc