<object>
XML tagThe <object>
tag identifies
an object in the report whose properties you want to change. The <object>
tag typically has <properties>
and <property>
tags nested within it.
<object
name="object_name"
type="REP_REPORT | REP_GROUP | REP_COL_MAP
| REP_GRAPHIC_TEXT"
>
property_definitions
</object>
Parameters /Options |
Description |
|
Is the identifier for the object to which you want to apply the properties. |
|
Is the kind of object to which you want to apply the properties:
|
|
|
The following example shows a segment of an XML report definition that defines some object properties:
<customize>
<object name="videosales" type="REP_REPORT">
<properties>
<property name="beforeReportType">
File
</property>
<property name="beforeReportValue">
d:\xml_reps\header_example.html
</property>
<property name="afterReportType">
Text
</property>
<property name="afterReportValue">
<![CDATA[
<center>
<font face="Arial,Helvetica">
<font size=-1>
<font color="#000000">
Send questions to <a href="mailto:your_email_id">YourNameHere</a>.
<br>
</font>
</center>
</body>
</html>
]]>
</property>
</properties>
</object>
</customize>
The following example shows a segment of an XML report definition that changes some boilerplate text. This is useful for changing labels for existing fields.
<customize>
<object name="B_high_365" type="REP_GRAPHIC_TEXT">
<properties>
<property name="textSegment">
High
</property>
</properties>
</object>
<object name="B_low_365" type="REP_GRAPHIC_TEXT">
<properties>
<property name="textSegment">
Low
</property>
</properties>
</object>
</customize>
Copyright © 1984, 2005, Oracle. All rights reserved.