03-14-2022 08:14 AM
Hi all,
How to normal determinated a Lot testing such as attachment,in Range_Check Step when Pop-up dialog box and two button select "Stop" & "Continued",if Selected "Stop" the code need to end testing,actually is still run in MainSequence and jump if statement judgement execution.
Any comments will be highly apricated!!
03-14-2022 08:33 AM
If you would like to use TSM, you need to use a Semiconductor Multi-Step type and add tests for it to evaluate pass/fail and bin it.
Now, you're missing to publish the pass/fail to TSM using Publish API in the code module and use it in the Tests Tab.
03-14-2022 09:06 AM
Thanks for your reply, I have updated it as your comments, where need to quotation this variance.
03-14-2022 06:04 PM
Your implementation is correct to publish the pass/fail into TSM.
I believe your message was lost in translation, could you please rephrase your goal and question?
03-14-2022 07:15 PM
I just want to judgement of Boolean status then do action, if Pop-up message box hint "Stop" End lot testing, opposite hint "Continue "resume testing.
But when I hint "Stop" only jump if statement judgement still execution in Mainsequence,How to Normal terminated Lot.
Thank for you in advance!!
03-14-2022 08:13 PM
True = Continue
False = Terminate Lot
To achieve the above behaviour, please swap the values of continue and terminate in the two-button dialog in your VI.
Before I get to how to achieve your goal, typically the test program should not determine whether to terminate or continue testing, the only job of the test program is to test the DUT and return a pass/fail. The decision to continue testing should be determined by the Handler Driver or PreBatch sequence.
You could do these in two ways,
BTW, I think I know about your work from the sequence structure and names, I would suggest reaching out to your engineering counterparts in Europe to get help learning TSM.
03-14-2022 11:16 PM
Thank you very much for your always support. I will try it again.