Re: OBIEE 11g Dashboard Page Prompt

Hi all,
We have a Dashboard page in that multiple reports is there and one Region prompt is there with the scope of page level ,
once i gave the filter with that prompt every report is filtered based on that prompt values .
but in that reports for a particular report we were already drill down based on hierarchy and the remaining all reports are in highest level , now we were applies the filter through the prompt the remaining reports are filtered based on prompt value except that report which is in already drill down mode .
Can any body help me out , is it a tool limitation/ i have to do any changes.
Thanks,
Ravi

Hi,
The report will react to a prompt only if there is a is promt column in that report. Check if there a is prompt filtered column in the report and remove it.
If you think that column is to be filtered as Is prompted and should not react to the dashboard prompt, then need to check...
Thanks

Similar Messages

  • Link to OBIEE 11g Dashboard Page from a 10g Dashboard Page

    Hi all,
    Is it possible to place a Link object on a dashboard page (within OBIEE 10g) and have that navigate to an OBIEE 11g dashboard page?
    If so, how is that implemented?
    Our 11g and 10g environments are on different servers.
    For business reasons (and budgets) we are not migrating our entire 10g environment to 11g just yet.
    Thanks.

    You can use Go URL as long as they are on same network domain [Go URL|http://docs.oracle.com/cd/E21043_01/bi.1111/e16364/apiwebintegrate.htm#i1005050]
    http://sureshotstrategies.wordpress.com/2008/12/13/integrating-oracle-obiee-content-using-go-url-syntax-2/
    http://www.iwarelogic.com/2010/09/integrating-oracle-obiee-content-using-go-url-850/
    Hope this helps.
    SVS

  • OBIEE 11g Dashboard page load performance issue

    Hi All,
    One of my dashboard is taking for 5 to 15 min to load,Once the dashboard is displayed reports are coming fast. Dashboard has 5 pages.
    Eg:
    When I click on Dashboard -> XXXX Dashboard. It took 5 to 15 min to display the dashboard page. Reports are coming fast once the page is loaded.
    Please help me on this.
    Regards,
    Hari

    Cool,
    Thank you for sharing the opinions of you.
    My English i'snt so good. May not have expressed myself correctly.
    In response to my post, I said that "OTHER" point which should also be evaluated is the environment you are using. not that this point is paramount.
    Since the OBIEE is generated queries, the evaluation of queries generated and sent the data sources for sure should be evaluated.
    thank you guys

  • Character blinking/flickering/flashing on obiee 11g dashboard page

    Hi all,
    I have a dashboard with one page/tab where we have taken one text item with below html script. My business requirement is to make a particular word or a text to be blinking or flashing whatever. I have used below options to achieve
    1. text-decoration:blink;
    2. <blink>my text<\blink> ----this is not supported by IE & mozilla browsers.
    but the above options did not work, is there any work around to achieve this. Any pointer would be appreciated.
    <!-- HTML Part 1 -->
    <style>
    .gcr_link, .gcr_link:visited {
    font-size: 14px;
    font-weight: bold;
    font-family: Arial;
    color: #660000;
    </style>
    <div style="text-align:center;margin-top:25px;">
    <table border="0" cellpadding="15" cellspacing="1" bgcolor="#cccccc">
    <tr>
    <td bgcolor="#ffffff" width="100" align="left" valign="center"><img src="/analytics/res/sk_blafp/b_mozilla_4/gcr/1.png" /></td>
    <td bgcolor="#ffffff" width="400" align="left" valign="center">
    <p><a class="gcr_link" href="/analytics/saw.dll?Dashboard&PortalPath=%2fshared%2fSector%2f_portal%2fCredit%20Portfolio%20(Sector)&Page=01%20Sector%20Overview">Credit Portfolio (Sector)</a></p>
    <font color="#660000"><b>Please note that between working day 3 and 16, R&A data is subject to adjustment.</b></font>
    <p>Sector management identifies the shape we want our portfolio to take in rebuilding standalone strength. Whilst each individual transaction will be considered on its merits, we have highlighted our appetite for each sector into three categories.</p>
    <p>The reports here show sector appetite limit management, cluster summaries, Divisional positions, trends and RWA against average PD.</p>
    </td>
    </tr>
    </table>
    <!-- End HTML Part 1 -->
    Thanks & Regards

    Hi paul & venkat thanks for you inputs, finaly we have used below javascript to achieve it.
    <head>
    <script type="text/javascript">
    <!--
    spe=500;
    na=document.all.tags("blink");
    swi=1;
    bringBackBlinky();
    function bringBackBlinky() {
    if (swi == 1) {
    sho="visible";
    swi=0;
    else {
    sho="hidden";
    swi=1;
    for(i=0;i<na.length;i++) {
    na.style.visibility=sho;
    setTimeout("bringBackBlinky()", spe);
    -->
    </script>
    </head>
    <body>
    <font color="#FF0000"><b><blink> MY TEXT GOES HERE.</blink></b></font>

  • OBIEE 11g Dashboard Prompt Reset Button Functionality

    Dear Experts,
    Can anyone explain what is the exact functionality of 'Reset' Button in any OBIEE 11g Dashboard Prompt.
    If anyone found any documentation related to it... please let me know.
    thanks,
    Varun

    Hi Varun,
    This is the functionality of Reset button,
    Reset will go back to last applied values. It does not clear values. Currently the Reset button works in the following ways:
    if 1) the prompt is blank 2) select some value, 3) reset 4) it should go back to blank.
    if 1) the prompt is blank 2) select some value, 3) apply 4) reset. 5) it should NOT to back to blank. actually it does not change anything.
    if 1) the prompt is blank 2) select some value, 3) apply 4) change any values 5) reset. 6) it should undo any changes in step 4.
    Rgds,
    Dpka

  • OBIEE 11g: Dashboard not invoking simple javascript alert

    Hi Experts,
    I'm trying to invoke one simple ALERT command with javascript in obiee 11g dashboard. The purpose is when it loads, it should print one ALERT message and also when we change something in the prompt and clicking Apply button.
    Here is code written in a text item (Checked html markup option) after prompts;
    <script language="Javascript">
    alert ("Hello");
    </script>
    The Javascript alert message is showing when the dashboard page loads, but its not coming when we click the Apply button after changing the prompts.
    Can anyone give helpful hint, how to check it and why its not showing up when we press Apply button?
    Any hint or some useful links will b highly appreciated.
    Thanks in advance.

    You just used code and I would say the default event is onload of the page, thats the reason you are able to see alert.
    Since you didnt ask or written code onClick event to show alert, its not showing.
    You need to tell to browser when to prompt alert message instead of onload.
    Hope you are more confuse about 'how to do'
    if yes, mark :)
    give some more info about your actual req. that helps any other gurus to help.
    Edited by: Srini VEERAVALLI on Mar 27, 2013 8:42 AM

  • View maps on OBIEE 11g Dashboard

    Hi All,
    My Installation: I have OBIEE 11g installed on Windows Server 2008. My Database is SQL Server 2012.
    My Requirement: Display maps in OBIEE Dashboard.
    Firstly, from the various posts available online, I have understood that the OBIEE 11g MapViewer works ONLY with Oracle database. If this is true then I need another way to view maps because I don't have Oracle DB.
    Can I have Google maps on my OBIEE dashboard ?
    Any suggestions/advice will be highly appreciated.
    Thanks n Regards
    Dev
    Edited by: Devpriyo on Mar 25, 2013 3:45 PM

    Hi Dev
    Did you find the resolution.Even I am facing the same issue.It would be great if u have found the solution.
    Regards
    Kishore

  • OBIEE 11G DASHBOARD CREATION DIFFICULTIES

    i HAVE BEEN TRYING TO SAVE MY ANALYSIS ON A SHARED FOLDER SO THAT I COULD PULL IT OUT TO CREATE ADDITIONAL DASHBOARD PAGES BUT THIS MESSAGE KEEPS POPING UP: CANT SAVE IN ROOT FOLDER. THIS MADE IT DIFFICULT FOR ME TO ADD CONTENT TO A NEW DASHBOARD PAGE. EVEN WHEN I SAVED ON MY FOLDER IT IS IMPOSSIBLE TO FIND IT. PLEASE CAN SOMEBODY FIND AN ANSWER FOR ME.

    You just used code and I would say the default event is onload of the page, thats the reason you are able to see alert.
    Since you didnt ask or written code onClick event to show alert, its not showing.
    You need to tell to browser when to prompt alert message instead of onload.
    Hope you are more confuse about 'how to do'
    if yes, mark :)
    give some more info about your actual req. that helps any other gurus to help.
    Edited by: Srini VEERAVALLI on Mar 27, 2013 8:42 AM

  • OBIEE 11g Dashboard Customizations

    Hi All,
    I have this question which I need to be able to resolve in a short window. I have deployed a new skin for the OBIEE Dashboard and everything is working fine apart from the color or the Dashboard Page name being messed up.
    Please refer attached link for a screen-shot of the issue.
    https://plus.google.com/u/0/photos/114302734370650365790/albums/5966634315151450721
    Thank you in advance

    User, please post your question in the right forum. This forum Community Feedback and Suggestions (Do Not Post Product-Related Questions Here)
    is not for product related question as the name tells you.
    Try Business Intelligence Suite Enterprise Edition
    Timo

  • OBIEE 11g Dashboard dropdown

    Hi,
    In OBIEE 11g the dashboards are located in a dropdown box (to choose from), not so nice - I think. Is it possible to change this appearance so it looks like in OBIEE 10g? Hopefully a setting somewhere.........

    Hi,
    I too have the same need, I think the 10g dashboard layout is easier to work with.
    Thanks
    Hicham

  • Report Links in OBIEE 11g Dashboard not displayed correctly

    In the Dashboard pages the Report Links for Export are not displayed correctly .
    Instead of showing the multiple options for export/download it shows just text.

    It can be done by doing below steps.
    1) before doing this take a backup of instanconfig.xml file and do the below changes...
    You can configure various options that change the way that right-click interactions are handled in views for an analysis at runtime. The elements in the instanceconfig.xml file specify the default settings for a new or upgraded analysis. You can edit the properties of an analysis in Presentation Services to modify how the analysis handles right-click interactions in views.
    Before you begin this procedure, ensure that you are familiar with the information in Section 3.4, "Using a Text Editor to Update Configuration Settings."
    To manually configure for interactions in views:
    2) C:\Oracle\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfig.xml
    Open the instanceconfig.xml file for editing,
    3)
    Locate the sections in which you must add the elements
    Include the elements and their ancestor elements as appropriate, as shown in the following example:
    <ServerInstance>
    <Analysis>
    <InteractionProperties>
    <InteractionPropertyAddRemoveValues>false</InteractionPropertyAddRemoveValues>
    <InteractionPropertyCalcItemOperations>false</InteractionPropertyCalcItemOperations>
    <InteractionPropertyDrill>false</InteractionPropertyDrill>
    <InteractionPropertyGroupOperations>false</InteractionPropertyGroupOperations>
    <InteractionPropertyInclExclColumns>false</InteractionPropertyInclExclColumns>
    <InteractionPropertyMoveColumns>false</InteractionPropertyMoveColumns>
    <InteractionPropertyRunningSum>false</InteractionPropertyRunningSum>
    <InteractionPropertyShowHideSubTotal>false</InteractionPropertyShowHideSubTotal>
    <InteractionPropertySortColumns>false</InteractionPropertySortColumns>
    </InteractionProperties>
    </Analysis>
    </ServerInstance>
    4) Save your changes and close the file.
    5)
    Restart Oracle Business Intelligence.
    Mark as correct if it is helpful :)
    Thanks.

  • Adding 'All' filter in Obiee 11g dashboard prompt

    Hi All,
    I am using ver 11.1.1.5
    My requirement is to see all data in dashboard prompt as well as there should be another item its 'ALL' which return the all data.
    Example:
    There is a dashboard filter on a field type (like: Value1,Value2) , our client want to see the data on filter (like: ALL,Value1,Value2) the ALL will filter the boat Value1and Value2.
    Please explain with steps.

    You have to go with SQL Results in the prompt something like below.
    The 2nd statement can be other way so that its return all values..
    Make sure that similar you have in report too so that you get all values for ALL
    SELECT COL1 FROM "SA"
    Union
    SELECT CASE WHEN COL1 IS NOT NULL THEN 'ALL' ELSE COL1 END FROM "SA"
    instead of not null you may go for like '%'
    if helps mark

  • OBIEE 11g - Dashboard Prompts - Radio Buttons

    I have a report where I need to run 3 different ways based on the same filter with different values. Each way has multiple values. I was hoping to create a Dashboard prompt as a radion button to allow the user to select which variation of the report to run. I would like the radio button to pass the multiple values to the filter based on the user's selection. Does anybody know if this is possible? If not, is there another reccommended way. I would prefer not to save three versions of the same report with the only difference being a filter. Also, I would prefer for the users not to have to select multiple values each time they run report depending on the version they want to run.
    Thanks,
    William
    Edited by: user11228139 on Aug 5, 2011 8:51 AM

    wfortson wrote:
    I would like the radio button to pass the multiple values to the filter based on the user's selection. Does anybody know if this is possible?I see only one way. You create the dummy report with appropriate number of columns for filtering using combine request. Each request in this complex report will correspond a choosing in a radio button prompt. In a main report for every filtering column you need to use option 'results are based on another request'.

  • OBIEE 11g Dashboard Prompts

    Hi,
    I need some help on possible designs for dashboard prompts. We have a number of prompts which are based on SQL Results (custom query) in some dashboards. Unfortunately obi cannot "Limit values by" or constrain values returned by the selected values of another prompt.
    My questions is what solutions have you tried & implemented to constraint the values returned by the selection values of another prompt when using SQL Results prompt?
    Thanks in advance
    Phil

    Hi,
    What we tried is having a presentation variable for the first prompt and according to the value of the first prompt, second prompt will show values.
    For example,
    First prompt has a presentation variable as @{first_prompt}
    Second prompt has sql results as -SELECT "dim1_column1" from sh where "dim1_column2"=@{first_prompt}
    Hope this helps.
    Regards
    MuRam

  • OBIEE 11g Dashboard Prompts can be  selected sequencely (unhide/hide)

    Hi,
    I want to show dashboard prompt sequencely. The user completed one of dashboard prompt the other prompts can be hide.
    How can I make a relationship between dashboard prompts for selection the prompts one by one?
    Do you have any suggestions?
    thank your replies.

    Thanks. I would need only ONE Clarification.
    the Fact table has data at Date Level. For Example,
    Date Revenue Stage
    20120101 123.98 1a
    20120302 178.965 1b
    20120401 768.99 1c
    The report should contain the following columns based on date range selection:- Start Date & End Date
    Start_Date_Revenue End_Date_Revenue Start_Date_Stage End_Date_Stage
    So, I have used FILTER(Revenue using Date = 'Presentation Variable for Start Date') & FILTER(Revenue using Date = 'Presentation Variable for End Date') for Revenue Calculation.
    Similarly, is there any way to retrieve the stage columns data for each date and show it in report?
    Note:_ I have tried the filter function for Dimension Column to bring Stage but it works only for Measure Column

