The After Report Value property specifies a trailer to appear at the end of your document when the report's paper layout is run to HTML and viewed in a Web browser. This property has no effect on the Web source.
If you use HTML page streaming, this property applies to the last page of your
report output. To specify HTML to apply to the entire report (for example, background
color or images, or any other <body>
HTML attributes), you
must use the Before Page properties.
Applies to |
Reports |
Values |
Any filename or a text string containing valid HTML commands, depending on what you specified for the After Report Type. If the HTML specified is not valid, the generated HTML report output may not pass HTML 4.01 syntax checkers. |
Default |
The default HTML commands included at the end of a report:
|
Required/Optional |
Required, if you set the After Report Type property to File. |
PL/SQL procedure |
This property is useful for placing a logo or some standard links at the end of an HTML document.
Following is an example of a
value for the After Report Value property to append text to the HTML document:
<ADDRESS>
QUESTIONS? -
<A HREF=MAILTO:WEBMASTER@XYZTECH.COM>WEBMASTER@XYZTECH.COM</A>
</ADDRESS>
</BODY>
</HTML>
Following is an example of a value for the After Report Value property to insert two links to home pages at the end of the report output:
<CENTER>
<A HREF="HTTP://WWW.ORACLE.COM/">ORACLE CORPORATION</A>
-
<A HREF="HTTP://HOME.NETSCAPE.COM/">NETSCAPE</A>
</CENTER>
</BODY>
</HTML>'
Copyright © 1984, 2005, Oracle. All rights reserved.