12-12-2007 04:43 AM
12-12-2007 06:29 AM
Hi,
You could do this by including The ProcessCleanup sequence callback in you Sequence File.
Within this sequence you can access
RunState.Caller.Locals.UUT.SerialNumber for the serial number
RunState.Caller.Locals.Report for the whole report
RunState.Caller.StartTime.Text for the start time
Regards
Ray Farmer
12-13-2007 04:01 AM
Hi knigth2
just visit this page Colelcting step results data from process model?
http://forums.ni.com/ni/board/message?board.id=330&thread.id=17440
greetings
juergen
12-13-2007 04:44 PM - edited 12-13-2007 04:51 PM
While you certaintly could use the method described in that post (navigating through the ResultList array), I think the alternate method (using a callback) is much simpler and easier.
Probably the PostUUT callback would be easiest, since it has a parameter directly for sequence result. If you use the post UUT callback, you could use the following:
Parameters.UUT.SerialNumber for the serial number
Parameters.Result.Status for the status string
RunState.Root.Locals.StartTime.Text for the start time
12-17-2007 04:25 AM