<section>
XML tagThe <section>
tag delimits
the beginning and ending of a section in the layout of the report definition.
The <section>
tag must
be nested within the <layout>
tag. A report might have up to three sections in its layout.
<section
name= "header | main | trailer"
width="section_width"
height="section_height"
>
section_contents
</section>
Parameters /Options |
Descriptions |
|
Is the section name: |
|
Is the width of one physical page (including
the margin) in the unit of measurement of the report (for example, |
|
Is the height of one physical page (including
the margin) in the unit of measurement of the report (for example, |
The following is an example of a <section>
definition:
<layout>
<section name="header">
<field name="F_ssn1"
source="ssn"
formatTrigger="F_ssn1FormatTrigger"/>
</section>
<section name="main">
<field name="F_ssn"
source="ssn"
formatTrigger="F_ssnFormatTrigger"/>
</section>
</layout>
Copyright © 1984, 2005, Oracle. All rights reserved.