Table

A <table> tag contains a data table, consisting of the column headers and at least one row.

Syntax: Table

Read syntax diagramSkip visual syntax diagram
>>-<table--+------------+-->--+------------------------+-------->
           '-id=“token”-'     '-<name>--token--</name>-'   

                       .---------.             
                       V         |             
>--| Column-Headers |----| Row |-+--</table>-------------------><

Tag/Fragment Description Type
id unique table ID token
name name of a table token
Column-Headers unique names of the columns in the report table See Column-Headers
Row performance data See Row

Example XML code:

<segment id="3"><name>Details for all Channels</name>
<part id="4">
<table id="5">
<column-headers>
<col type="T">Channel Path ID</col>
<col type="T">Type</col>
<col type="T">Generation</col>
<col type="T">Shared</col>
<col type="T">Status</col>
<col type="N">Util% (LPAR)</col>
…
</column-headers>
<row refno="1">
<col>0D</col>
<col>OSD</col>
<col/>
<col>Yes</col>
<col>Online</col>
<col>0.24</col>
…
</row>
<row refno="2">…</row>
</table></part></segment>

Resulting browser display:

Details for all Channels

Channel                                   Util%
Path ID  Type  Generation  Shared Status  (LPAR) …

0D       OSD               Yes    Online  0.24	  …	
30       FC_S  9           Yes    Online  0.04	  …