Showing posts with label oracle. Show all posts
Showing posts with label oracle. Show all posts

Monday, April 13, 2020

Automation of Dashboard Refresh in OBIEE 11G

If we want the dashboard to be refreshed for every 'n' minutes then below HTML will be helpful, where you have to give (n x 60) seconds.
Insert the below html in the dashboard text layout and check the HTML markup checkbox.


<META HTTP-EQUIV = "REFRESH" CONTENT = "60">
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">

Don't forget to enable the "Contains HTML Markup"

So in this way the page which is being displayed in the browser can be refreshed automatically without manual intervention.


K@run@