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

After Report Value property

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:

</body>
</html>

Required/Optional

Required, if you set the After Report Type property to File.

PL/SQL procedure

SRW.SET_AFTER_REPORT_HTML

Restrictions

Usage notes

Examples

Example 1:  Append text

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>

Example 2:  Links to home pages

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>'

See also