<formlike>
XML tagThe <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.
<formLike>
<field>
</field>
[...]
</formLike>
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>
Copyright © 1984, 2005, Oracle. All rights reserved.