Create custom report.

All questions related to installations, configurations and maintenance of Advanced Host Monitor (including additional tools such as RMA for Windows, RMA Manager, Web Servie, RCC).
Post Reply
fve
Posts: 98
Joined: Sun Apr 27, 2008 11:25 am
Location: Denmark

Create custom report.

Post by fve »

Hi

I want a custom report that only list all my bad test. One items a a line.

But how to do this?
KS-Soft Europe
Posts: 2832
Joined: Tue May 16, 2006 4:41 am
Contact:

Post by KS-Soft Europe »

You should create new Custom report, open HTML Report Template window, click on "Test items" tab and clear up all positions (with "Good" statuses, Unknown (new), etc.). Into "Bad items (new)" area you may paste necessary variables, e.g:

Code: Select all

%TestName%   %Status%   %Recurrences%   %Reply%<br>
Of course, you may use more advanced HTML with <TR> <TD> tags.

If you do not need folder information, you also should clear up "Folder title" tab.

Regards,
Max
fve
Posts: 98
Joined: Sun Apr 27, 2008 11:25 am
Location: Denmark

Post by fve »

Thanks for reply.

But how to put different color on the status?
KS-Soft Europe
Posts: 2832
Joined: Tue May 16, 2006 4:41 am
Contact:

Post by KS-Soft Europe »

Something like this:

Code: Select all

<TR><TD  bgcolor=Red>%TestName%   %Status%   %Recurrences%   %Reply%</TD></TR>
or this:

Code: Select all

<TR>
    <TD>%TestName%</TD><TD bgcolor=Red>%Status%</TD><TD>%Recurrences%</TD><TD>%Reply%</TD>
</TR>
Look, "Custom HTML report" provides you powerfull engine to create different reports. You just should understand how it works. When you take a look at "HTML Report Template" window, you could mention, that all tabs represents particular part of web page. "Header" and "Footer" tabs depict top and bottom of the HTML page, "Folder Title" tab represent folder level info, "Test items" tab represent items level. You just have to try an you will understand how it works.

Regards,
Max
fve
Posts: 98
Joined: Sun Apr 27, 2008 11:25 am
Location: Denmark

Post by fve »

Hi

Thanks:-)
Post Reply