05-19-2010 09:01 AM
Hi,
I am using a sequence which in turns calls many subsequences ,i want to discard the reporting of the mainsequence and I am intrested only in reporting the results for the subsequence called ,how can i achecive this?
Thanks in advance
-Bharathi
05-19-2010 09:10 AM
Disable results for all steps in your mainsequence other than the sequence calls that call your subsequences. You can disable results for a step by unchecking the Record Results checkbox on the Run Options section of the step settings. In TestStand 4.0 and higher you can select multple steps at once to change this setting on multiple steps at one time. You still need to record results for your sequence calls though or you won't get anything for those at all.
Hope this helps,
-Doug
05-19-2010 09:16 AM
Thanks for ur time
Even after disabling all the steps int he seqence I am getting only the sequancename in the result stating as "PASS" i dont want to see my main sequnce name itself in the report . i want to report only by subsequnce results
Thanks
Bharathi
05-19-2010 09:19 AM
To remove them, you would have to modify the report generation sequence or use the Callback ModifyReportBody to alter the report text.
What report format are you using?
Regards
Ray Farmer
05-19-2010 11:06 PM
it should be common for all the type of report regardsless of html,xml,text...
what could be the better way to do that?
Thanks in advance
bharathi
05-20-2010 12:34 AM
Unfortunately you want to change the structure of the report and each report format has its own report generation sequence file.
regards
Ray Farmer
05-20-2010 12:38 AM
Thanks for your time.
Is there a way i can edit the resultlist before the reporting sequnce is called
so that it could be generic and removes the pain of modifying for each report type
Thanks
Bharathi
05-20-2010 12:47 AM
Probably the best way would be to use the Callback SequenceFileResultList (not sure if I have got the correct name). With this callback you would be able to discard the results that you dont want.
But this still wont remove those headings for you.
Even if you use the ModifyResultBody callback you would still have to handle the Report Text differently.
Most users stick with one format and they ensure the results are in that format by using the ReportOptions Callback in there Sequence Files.
Regards
Ray Farmer
05-20-2010 12:50 AM
thanks for your time
i will try that ang get back to you
Thanks
Bharathi