Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member206070
Participant

Refresh the report for every N Seconds in Web Intelligence

Dear All,

This document will give you an Information about "How to Refresh the Report automatically for every N seconds" in SAP Business Objects Web Intelligence



First open the Web Intelligence Rich Client and select the source connection and select the objects into the Result Objects Panel

Then Run Query, after generating the report click Save the report

After that, Just reopen that same report, Go to properties--> Documents --> Select REFRESH ON OPEN and save the report again.


After that Go to Report Elements --> Cell--> Blank and Just drag and drop the Blank in to the report panel

Select that blank and write the code like below:

<script>

  1. self.parent._askConfirmationBeforeClosingDoc=false;

setInterval(function(){window.parent.parent.location.reload();},n*1000);

</script>

But in the above screen shot “n” is the number of seconds. So, depends on the requirement can change the “n” like below.

For this select 10 sec.

After that go to the Blank Cell and right click and select Format cell

Then, Go to Read content as and select HTML and apply

Just save that report and close once. Again open that same report and will see: Every 10 sec it will refresh automatically.



Regards,

Ravikanth M


3 Comments
Labels in this area