Maybe you are looking for

  • How to Insert WMV or MOV in DreamWeaver?

    Hello All, I'm new to DW CS3, and I haven't worked with web pages in some time now. I thought that in earlier versions of DW it had a function to place/insert MOV and WMV files? How can I do that in DW CS3? Thanks in advance

  • AdWords connecting to fraud sites are appearing in articles opened in FireFox. Can this be fixed?

    Hi Guys In the last two days I have experienced a hijacking of my browser. I have opened a web page and there have been embedded links to "unauthorised advertising" on the pages. Worse, sometimes the links are hidden. I fell victim to one of the hidd

  • Sound disappearing on vi

    I have an X-Fi ExtremeMusic and in vista after doing anything for 0-30mins the sound just disappears. Cant find anything to do other than reboot. Any suggestions?Also Audiodg.exe runs anywhere from % - 90% cpu just to listen to anything. Any advice o

  • Regarding Date data in the format of WEEKLY , MONTHLY , QUARTERLY , YEARLY

    hai i have one Infoobject(ZDATE) which is created based on the Reference Characteristic(ocalday) and contains data in the YYYYMMDD format. I want same date data in weekly , monthly , quarterly and yearly. So for this one i need to created ZWEEK , ZMO

  • Newest Bios

    I am going to get my replacement 790fx-gd70 tomorrow Wednesday. After get everything installed(hardware) I was thinking updating the Bios. Originally I saw the 1.9, now I see 1.A. Should go with this new version? If so then let me get the install pro