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

<formlike> XML tag

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

Syntax

<formLike>
  <field>
  </field> 
  [...]
</formLike>

Example

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

<section name="main">
  <formLike name="M_empform" template="corp2.tdf">
    <labelAttribute textColor="green" alignment="center"/>
    <field name="f_deptno" source="deptno" 
      label="Department"/>
    <field name="f_mgr" source="mgr" 
      label="Manager">
      <labelAttribute textColor="red" 
        alignment="center"/>
    </field>
    <field name="f_job" label="Job" 
      source="job"/>
  </formLike>
</section>

See also

About XML in reports

Oracle Reports XML tags