- A call center needs a mechanism to communicate performance metrics to the office without daily emails, meetings and paper-printed dashboards
- An IT organization needs to track hardware utilization 'in real time' with passive notifications activated during peaks and irregular activities
- The firm's testing team needs the ability to communicate defect and resolution metrics against service level agreements across multiple teams
Short of daily emails and unnecessary meetings, it was up to the individual worker to take the initiative to stay informed. The above scenarios can be effectively resolved through the use of 'Dashboard Displays' on flat screen TVs strategically placed throughout the office to keep leadership informed and team members accountable.
When we think of how OBIEE is used, the typical scenario that comes to mind is a user logging into the analytics front page. While little documentation exists, it is certainly possible to transform OBIEE from a 'user-based interactive analytics tool' to a 'dashboard style display fitted to large monitors'.
The main issue OBIEE Architects face is how resolve the issue of stale data across the technology stack. Stale data can exist within the BI Server, BI Presentation Services and even in the browser. Each component has its own resolution technique as well as potential issues. When a dashboard is displayed on a static monitor, a mechanism must be in place to ensure it's refreshed and timed correctly with existing agents.
This guide is going to outline the steps required to implement OBIEE for the above scenarios. The technology used includes:
Add the following red code to the file:
Navigate to:
Step 1.3 Modify web.xml
Decompress the analytics.war and analytics-ws.war file using 7zip and modify the web.xml in each war file by adding the red code to the file:
When we think of how OBIEE is used, the typical scenario that comes to mind is a user logging into the analytics front page. While little documentation exists, it is certainly possible to transform OBIEE from a 'user-based interactive analytics tool' to a 'dashboard style display fitted to large monitors'.
The main issue OBIEE Architects face is how resolve the issue of stale data across the technology stack. Stale data can exist within the BI Server, BI Presentation Services and even in the browser. Each component has its own resolution technique as well as potential issues. When a dashboard is displayed on a static monitor, a mechanism must be in place to ensure it's refreshed and timed correctly with existing agents.
This guide is going to outline the steps required to implement OBIEE for the above scenarios. The technology used includes:
- iFrame Bursting (disabled by default in OBIEE 11g)
- Oracle WebLogic to redeploy modified XML components
- goURL
- HTML (Meta Tags)
- Oracle BI 11.1.1.7.0
Some blogs on the web recommend using javascript to achieve this but I do not recommend this approach as javascript execution is based on the permission of the browser and has the potential to be disabled. At the very least a pop up box will appear asking the user if they authorize the javascript function to execute - not a pleasant end user experience.
Furthermore, Oracle has acknowledged that the mechanism they developed for auto-refresh does not work and no known resolution exists - see Doc ID 1416002.1 and Bug 13058029. What is interesting is that Oracle's method used to work in OBIEE 10g!
Step 1: Enable iFrame Bursting
By default, OBIEE 11g server does not allow dashboards to be displayed in an iFrame. The reason this is done is to better secure the dashboards and prevent hackers from using an iFrame to overlay malicious content.
Step 1.1. Navigate to export/obiee/11g/instances/instance1/config/OracleBIPresentationServicesComponent/coreapplication_obips1 and modify instanceconfig.xml
Add the following red code to the file:
<Security>Step 1.2 Download analytics.ear
<InIFrameRenderingMode>allow</InIFrameRenderingMode>
</Security>
Navigate to:
/export/obiee/11g/Oracle_BI1/bifoundation/jee and download analytics.earThe analytics.ear file contains two war files that house the web.xml that needs to be modified.
Step 1.3 Modify web.xml
Decompress the analytics.war and analytics-ws.war file using 7zip and modify the web.xml in each war file by adding the red code to the file:
<servlet-name>RelatedContent</servlet-name>
<url-pattern>/RelatedContent</url-pattern> </servlet-mapping>
<context-param> <param-name>oracle.adf.view.rich.security.FRAME_BUSTING</param-name> <param-value>never</param-value> </context-param><login-config> <auth-method>CLIENT-CERT</auth-method> </login-config>
Step 1.4 Upload & Recompress the war files
Upload the two war files back to /export/obiee/11g/Oracle_BI1/bifoundation/jee
Step 1.4.1 Recompress analytics.war
Navigate to:
/export/obiee/11g/Oracle_BI1/bifoundation/jee/analytics/analytics
Execute:
jar cvf0 ../analytics.war
(Note: Include the space and period at the end of the command)
Navigate up one level to:
/export/obiee/11g/Oracle_BI1/bifoundation/jee/analytics
Delete the analytics folder so that the only files that remain in that directory are:
(1) META_INF, (2) analytics.war, and (3) analytics-ws
Step 1.4.2 Recompress analytics-ws.war
Navigate to:
/export/obiee/11g/Oracle_BI1/bifoundation/jee/analytics/analytics-ws
Execute:
jar cvf0 ../analytics-ws.war . (Note: Include the space and period at the end of the command)Navigate up one level to:
/export/obiee/11g/Oracle_BI1/bifoundation/jee/analytics
Delete the analytics-ws folder so that the only files that remain in that directory are:
(1) META_INF, (2) analytics.war, and (3) analytics-ws.war
Step 1.5 Recompress the analytics.ear file
Navigate to:
/export/obiee/11g/Oracle_BI1/bifoundation/jee/Rename the old analytics.ear file as a backup
Execute: jar –cf analytics.ear –C analytics . (Note: Include the space and period at the end of the command)e)Delete the analytics folder.
Make sure that the analytics.ear file was produced in the export/obiee/11g/Oracle_BI1/bifoundation/jee/ folder.
Delete the analytics folder.
Step 2: Restart BI Services
This can be achieved by either running opmnctl stopall via command line or through Enterprise Manager as depicted below:
Step 3: Create a test HTML file with the embedded iFrame:
Open a text editor of your choice and paste in the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<HTML>
<HEAD>
<TITLE>Important Dashboard</TITLE>
<META http-equiv=no-cache>
<META content=900 http-equiv=refresh>
</HEAD>
<BODY>
<IFRAME style="Z-INDEX: 998; POSITION: absolute; WIDTH: 100%; HEIGHT: 100%; TOP: 0px; LEFT: 0px" src="http://yourdashboard.com/ImportantDashboard" frameBorder=no scrolling=auto> </IFRAME>
</BODY>
</HTML>
Note the two important components highlighted in red:
- The Meta tags forcing the automatic refresh every 900 seconds.
- The iFrame that embeds the URL of your dashboard
- The ability to display dashboards on a static device (large monitor) that will have little human interaction but requires up to second (or in this case every 900 seconds) data
- The ability to embed a dashboard in an iFrame.
keywords: OBIEE 11g, iFrame, auto-refresh, answers, web.xml, instanceconfig.xml, goURL, analytics
I am trying to use the GO URL to display a report (table view with sorting, pagination, etc) and not a OBIEE dashboard in an IFRAME. I have been able to to display the Sampe Lite\Sample PKI dashboard in an IFRAME, but I can't get the URL syntax correct to display just the report and the not full dashboard page. I'm not having any success. Help!
ReplyDeleteThanks for your update.
ReplyDeleteCan I use this method ad BI publisher dashboard autorefresh?
Many thanks
Oracle Business Intelligence Online Training, ONLINE TRAINING – IT SUPPORT – CORPORATE TRAINING http://www.21cssindia.com/courses/oracle-business-intellegence-online-training-124.html The 21st Century Software Solutions of India offers one of the Largest conglomerations of Software Training, IT Support, Corporate Training institute in India - +919000444287 - +917386622889 - Visakhapatnam,Hyderabad Oracle Business Intelligence Online Training, Oracle Business Intelligence Training, Oracle Business Intelligence, Oracle Business Intelligence Online Training| Oracle Business Intelligence Training| Oracle Business Intelligence| If you’re serious about a career in IT, 21st Century would like to provide you a guidance don’t hesitate to organize a free demo session. For any further information regarding the courses once go through our website Visit:http://www.21cssindia.com | Call Us +917386622889 - +919000444287 - contact@21cssindia.com
ReplyDeleteI am trying to follow the directions but I have a problem with 1.3 where you say to modify the web.xml file for analytics-ws.war. The code example that you provided does not exist in that file, only in the analytics.war path. Is there something missing?
ReplyDeleteIt was actually wonderful reading this info on How-to: Automatically Refreshing Dashboards in OBIEE 11g via iFrame Bursting- The Flat Screen TV Use Case and I feel you are entirely right. thanks for sharing Valuable Information.
ReplyDeleteWhilst there are common elements between portals and dashboards, they each have unique characteristics that underlie their individual purpose and contribution.kpi dashboards
ReplyDeleteOBIA online training Evanta technologies provide you the best OBIA online training with step by step procedure for installing, customizing and configuring of OBIA.
ReplyDeleteThank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyDeleteIELTS Coaching in chennai
German Classes in Chennai
GRE Coaching Classes in Chennai
TOEFL Coaching in Chennai
spoken english classes in chennai | Communication training
Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyDelete| Certification | Cyber Security Online Training Course|
Ethical Hacking Training Course in Chennai | Certification | Ethical Hacking Online Training Course|
CCNA Training Course in Chennai | Certification | CCNA Online Training Course|
RPA Robotic Process Automation Training Course in Chennai | Certification | RPA Training Course Chennai|
SEO Training in Chennai | Certification | SEO Online Training Course