06-27-2014 10:05 AM
Well I have to test 10 UUTs
I get that number from SAP
requirement is such that every time I test a UUT as GOOD there has to be an automatic counter which the Operator can see how many more are left to be tested , (Tested as good or Bad)
can this be directly implemented using Teststand (does teststand offer something to generate such statistic ) or I have to do this thr some tricky Coding
06-27-2014 04:30 PM
06-30-2014 02:34 AM
Hi Dennis,
I have a VI Library (internal) to acess SAP.
SAP gives me the totla no to test. But the no of units tested are good or bad is determined ny teststand thats why the ?
06-30-2014 08:00 AM
You need to do 2 steps :
1) Storing\processing of the values within TestStand :
You can store the values in Station global.Example : nooffuut ,noofuutfail and noofpass
Once you get the no off UUT to test from SAP..store in a station global - nooffuut
Once the UUT are tested ( you can use post uut callback for this) update it in station global noofpass++ for pass or noofuutfail++ for fail
2) Displaying the status :
You can use message box to display no of uut,no of pass, no of UUT left.
This can be done in Pre UUT callback before the start of the next UUT or in POST uut at the end of present testing.
Or if you have a custom UI it can be displayed there also (need bit of programming).
Hope this helps.
Ravi
06-30-2014 08:11 AM
Ravi,
Obviously I can do that Programatically
I wanted to know If teststand provides any Built-IN Mechanism for the same.
It will be a cleaner Approach
06-30-2014 08:21 AM
06-30-2014 08:39 AM
06-30-2014 09:01 AM
I am with Dennis:
If you require this (or similar "QA" information) somewhere else, you should think about ONE solution for it. Using databases with appropriate select statements (or maybe even stored procedures to create VIEWS) seem to be a wise choice for this.
Norbert
06-30-2014 09:03 AM
Thanks Guys,
are there any egs for this Database Approach
06-30-2014 10:14 AM