07-13-2006 10:44 AM
07-14-2006 02:51 PM
07-17-2006 11:11 AM
07-17-2006 11:25 AM
You could look at the way the TestReport Callback works in the sequential model ?
You could add add a mechanism into that which you could use to log to your SPC package.
All the results for all the steps are available in there.
Or Even add your own step into the Test UUTs sequence, you can pass in the results list from there. Look at 'TestReport Callback' step.
07-27-2006 07:22 AM
Actually what I was looking at was to
1. Modifying the UUT data type to include some extra fields I need.
2. Modify Identify UUT in PreUUT callback sequence to add the additional fields and instantiate my object
3. Modify main in the to add a step after New UUT for Database Logging that would call my NewUUT
4. I have not figured exactly where to add measurement values, but I need to modify the standard step to do this.
5. Modify PostUUT to add a new item "Display Save Data Banner" which would ask if the data is valid and should it be stored.
6. Modify LogtoDatabase callback to a a step to call my object to store the data.
I think that this makes the modifications simpler then trying to get in to the local variables that the reporting function uses. Any thoughts on this.
07-28-2006 04:30 PM
08-02-2006 05:21 PM
Terry
In your last message you said this should work fine, and for the most part everything appears to be going smooth except for step 4. I still have not figured out just where to add measure data. I have traced the sequential model and it appears to me that data is only written to the log file, or to a database after the entire test sequence has run. At this time it processes the nested data elements to create the log. I would prefer not to have to recreate that in depth processing of data. Instead I would like to process data at the completion of every step in the sequence but I do not see how to create a callback to do that except in my sequence itself. Are there any other options?
Del
08-03-2006 04:08 PM
08-08-2006 05:52 AM
08-09-2006 10:14 AM