OBIEE 11.7 Graph issues

Good Morning
I recently did a new installation of OBIEE 11.7.0 everything is working fine except the fact that all my graph are not displaying.
I am not getting any error the graph simply does not appear, just a blank area where the graph needed to be.
When i add graph prompts etc it comes perfectly but the actual graph does not display.
Any suggestions?
Regards
Rayno

This might be browser issue.
For browser can you check flash version should be 11.9.900.170
use this link for the same.
http://helpx.adobe.com/flash-player.html

Similar Messages

  • Report Graph issue  in OBIEE 11.1.1.6

    Hi All,
    Reports with graphs which were working in OBIEE 11.1.1.3 and OBIEE 11.1.1.5 are not working in OBIEE 11.1.1.6.
    It displays only table views and in graph section it only displays prompt values without the graph.
    I have tried these reports from line to bar and bar to line but did not work..Only worked if i go for a pie chart.
    Most of the reports have failed bcoz of this issue in OBIEE 11.1.16?
    Did anyone face this prob?
    Is it a know bug?
    Thanks

    Hi 913804
    I am amazed you found the browser certification of OBIEE 11.1.1.6 I could not find it anywhere in the documentation nor from metalink personell.
    Regarding the graphs not showing, we found this to be an issue with IE and not with Firefox. First make sure you have followed the upgrade step listed in
    3.9.11.2 Updating Oracle Business Intelligence Catalogs from http://docs.oracle.com/cd/E23943_01/doc.1111/e16793/patch_set_installer.htm#PATCH250. Then the last resort was to recreate the graph component in each report from scratch. As you say pie charts are unaffected.
    Regards,
    Nick.

  • Line Graph Issue - In BIP values are summed for same date

    Hi
    I have below data
    Date-----------------------Sell
    27-Mar-13----------------10
    28-Mar-13----------------15
    28-Mar-13----------------20
    30-Mar-13----------------25
    There are two entries on 28-Mar-2013. On BIP line graph; Sell values are added and graph show value 35 on 28-Mar-2013.
    I want to show two different values on line graph for 28-Mar-2013.
    Edited by: 1010402 on Jun 7, 2013 12:49 AM

    Hi 913804
    I am amazed you found the browser certification of OBIEE 11.1.1.6 I could not find it anywhere in the documentation nor from metalink personell.
    Regarding the graphs not showing, we found this to be an issue with IE and not with Firefox. First make sure you have followed the upgrade step listed in
    3.9.11.2 Updating Oracle Business Intelligence Catalogs from http://docs.oracle.com/cd/E23943_01/doc.1111/e16793/patch_set_installer.htm#PATCH250. Then the last resort was to recreate the graph component in each report from scratch. As you say pie charts are unaffected.
    Regards,
    Nick.

  • OBIEE 11g: Dashboard Javascript Issue

    Hi Gurus,
    We have upgraded obiee from 10g to 11g and finding issues with javascript in a dashboard.
    Functionality: There are some custom labels showing prompt values in it with large font. When user change prompt value and Apply, it should change the value of those text as well.
    In 10g its running fine, but in 11g its not happening after we change the value of prompts. I found the following Javascript is responsible for this functionality. Even I saw one thread to suggest the exactly same code, but in 10g.
    <script type="text/javascript">
    (function(){
    var tblTag = document.getElementsByTagName('table');
    var tdElem= document.getElementsByTagName('td');
    for(m=0;m<tdElem.length;m++){
    if(tdElem[m].className=='GFPSubmit'){tdElem[m].childNodes[0].tBodies[0].rows[0].cells[0].childNodes[0].childNodes[0].innerHTML='Run Report';
    }//close if statement
    }//close for loop
    }// close function clickVal()
    </script>
    Thread:
    Change Go Button Text on Prompt Only
    I need to understand what its actually doing? and Does it really work in 11g? Whats the alternative code?
    Thanks in advance.

    In 10g these are the html objects, after upgrade you need to know the html objects for that report based on that you need to modify javascript code.
    From given code, activity is doing on these objects; You need to find out the equivalent object name for 'GFPSubmit' in 11g.
    GFPSubmit
    table
    td
    If make sense mark

  • OBIEE 11g SSL Configuration Issue : Unable to import the Server certs

    Hello All,
    We are trying to configure OBIEE 11.1.1.6.0 with SSL using Windows server 2003 (IIS) and facing some issues with that.
    Followed the document : OBIEE11g SSL Setup and Configuration [1326781.1]
    http://obieedue.blogspot.sg/2012/08/obiee11g-ssl-setup-and-configuration.html
    and also completed generating the required certificate signing request and keystores for SSL communication and sent it to the CA (IT Admin team) to to have the certificate signed by CA. The issue comes when I am trying to import the CA certificate (Root certificate) and Server Certificate into the Java Keystore.
    I am importing the Root CA Certificate first which is successfully added to the keystore.
    keytool -import -trustcacerts -alias mycacert -file cacert.pem -keystore mykeystore.jks -storepass Welcome1
    Trust this certificate? [no]: yes
    Certificate was added to keystore.
    But when trying to add the Server Certificate to the keystore using the command below :
    keytool -import -v -alias testserver -file server.cer -keystore mykeystore.jks -keypass Welcome1 -storepass Welcome1
    Certificate reply was installed in keystore
    I get the following error:
    keytool error: java.lang.Exception: Failed to establish chain from reply
    java.lang.Exception: Failed to establish chain from reply
    at sun.security.tools.KeyTool.establishCertChain(KeyTool.java:2662)
    at sun.security.tools.KeyTool.installReply(KeyTool.java:1870)
    at sun.security.tools.KeyTool.doCommands(KeyTool.java:807)
    at sun.security.tools.KeyTool.run(KeyTool.java:172)
    at sun.security.tools.KeyTool.main(KeyTool.java:166)
    Read many forums and tried to convert it to the PKCS#7 format and import the cert to the identity keystore, but was not successful in that either. I have also checked with the IT Admin team and found there is only one RootCA and no other intermediate CA's.
    Please advice if any one has similar issues or suggestions.
    Thanks in advance,
    SVS

    Hi,
    One obvious reason would be that you did not specify -trustcacerts, and the root CA is not included in the present server keystore. In that case, using the -trustcacerts option would solve the problem, if the root CA is indeed in the JDK cacerts.
    To print out the certificates present in the JDK cacerts, use the following command:
    keytool -list -keystore <JAVA_HOME>/jre/lib/security/cacerts -storepass changeit -v
    Then check if the root CA that signed your server certificate is present, and has not expired (in which case,you would need to re-import a newer one into cacerts).
    Another common reason for that error message is when you have used a proprietary CA to sign your server certificate. Then it would obviously not be in the JDK cacerts. The solution in that case is to import your proprietary root CA into the JDK cacerts, using the following command:
    keytool -import -keystore <JAVA_HOME>/jre/lib/security/cacerts -file yourRootCA.pem -storepass changeit -alias youralias
    A third reason for that error message is when your server was signed by an intermediate certificate. In that case, you would have received from your CA a chain of certificates. One way to solve this (not the only one, but this one works well): Prepend your intermediate CA file to your server cert file, and import the obtained concatenated file into the server keystore. Be careful, the intermediate CA must be BEFORE the server cert. Example:
    copy rootca.cer certchain.p7b
    type server.cer >> certchain.p7b
    The file certchain.p7b will be the concatenation of the intermediate CA and the signed server cert. Then import the newly created file under the key alias as follows:
    keytool -import -keystore serverks.jks -file certchain.p7b -alias yourkey -trustcacerts
    If you only prepend the intermediate root CA, you must make sure the the final root CA is in cacerts. But you can also prepend your whole chain of trust inside the server keystore.
    Regards,
    Kal

  • Report generation toolkit with excel 97 Graphing issue

    I am trying to set-up mu data output to use the report generation Vis. However I am running into a problem when trying to update 2 graphs on the same sheet in Excel.
    My set-up is:
    Windows XP
    Office 97
    LabVIEW 7.1.1 with the Office toolkit installed
    I noticed that I can write to the first Graph and update it without issues, but once I try to update the second I get error -41105 stating that MSGraph is not installed.
    I did notice that if I set a break point between the Excel Quit Graph.vi and Excel Update Graph.vi if I click the mouse within excel in removes the highlight border from the first graph, the I continue and it works fine. For some reason LabVIEW is not releasing that Graph to be able to select another.
    I tried to write data to a cell after quiting the graph and then selecting the second graph but that is not working either although it does work manually.
    Next I may try a Macro but I would rather not have to do that.
    Any suggestions?
    Jeff
    Jeff D.
    OS: Win 7 Ultimate
    LabVIEW Version: 2011,2010,2009 installed
    Certified LabVIEW Architect

    Well after some debugging I found it. Apparently for Excel 97 only there is a problem that when you qiut MSGraph it may not save properly so the VI had the Quit Property removed.
    I have added it into my code and it seems to work and will see how well it does and if I run into any problems.
    Jeff D.
    OS: Win 7 Ultimate
    LabVIEW Version: 2011,2010,2009 installed
    Certified LabVIEW Architect

  • 3D graph issues in 8.6

      I'm trying to program a simple 3D simulation in LabVIEW and am running into numerous issues with the 3D graphs.
    1) An old program I had used the 3D ActiveX graph.  When I load that VI, LV says it could not load the ActiveX control.  I never intentionally uninstalled it.  From the help I've found, it sounds like 8.6 should support the 3D ActiveX graph and the new Native (XControl) graph.  Any ideas how it might have come unstuck on my computer, or how to retrieve it?  It is also gone within LV 8.5 now too.
    2) I can find very little help about the new Native 3D Graph.  I found one example, which was amazingly incomplete.  No instructions on the front panel.  3 graphs were generated on the diagram, but only one was connected to the indicator.  Very odd.
    3) I first placed the graph on a tab control and had very odd display issues.  Someone had mentioned this type of problem recently (though I think they were referring to the ActiveX 3D Graph), so I moved it off the tab.  However, it still has odd display issues.  For example, often when the VI is not running, the graph control displays odd snippets of the Windows desktop - things that had been displayed on those pixels of the screen at some previous time.  When the program is running, the graph flashes between what it should display and these bogus images.
    4) I am using the  create_plot_line VI to try to create two lines on my graph.  As a sort of animation, I calculate  increasing arrays of points and continuosly update the graph with more and more points, so the line (trajectory) grows.  It seems like this is more like a "graph" than a "chart", so I should always create the plot with all the points that should be plotted, not just plot the one new point like you would with an old LabVIEW chart.  And that sort of works.  But if I leave the program running and restart the trajectory after it has already plotted it once, then a line appears from the end of the trajectory back to the beginning, as if it still has all the old points in some sort of memory and is adding new points, hence drawing a line from the last point from the first program iteration to the first point on the second iteration.  So I'm a bit confused about how this type of graph is supposed to be used.  Why are there no examples or instructions?  (Or am I just missing them - e.g. not seeing them, or maybe they got erased from my system like the ActiveX graph did...)
        Under the assumption that this graph is more like a picture control, where you add an element with one VI and pass the ref to another VI that adds another element, etc., I have tried wrapping the graph's main wire around in a shift register and only plotting the one new point.  It doesn't really seem to work...  The trajectory is there, but only when you rotate the 3D view.
    5) I want the two trajectories to be different colors.   Luckily there is a "color vector" input to the sub-vi that will probably do this.  But I can find no documentation on it.  You can't read this color vector with a property node, that I can find, so I can't get an example of the current color vector.  I can see this color vector in the 3D Graph Properties page, but at that point, you can only change the colors of the over and under points, not the main color ramp.  I tried specifying an array of color boxes, but didn't get reasonable results.  I probably don't have the right number of elements.  Interestingly, the Color Vector input is an array of reals!  The context sensitive help for the sub-vi is useless.  Isn't this documented somewhere?
    Thanks for any help,
       DaveT
    David Thomson Original Code Consulting
    www.originalcode.com
    National Instruments Alliance Program Member
    Certified LabVIEW Architect
    There are 10 kinds of people: those who understand binary, and those who don't.

    Dave Thomson wrote:
    5) I want the two trajectories to be different colors.   Luckily there is a "color vector" input to the sub-vi that will probably do this.  But I can find no documentation on it.  You can't read this color vector with a property node, that I can find, so I can't get an example of the current color vector.  I can see this color vector in the 3D Graph Properties page, but at that point, you can only change the colors of the over and under points, not the main color ramp.  I tried specifying an array of color boxes, but didn't get reasonable results.  I probably don't have the right number of elements.  Interestingly, the Color Vector input is an array of reals!  The context sensitive help for the sub-vi is useless.  Isn't this documented somewhere?
    Thanks for any help,
       DaveT
     CW 3d graph Example here.
    To set the color ramp you need to set the colors and the values and you need the same number of elements in each array. You will also have to set the ramp style you want to custom.
    Also note colrs are "BGR" not "RGB".
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • OBIEE 11G catalog security issue

    I have the following (simplified) requirement:
    - People with application role FIN should have access to analysis XYZ
    - People with application role HR should have access to analysis ABC
    - People with both application roles should have access to XYZ and ABC
    The above seems pretty obvious and per http://docs.oracle.com/cd/E29505_01/bi.1111/e10543/mgrgrpsusers.htm#autoId16 this should work without further ado, since the least restrictive access should be granted when roles with different permissions (FIN has nog permissions on ABC and HR no permissions on XYZ) are granted, however...
    We find that if role HR is not explicitly excluded from access to XYZ then it will always have access to XYZ. The same goed for FIN and ABC. But then when both roles are granted (with these explicit exclusions), user has access to neither XYZ or ABC. This actually makes sense, since explicit exclusions take precedence, but then how do I achieve my goal as stated above?
    The same logic applies to subject areas. If not explicitly excluded for either of the two roles, access is always granted. But if explicitly excluded, granting both roles excludes both subject areas.
    I have already checked inherited roles. The FIN and HR roles are based on standard BI Consumer roles, so they are both members of Authenticated User and BI Consumer. But even taking these into account, the same problem persists. Pretty sure I am overlooking something small and simple.

    Hi there. Does anybody noticed this issue on calendars?! That only occurs when the month is october....
    Just updating, the correct version of OBIEE is 11.1.1.5.0.
    Thanks in advance.
    Marcos

  • OBIEE 11g Union Report Issue

    Hi all,
    Did one any of you started development work on 11g? If so have you created Union reports in 11g?
    I am facing two issues afte creating Union reports.
    1.I am unable to sort the columns. (Report is automatically sorted according to alphabatical order)
    2. I am unable to create New calculation Item.
    Thanks

    Hi there. Does anybody noticed this issue on calendars?! That only occurs when the month is october....
    Just updating, the correct version of OBIEE is 11.1.1.5.0.
    Thanks in advance.
    Marcos

  • OBIEE 11g .0d date issue

    Hi,
    I create an initialization block to populate a couple of repository variables.
    After saving the RDP the value for the default initializer changes from 2011 to 2011.0d
    I have been using several workaround. But I need some permanent fix in rpd itself. Can anyone point to some Oracle Document? Is this issue been resolved in latest release of OBIEE. I am using 11.1.1.6.6.
    Workaround Ref : The .0d date issue
    Re: OBIEE 11.1.1.6.2 BP1 Repository Variable data type

    Have you gone through my suggestions at the below links?
    The .0d date issue
    Re: OBIEE 11.1.1.6.2 BP1 Repository Variable data type
    You have to do it where ever you are using that rep. variable not in the init block.

  • OBIEE 11g Hierarchy expanding issue

    Hi Experts,
    I have an Analysis report which I display hierarchy and I have many reports which contain hierarchy.
    But I have a specific report which only expand up to 1 level only unlike my other Analysis reports which display the hierarchy up to the last level.
    This report that only expand up to 1 level have many records (about 1.5K).
    Can you help me fix/resolve this issue about the hierarchy
    My OBIEE version is: 11.1.1.6 (11.1.1.6.0.120104.0152.000 to be exact).
    My hierarchy is properly displayed in other reports but one of my reports, the hierarchy is not displaying well.
    SCENARIO:
    all reports have same hierarchy fields to be displayed:
    report 1 (displays only 50 records or less) - good
    report 2 (displays only 50 records or less) - good
    report 3 (displays only 50 records or less) - good
    report 4 (displays more than 1000 records) - not working
    Thanks,

    Hi JaiG,
    My OBIEE version is: 11.1.1.6 (11.1.1.6.0.120104.0152.000 to be exact).
    Yes, the hierarchy is defined is defined in the repository.
    My hierarchy is properly displayed in other reports but one of my reports, the hierarchy is not displaying well.
    SCENARIO:
    all reports have same hierarchy fields to be displayed:
    report 1 (displays only 50 records or less) - good
    report 2 (displays only 50 records or less) - good
    report 3 (displays only 50 records or less) - good
    report 4 (displays more than 1000 records) - not working
    Thanks,
    any updates experts? :(
    Edited by: OBIEE Learner on Dec 13, 2012 12:42 AM

  • OBIEE 11g - Data Fetch Issue.

    Hi,
    I am facing this weird issue regarding data fetching while executing Reports in OBIEE 11.1.1.5. When I login to the BI user interface and execute any report for the first time, everything is working fine. Bt after that I am not able to execute any report later. Even the report executed for the first time, when I rebuilt and execute it I cannot see the data this time. The Results user interface says - The layout of this view combined with the data,selections,drills or prompt values choosen resulted in no data.
    Thanks in advance.
    Regards,
    Dev.

    Hi,
    I also encounter the same issue. When I view combined layout, I get the No Results message. But when I edit the table layout, I see that there are records returned. Does anyone had any luck in resolving this issue?
    Thanks!

  • OBIEE 11g RPD deployment issue.

    I have installed OBIEE 11.1.1.5.0 32 bit on windows7.
    I am getting issue while deploying RPD.
    I clicked on Lock & Edit button and it enabled the "Browse" button.
    I clicked "Browse" button and selected the new RPD file but it is not taking new rpd file.
    I noticed following as soon as I select the new RPD file:
    1. For a second my "New RPD file name" and "Update Button" appears under "deployment" tab but
    2. Page automatically refreshes and comes back with blank (in "Repository File" field) and "Update Button" disappears.
    Please help me..
    Thanks..

    Cnu,
    Thank you for your response.
    It refreshes and come back with blank in "Repository File" field(and "Update Button" disappears).
    I was following steps from below URL:
    http://obiee101.blogspot.com/2010/08/obiee11g-deploying-new-rpd.html
    In my case I am NOT seeing a screen like "screenshot 7" in above URL.
    Few following things I noticed but not sure any clue for problem that I am facing:
    1. "core applications" is down (with red down arrow) in my EM..
    2. "Repository File" field is in Gray Color(after I clicked on "Lock & Edit" button) and it would NOT let me type any text(I tried to enter my RPD path manually). It would let me type the "Repository Password".
    Really appricieate any help...
    Thanks,

  • Obiee 11g Chart sorting issue

    Hi All,
    I am trying to plot a graph in OBIEE 11g answers which shows Calendar Month in X-axis and percentage of marks in Y-axis,
    in such a way that Calendar Month in X-axis should be in the order Jan Feb Mar Apr .....(where as now it is Apr Aug Feb ... which is sorted in ascending order) Calender month is a calculated column in the report which has the following calculation
    case when cal_month=1 then 'Jan'
    case when cal_month=2 then 'Feb'
    case when cal_month=12 then 'Dec'
    How do i arrange the calendar month in a proper order of Jan Feb Mar .....
    Please advise
    Thanks,
    LonaD

    I've already mentioned OOB column to use, I'm not sure about your data. If you dont have it then might go for workaround to get number 1 to 12.
    BTW:Existing column 'Col month' as referred is not helping you?
    For ex: work around might be something like
    cast(substring("Year",3,2) as int)
    Mark if helps
    Edited by: Srini VEERAVALLI on Feb 5, 2013 12:43 AM
    you can create same in rpd so that you can sort it._
    Or else can go with work around using year column as above_
    Edited by: Srini VEERAVALLI on Feb 5, 2013 12:59 AM
    Edited by: Srini VEERAVALLI on Feb 5, 2013 1:01 AM
    Edited by: Srini VEERAVALLI on Feb 5, 2013 3:19 PM

  • OBIEE 11g Calendar alignment issue

    Facts: OBIEE 11g - 11.1.5 on Windows 2003 server.
    There's an alignment issue going on with OBIEE calendar, wich happens only when the month is october. For all other months, the calendar is displayed properly. It does not depend on the year. You may change the year and select October, you'll get the error.
    You might see what happens on the link below.
    http://img210.imageshack.us/img210/7876/firefoxds.jpg
    This behavior may occur when using IE9 (both using compatibility mode or not), Mozila Firefox and Google Chrome.
    I've looked over Metalink and the forums and could not find any information about this error.
    Any tips?!
    Thanks!
    Marcos
    Edited by: BI_Creation on Dec 1, 2011 11:37 AM
    Edited by: BI_Creation on Dec 1, 2011 11:40 AM

    Hi there. Does anybody noticed this issue on calendars?! That only occurs when the month is october....
    Just updating, the correct version of OBIEE is 11.1.1.5.0.
    Thanks in advance.
    Marcos

Maybe you are looking for

  • How to remove en completely newly install a game app

    Hi, I was playing a game, but i want to delete it and reinstall to start all over again from the start. I did al the things on this site discussions (hiding, removing etc.), but to no avail. In the store to download the app there's allways the 'cloud

  • Booting up with 0 brightness that can't be changed

    I have a late 2010 MacBook Air 11" with Windows 7 / Mac OS X dual boot. Windows 7 has been working great for a couple of weeks now, but this morning after Windows resumed I was presented with a blank screen (not backlit). I can see the resume animati

  • Nokia Lumia 920 Home button not working

    I was using my phone as usual and suddenly the home button stopped working.  I was on Facebook, wanted to go to the start screen because I had just received a text message and I realized the home button was completely unresponsive.  I tried a soft an

  • Changes in FBL5N

    Dear all How to bring  the field  Division in line item in FBL5N report . There is a difference in the Header Div and Line item Div in Sale order . Thanks Anila

  • Exporting pdf to xml

    We want to export pdf data into xml format (the same way as "Export Data" functionality in Adobe Reader). We have a huge set of pdf files to export (approx 20K). We got to know that we can achieve this using Acrobat 9  Professional software. Please s