Oracle Bi Solutions

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Thursday, 2 May 2013

OBIEE11g - Drop down reports

Posted on 00:51 by Unknown

Aim is to select a report from the drop down list and open a report in a new window


This exercise is carried out on OBIEE 11g version.


First of all I am going to open few existing reports and copying the URLs in the address bar of the IE. We have to use those URLs in the java script code shown below.


In the code - I have copy pasted the URLs of the 4 existing reports on my machine - look at the Option value tag and have done some kind of formatting. 


You can replace the URLs by URLs of your own reports and check if that works or not.
 Here I want the report to be opened in a new window and hence the window.open(newPage) in the java scription function GOTO()


Put this code in the Text object of Dashboard editor and check the HTML option.





<html>
<SCRIPT LANGUAGE="JavaScript">
<!--
function GOTO(frm) {
    var newPage = frm.url.options[frm.url.selectedIndex].value
    if (newPage != "None") {
            window.open(newPage)
    }
}
//-->
</SCRIPT>
<table width="1200" border="7" >
<tr>
<td style="background-color:#FFB089;">
<h3>SELECT A REPORT FROM THE DROPDOWN LIST AND PRESS GO</h3>
</td>
</tr>
</table> <br /><br /> 
<FORM>


<SELECT  NAME="url" WIDTH=20>
<OPTION VALUE="None">Select a report >>>


<OPTION VALUE="http://usblrnmehandal1:7001/analytics/saw.dll?PortalGo&Action=prompt&path=%2Fshared%2FRRR%2FColumnSelector">
Column selector report


<OPTION VALUE="http://usblrnmehandal1:7001/analytics/saw.dll?PortalGo&Action=prompt&path=%2Fshared%2FRRR%2FDistrictSelector">
District selector report


<OPTION VALUE="http://usblrnmehandal1:7001/analytics/saw.dll?PortalGo&Action=prompt&path=%2Fshared%2FRRR%2FInline%20Prompt">
Inline prompt report


<OPTION VALUE="http://usblrnmehandal1:7001/analytics/saw.dll?PortalGo&Action=prompt&path=%2Fshared%2FRRR%2F25th%20Percentile">
25 percentile report


</SELECT>
<INPUT TYPE=BUTTON VALUE="Go!" onClick="GOTO(this.form)">
</FORM>
</html>















We have selected here Inline Prompt report and pressed Go.
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Posted in OBIEE | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • Upper Function
    In Oracle/PLSQL, the  upper function  converts all letters in the specified string to uppercase. If there are characters in the string that ...
  • OBIEE 11g Hide/Show Sections based on Dashboard Prompt
    allow a user’s interaction to hide/show certain sections of a dashboard. In this particular case the user wanted to choose either ‘Quarterly...
  • [OBIEE11g] - OBIEE Dashboard for Informatica Metadata Reporting
    The metadata that Informatica Power Center 8 retains in its repository can be exposed via OBIEE reports and dashboards. This metadata includ...
  • [ODI] - Frequently Asked Questions (FAQ)
    Here is a list of FAQs about Oracle Data Integrator 1) What is Oracle Data Integrator (ODI)? 2) What is E-LT? 3) What components make up Ora...
  • OBIEE 11g not showing new dashboard in the drop down menu
    When creating New dashboard in  OBIEE 11g, I have faced with issue that dashboard name did not show up in drop down dashboard menu. 1. When ...
  • Data Modeling: Schema Generation Issue with ERwin Data Modeler 7.3
    We are using Computer Associate’s ERwin Data Modeler 7.3 for data modeling. In one of our engagements, we are pushing data model changes to ...
  • Installation Informatica Powercenter 9.1 on Oracle Enterprise Linux 5.6
    Ingredients: Program Version Filename Oracle Express 11G 11.2.0 oracle-xe-11.2.0-0.5.x86_64.rpm SQL Developer 3.0 sqldeveloper-3.0.04.34-1.n...
  • Informatica Powercenter Workflow Manager Repository Navigator docking float issue
    In case you’re also experiencing where your Repository Navigator is not dock or attached and it seems just floating within Workflow Manager ...
  • [OBIEE11g] - Creating Dashboard Traversing Through Graph
    The general requirement asked for by customers is that they want to Click on the Main Dashboard Page’s Graph and be transferred to the other...
  • OBIEE 11g - Query Limit
    Query limit and number of minutes a query can run per physical layer database connection, follow the below steps. > Login to Repository u...

Categories

  • BI Publisher
  • DAC
  • DataWarehouse
  • Hyperion
  • Informatica
  • OBIEE
  • ODI
  • Oracle Applications EBS 12.1.3
  • Oracle Database
  • PL/SQL
  • SQL
  • Unix/Linux

Blog Archive

  • ▼  2013 (500)
    • ►  November (8)
    • ►  October (1)
    • ►  July (4)
    • ►  June (9)
    • ▼  May (15)
      • OBIEE 11g - Upgrade from 11.1.1.6.X to 11.1.1.7 on...
      • OBIEE11g - Upgrading OBIEE 11g to 11.1.1.7 in Wind...
      • Creating Aggregates Using Aggregate Persistence Wi...
      • Creating BI Publisher Reports with OTBI Subject Ar...
      • Hyperion - Creating Corporate Workspace Pages
      • OBIEE 11g - MBean attribute access denied.
      • OBIEE11g - Setting the Default Dashboard
      • OBIEE 11g - Integrating with EPM workspace in hype...
      • Reset forgotten password in OBIEE 11G RPD
      • Upgrade Old nested folders using the Convert Prese...
      • OBIEE 11G Integration With SmartView – Create Rep...
      • OBIEE11G and SmartView integration – Oracle BI Of...
      • OBIEE 11G integration with SmartView – Access OBIE...
      • OBIEE11g - Drop down reports
      • OBIEE11g - Add Google Search on the dashboard page
    • ►  April (24)
    • ►  March (43)
    • ►  February (73)
    • ►  January (323)
Powered by Blogger.

About Me

Unknown
View my complete profile