A script-enabled browser is required for this page to function properly.

<tabular> XML tag

The <tabular> tag delimits a tabular style within a section of the report’s layout. If you use the <tabular> tag, then you must also nest <field> tags to list the fields you want to include in the tabular layout.

Syntax

<tabular> 
  <field>
  </field> 
  [...]
</tabular>

Examples

The following example shows a segment of an XML report definition that defines a section with a tabular layout inside of it:

<section name="header"> "
  <tabular name="M_summary" template="corp2.tdf">
    <labelAttribute font="Arial" 
       fontSize="10"
       fontStyle="bold"
       textColor="white"/>
       <field name="F_ports" 
         source="ports" label="Port IDs" 
         font="Arial" fontSize="10"/>
       <field name="F_locations" 
         source="locations" label="Port Names" 
         font="Arial" fontSize="10"/>
  </tabular>
</section>

See also

About XML in reports

Oracle Reports XML tags