Here is a piece from Oracle doc:
Modify the template information below to match your environment:
1. Change the http command to match your server name and call the cgi or cartridge.
2. Create the reports you are running and add names to this html file.
3. Copy the information below into a text file and name .html
(This will create your html form to call over the web).
4. Copy the file into your webserver document directory, e.g. c:\orant\ows\doc
5. Call the file from your web server
This will call the html file, now you can run your report.
NOTE:
There may be a problem calling reports that do not have a parameter form.
Suggestion: Create one form for reports with a parameter form and one for reports without a paramform.
DISCLAIMER:
This code is not supported by oracle support. This information is only meant to
help create a html form. If the report runs fine
from the browser alone however runs slow from the browser then it would not an oracle issue.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
copy below this line
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<html>
<head>
<TITLE>List of SunCollect Reports</TITLE>
</head>
<BODY bgcolor="white">
<form METHOD=GET ACTION="
or r30ows>?"
<!--Parameters not exposed to user are hidden-->
<center>
<font color="red"><H1>Select the desired report:</H1></font>
<BR>
Report Name :
<INPUT name=report type=text value="empparm.rdf"><BR>
Static URL Information:
<INPUT name=server type=text value="rep30"><BR>
<INPUT name=userid type=text value="scott/tiger"><BR>
<INPUT name=destype type=text value="cache"><BR>
<INPUT name=desformat type=text value="pdf"><BR>
<INPUT name=paramform type=text value="html"><BR>
Output Format:
<SELECT name=report>
<OPTION value=emp.rdf selected> employee-report
<OPTION value=empparm.rdf> paramater-report
</SELECT> <BR>
<HR><INPUT type=submit value="Run Report!">
</CENTER>
</FORM>
</HTML>
--------------------------------------------------------------------
copy above this line