HTML report (HPCAHTML)
The HTML report is a table format defined in HTML. It is suitable for display in a Web browser.
The following table shows the commands available for generating HTML reports:
| Command | Function |
|---|---|
| RPT.ORDER=DBD/GROUP/CC | Specifies the sort sequence |
| RPT.DATE=MDY/DMY/YMD/YDM | Specifies the date format for report headers |
| HPCAHTML DD | Specifies that the report output be directed to HPCAHTML |
Report order determines both the sequence of lines within the report and the sequence of fields within the line. Report order options include the following:
- DBD = DBD,DDN,NUM,GROUP,DATE,TIME ...
- GROUP = GROUP,DATE,TIME,DBD,DDN,NUM ...
- CC = CC,GROUP,DATE,TIME,DBD,DDN,NUM ...
The default order is DBD.
The following example shows an HTML report using DBD report order:
<html>
<head>
<title>HPCA Process Report 03/14/2024 02:01:45</title>
</head>
<body>
<table border=2>
<caption>HPCA Process Report 03/14/2024 02:01:45</caption>
<th>DBDNAME</th>
<th>DDNAME</th>
<th>NUM</th>
<th>CA GROUP</th>
<th>DATE</th>
<th>TIME</th>
<th>DFSULOG</th>
<th>DFSUCUMO</th>
<th>DFSUCUMN</th>
<th>PURGE</th>
<th>CC</th>
<th>DBRC</th>
<tr>
<td>PRSB02Z</td>
<td>PRSB02VA</td>
<td>47</td>
<td>PRSB02Z</td>
<td>24.074</td>
<td>02:01:47.1</td>
<td>000000230</td>
<td>000000000</td>
<td>000000021</td>
<td>24064022329860327+0000</td>
<td>0000</td>
<td>N</td>
</tr>
<tr>
<td>PRSB02Z</td>
<td>PRSB02Z9</td>
<td>10</td>
<td>PRSB02Z</td>
<td>24.074</td>
<td>02:01:47.1</td>
<td>000000189</td>
<td>000000000</td>
<td>000000017</td>
<td>24064022356428184+0000</td>
<td>0000</td>
<td>N</td>
</tr>
</table>
</body>
</html>
See Columnar reports (HPCACOLP and HPCACOLS) for the description of each field.