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

<rw:dataArea>

The rw:dataArea tag provides a placeholder for report data that is inserted by the Report Wizard. It can optionally be used in conjunction with the rw:style tag. The rw:dataArea tag is used during the report design process when the JSP page is created, and has no effect at runtime.

Syntax

<rw:dataArea id="data_area_id" > 
   [tag body]
</rw:dataArea>

Attribute Value

Description

data_area_id

A mandatory attribute uniquely identifying the tag within the template JSP file (rwTemplates.xml).

Example

<rw:dataArea id="defaultLayout">
  <!-- Report Wizard inserts report block here! -->
</rw:dataArea>

At runtime, the rw:dataArea tag has no effect, and the body of the tag is simply evaluated and returned. In the preceding example, the output would be:

<!-- Report Wizard inserts report block here! -->

See also

Oracle Reports JSP tags

About JSP tags

About JavaServer Pages and servlets