Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OBIEE Dynamic (Refresh the dashboard and change the Filter values every 5 minutes)

Hi guys,
Can anyone assist with the requirements bellow. The client wants to display this report on a screen or projector and it has to refresh in a specific intervals and the below prompts has to be updated and the report should refresh as well.
- We have 3 Filter parameter (Business Unit, Application Type and Channel).
- This report has to be refreshed at a specific interval (5 unites for example) and refresh the results.
- For example Filter on Scenario 1:
- Business Unit = ‘SME'
- Application Type = ’New’
- Channel = ‘O’
- Then refresh the page as usual
- Filter on Scenario 2:
- Business Unit = ‘SME'
- Application Type = ’Add Sim’
- Channel = ’T’
- Etc.
- Attached is the example image.
Answers
-
-
Thank you Robert. I tried the below code given by @SriniVEERAVALLI in my Narrative view.
But, my analysis wasn't getting refreshed every 5 second. Can you please suggest me? Please find the below screenshot.
Code:
<!DOCTYPE html>
<html>
<body><p>A script on this page starts this clock:</p>
<p id="demo"></p><script>
var myVar=setInterval(function(){myTimer()},5000);function myTimer()
{
var d=new Date();
var t=d.toLocaleTimeString();
//document.getElementById("demo").innerHTML=t;
//setTimeout("javascript:HereLink('d:dashboard~p:i3pub16he83q7e9c~r:qqq9loggk8hvpl85','Refresh');",5000);
//or
//setTimeout("HereLink('d:dashboard~p:i3pub16he83q7e9c~r:qqq9loggk8hvpl85','Refresh');",5000);
}
</script></body>
</html>Screenshot:
0 -
You need to keep in mind that this thing is a piece of code ...
< = <
> = >
And you are also supposed to remove the doctype, html and body elements as you are already inside a webpage.
You maybe want to git familiar with the basics of HTML and javascript.
Or look inside Sample App (OBIEE Samples ) which has examples of code to refresh analysis in a page based on timer etc.
0 -
Here is another solution for refreshing dashboards on desired intervals. You may want to give it a try:
https://www.jamescoyle.net/how-to/1907-javascript-to-refresh-all-obiee-dashboard-analysis
0