Hi,
This has worked for me in a Cognos 10 environment and may be worth trying. Copy and Paste the code below into an HTML item. Adjust the interval time by changing the "RunReport()",'
100000' );" parameter (currently set to 100000 milliseconds (100 seconds))
Kind regards,
Kirk
<script type="text/javascript">
var intval;
var fW = (typeof getFormWarpRequest == "function" ? getFormWarpRequest() : document.forms["formWarpRequest"]);
if ( !fW || fW == undefined)
{
fW = ( formWarpRequest_THIS_ ? formWarpRequest_THIS_ : formWarpRequest_NS_ );
}
var preFix = "";
if (fW.elements["cv.id"])
{
preFix = fW.elements["cv.id"].value;
}
var nameSpace = "oCV" + preFix;
if(intval!="")
{
self.clearInterval(intval);
intval="";
}
self["RunReportInterval"] = self.setInterval( nameSpace + ".getRV().RunReport()",'100000' );
intval = self["RunReportInterval"];
</script>'
------------------------------
Kirk Lothian
------------------------------