10g: BI Beans Graph sometimes not shown

Hi,
I have an ADF 10g BC jsf application which includes a graph (BI Beans Graph version [3.2.2.0.24]). Next to the graph is a selectable legend. The use case is as follows:
The graph shows the forecast algorithms for the selected material.
By default, the AlgorithmUser and AlgorithmSystem should be selected. There has to be a legend containing a selection box for every algorithm that should be selectable on the graph. By default algorithms SFA and AF should be selected
All shoud work synchroneously:
-     When next, previous or a material from the listbox is selected, than the graph and legend should be updated with new algorithmUser and algorithmSystem
-     When an other algorithmUser is selected, this should be directly visible on the graph and legend
-     When checkboxes on the graph are clicked, the graph should update and show the corresponding algorithms.
This is implemented as follows:
1.     The first thing needed is something to keep track of the selected algorithms. For this, we create a new Set in the application module together with the get accessor.
private Set<String> currentGraphData = new HashSet<String>();
public Set<String> getCurrentGraphData() {
return currentGraphData;
Expose the accessor in the application module.
2.     Now, this set should be filled with AF, SFA, algorithmSystem and algorithmUser when we move to the next, previous, first, last record, or by selecting a record by its index. To add this behaviour, open the VAdfLtf3SyfMaterialsViewImpl.java.
Add helper method:
private void updateAlgorithmList(Row row) {
if (row != null) {
String algoUser = (String)row.getAttribute("AlgorithmUser");
String algoSystem = (String)row.getAttribute("AlgorithmSystem");
FCSyfReviewModule mod = (FCSyfReviewModule)this.getApplicationModule();
Set data = mod.getCurrentGraphData();
data.clear();
data.add("SFA");
data.add("AF");
data.add(algoUser);
data.add(algoSystem);
This will insert the four default algorithms into the set when there is a current row (if the dataset is empty, there is no need to add the default algorithms)
Call the helper method for next, previous, … as mentioned above:
public boolean setCurrentRowAtRangeIndex(int i) {
boolean result = super.setCurrentRowAtRangeIndex(i);
updateAlgorithmList(getCurrentRow());
return result;
public boolean setCurrentRow(Row row) {
updateAlgorithmList(row);
return super.setCurrentRow(row);
public Row next() {
Row row = super.next();
updateAlgorithmList(row);
return row;
public Row first() {
Row row = super.first();
updateAlgorithmList(row);
return row;
public Row last() {
Row row = super.last();
updateAlgorithmList(row);
return row;
public Row previous() {
Row row = super.previous();
updateAlgorithmList(row);
return row;
So, if we now select an other record in any thinkable way, the Set will contain the correct four default algorithms.
3.     Now, we need only the graph data for the algorithms set in the Set. For this, open the Ltf3AdfSyfGraphDataRowImp.java
Add the following helper method
private boolean showData(String algorithm){
FCSyfReviewModule am = (FCSyfReviewModule)this.getApplicationModule();
Set set = am.getCurrentGraphData();
return set.contains(algorithm);
This method will take an algorithm code as input(MA3, MA6, EXP, PZD3, …) and returns true if it is in the Set.
Now, update the getMethods of all algorithms to use this helper method:
public Number getVolMa3() {
return showData("MA3")?(Number) getAttributeInternal(VOLMA3):null;
4.     Finally, the clickable legend has to be defined.
For this, create a new view object: Ltf3AdfSyfGraphLegend. Select ‘Rows Populated Progra;;atically, not Based on a Query’ Create a transient updatable attribute for every legend that can be selected. The transient attribute should be of type Boolean.
For query statement, enter “Select 1 from dual” a query has to be defined to make sure that the getters/setters are called on the userinterface page.
Create two new helper methods:
public Boolean getLegend(String algorithm) {
FCSyfReviewModule am = (FCSyfReviewModule)this.getApplicationModule();
Set set = am.getCurrentGraphData();
return set.contains(algorithm);
public void updateLegend(int AttributeId, Boolean value, String algorithm){
FCSyfReviewModule am = (FCSyfReviewModule)this.getApplicationModule();
Set set = am.getCurrentGraphData();
if (value.booleanValue())
set.add(algorithm);
else
set.remove(algorithm);
The first one will return true when the parameter algorithm is available in the Set. The getter methods will use this method.
The second one will update the Set object. If the value is true, than this means that it was false before, so the algorithm needs to be added to the set. If the value is false, than it was true before, and the algorithm needs to be removed from the set.
Now, getters and setters can be implemented as shown below.
public Boolean getMA3() {
return getLegend("MA3");
public void setMA3(Boolean value) {
updateLegend(value, "MA3");
and so on..
5.     Now, all logic is implemented. The only thing to do is to drag drop the components on the screen and update partial triggers:
a.     Drop materials as form
i.     bind algorithmUser to LOV and give it id algoUserList
b.     Create detail graph (see tutorial on graphs)
c.     Create previous and next button.
d.     Drop GraphLegend as ADF form
i.     By default all attributes are created as inputText, convert them all to SelectBooleanCheckbox, give every checkbox an id (use name of the algorithm for simplicity)
e.     Drop materials as navigation list, give it ID matList
f.     Set partial triggers
i.     On panelGroup surrounding the graph, add partial triggers from legend id’s, matList and algoUserList and prev/next button
ii.     On panelGroup surrounding the legend, add triggers: matList and algoUserList and prev/next button
Now, here is my problem: When this application is deployed on a server, this works fine most of the time. But sometimes when I click a legend the graph image just disappears. But when I reclick twice the graph is correctly shown. Can someone tell what the cause of this problem could be (rendering delay???).

dont worry too much about
oracle.dss.graph.GraphModelAdapter::setSupportedDataLayerFlags (): Current DataSource does not support requested type: MetadataMap.METADATA_VIEWSTYLE
its not a real error message more a warning one
have you looked at addiotional trace files and have other trace/warning/error messages ?
is your server running under unix and if so, is your display variable set ?
regards,
thomas

Similar Messages

  • The graph dose not shown after running the Customize JSP Page.

    Hi All,
    While creating customize JSP I am facing one problem - The graph dose not shown after running the Customize JSP Page.
    What are the possibilities ? any body has any Idea Please help me

    Hi all,
    I have the same issue! Any solution??
    Thanks
    BI Beans Diagnostics(v1.0.2.0) 11/10/06
    =========================================================
    JDEV_ORACLE_HOME .......................... = D:\jdev1012b1913
    JAVA_HOME ................................. = D:\ORDB10gR2Home\jdk
    JDeveloper version ........................ = 10.1.2.1.0.1913
    BI Beans release description .............. = BI Beans 10.1.2 Production Release
    BI Beans component number ................. = 10.1.2.67.0
    BI Beans internal version ................. = 3.2.2.0.24.2
    Connect to database ....................... = Successful
    JDBC driver version ....................... = 10.1.0.4.2
    JDBC JAR file location .................... = D:\jdev1012b1913\jdbc\lib
    Database version .......................... = 10.2.0.2.0
    OLAP Catalog version ...................... = 10.2.0.2.0
    OLAP AW Engine version .................... = 10.2.0.2.0
    OLAP API Server version ................... = 10.2.0.2.0
    BI Beans Catalog version .................. = 3.2.2.0.24
    OLAP API JAR file version ................. = "10.1.0.5.0"
    OLAP API JAR file location ................ = D:\jdev1012b1913\jdev\lib\ext
    Load OLAP API metadata .................... = Successful
    Number of metadata folders ................ = 1
    Number of metadata measures ............... = 23
    Number of metadata dimensions ............. = 8

  • Sometimes, some images are not shown...

    Hi!
    Out applet shows (or loads?) all images correctly, but sometimes, one or more images are not shown (or loaded?). What can it be?

    I am having a similar problem so maybe someone can help me too.
    I find that my images load correctly most of the time, but once in a while (say 1 in 4 attempts), some of them dont load. The reliability of this is much better now that I have moved the images out of the jar, but its still not right
    I also find that sometimes the classes do not load. I get classdef.not.found for a file that really should be there. I can see that the jar containing it has been downloaded to the temp dir. I have been clearing my cache out manually for now between every attempt.
    I am not sure what code to show. I dont think its necessarily a problem with images since classes dont always load either, but here is the code for loading images anyway.
            MediaTracker tracker = new MediaTracker(applet);
            for (int i = 0; i < img.length; i++) {
              img[i] = applet.getImage(urlCodeBase, imagePath + images);
    tracker.addImage(img[i], i);
    tracker.waitForID(i);
    if (tracker.isErrorAny()) {
    System.err.println("Error loading image " + images[i]);
    My web content is being delivered by 3rd party hardware which might be rather slow - its hard to tell. My entire web content is approx 200KB. Results are the same using IE or Mozilla.
    Any ideas would be a great help!

  • Some appointments are not shown sometimes

    I access a Webaccess server that is in GMT+1 timezone from GMT-5 timezone and have GW set to either GMT-5 explicitly or use workstation's timezone. I did this test on Sunday Feb 26 and couple hours into Monday Feb 27 (GMT-5) - I created an appointment for Feb 26, 11:00-11:59pm from within a week view. As soon as it was created, it was not shown either in week or day views or basic interface, but could only be seen in month view or when searching for appointments. That is just an example, it was not a single occurrence, but I had several test appointments like that. Then I also had appts that were not shown even in month view, but only in search results. Regarding that Feb 26 appt, it could be made seen again in day or week views if a different timezone was chosen in options. Today, Feb 27 at the end of the day, that appointment is seen no problem in day and week views and also in basic interface, so I do not have a reliable way of reproducing the problem. Since the appt was not shown even in basic interface before, I suspect it is a server time computation/database query problem and not browser graphics rendering problem. Also, there used to be a pdf file with Webaccess API that showed how to query calendar with startDate and endDate parameters which can be done in basic interface by manually editing the address field in browser and that part is broken too - Webaccess does not show some appointments after given start date, until the start date is moved up earlier to coincide with start of the day in GMT timezone. All that used to work fine in earlier GW versions. It looks like in GW2012 some big design changes were made and some serious bugs were introduced.

    The missing piece is how ( every other way of accessing the calendar ) sees the apointment. What happens from the Windows client? Does it show the missing appointment created in webaccess?
    Its certainly possible that some boundary condition bug is being exercised. But we need to get this to the point where it can be easily reproduced. I suspect the issue has to do with the time zone being signed differently, e.g. +1 vs -5.
    Webaccess is essentially a rewrite in 2012, this eliminated the GWINTER server component and so there are a lot of positives to this move. All things considered, its been pretty decent.
    -- Bob

  • Graph image not getting displayed when navigating from another page

    Hi All,
    I have implemented a line graph in ADF with "dept no"(in x-axis) and "avg sal"(in y-axis). When I am going to run only this graph page, its showing proper data.
    But,when I am trying to navigate from another jspx page (which is under some package) to this graph page, the graph is not getting displayed(graph image is not getting displayed).
    In my project I am following package structure for jspx and backing bean.
    Please help me to solve this problem.
    Thnx,
    Abhijit

    Abhijit,
    A couple of things:
    1). There's really not enough information provided to answer your question - have you tried doing some debugging?
    2). You may have beer luck on the [url http://forums.oracle.com/forums/forum.jspa?forumID=381&start=0]11g forum
    John

  • Yosemite 10.10.1: Finder/CIFS mount problem: wrong folder count/folders not shown @samba shares

    Hello to all,
    we have several MacBook Pro (15" MBP Retina 2012/13"MBP Retina 2014) running. After upgrading to Yosemite 10.10.1 we had one nightmare after the other.
    Most problems could be solved with 3rd party software upgrades but there are several problems with the operating system itselve which can not really  be called a professional productive system at the moment...
    Ok., one thing after the other...here is one of our biggest problems:
    After upgrading from Mavericks or Mountain Lion to Yosemite 10.10.1 the CIFS/SMB mounts to our samba 3.x servers, running on Ubuntu Linux LTS 12.04 makes trouble. We could mount the server shares but after browsing with the Finder the beach ball occures and the Finder hangs forever. Sometimes we could not refresh the Finder, killing the process ended in a complete hang-up of the system which ended in a switch off death blow. This is not amusing because we have 30Tb of customer data there, which has to be worked out.
    We heard about the SMB3 protocol which will be used per default in Yosemite and so we decided after some testings to upgrate our Ubuntu servers to the latest LSF 14.04. release with samba 4.1.6 installed. There was no message from Apple for this SMB protocol release upgrade, never heard something related to Yosemite (Why?).
    Ok, after these server upgrades and disabling most of the Spotlight functions the performance to the CIFS shares was a little bit better as before but now we have another problem with the Finder...if you browse to the shares there are folders missing which have lots of files in it. For example there is a folder with 60 subfolders and 3562 files on the first level in it, the Finder shows 220 files and 15 folders. The Terminal shows a different count with "find . -maxdepth 1 -type d | wc -l" or "find . -maxdepth 1 -type f | wc -l" but there is also a difference to the original file and folder count. It doesn`t matter if the clients are connected via WiFi or Gigabit Ethernet. We have no access problems. We have the same behavior if we set the files and folders to 0777 permissions on the servers. The deletion of the preferences files of the users on the MacBooks does not solve the problem. If we use the "Go To Folder" option and type the path to a folder which is not shown in the Finder you get an result or not. But it is also possible that the result is not correct and there are also still files or subfolders missing.
    In my opinion this is a timeout problem and a "special SMB3 protocol interpretation" which is buggy. We have one hint found in /var/log/system.log:
    "Jan 23 14:35:49 wsosx33.clients.getcom.de KernelEventAgent[69]: tid 54485244 type 'smbfs', mounted on '/Volumes/customersdata2015', from '//x144067:@srvlxp013.servers.getcom.de/customersdata2015', not responding"
    We had no problems with Mavericks at all, we still have no problems with Windows 7 Pro/Ultimate, Windows 2008R2 (native or virtual) or Linux Mint 17/17.1 clients, neither with samba 3.x nor with our actual environment and different newer samba releases.
    We believe that this is a big bug in Yosemite, but we cannot go back to Mavericks because of incompatible TimeCapsule backups. Our workarround at the moment is that we have installed Linux Mint on our MacBooks to get 80% of our daily jobs done, rest has to be done with Windows 7 installed over virtualbox @Linux.
    We have no clue at the moment how to solve this problem, the samba logs do not give any hint. The access from other operating systems is perfect and very fast, but not with Yosemite. We checked different tips found in the internet but nothing helped.
    Does anybody has another idea to get Yosemite working or should we keep Linux Mint until Apple will provide a CIFS/SMB patch and going on with our workaround solution, which is productive at the moment ??? Our staff is not amused and wants one solution and not this workaround with two operating system. We have to decide wether we wait until Apple will get this fixed or we have to switch to Microsoft Windows (which is a No Go for me, but I will not be asked...).
    Thanks in advance
    C.

    Hi William,
    thank you for your response.
    As you can read in my post I talked about CIFS/SMB.
    It makes no difference if we mount the share over CIFS or SMB.
    Folders with lots of files will not be shown even if we use SMB3 or an older protocol.
    As mentioned I believe this is a timeout problem.
    Does anybody know how the CIFS/SMB timeout setting in Yosemite could be changed?
    Kind regards
    C.

  • External-graphic not shown in PDF with Tomcat / Cocoon / Ubuntu

    Hi,
    this weekend I set up a virtualbox with Ubuntu 8.04 OS; APEX 3.12 @ Oracle 10gXE; Tomcat 6.014; Cocoon 2.1.11; fop_post sitemap file according to Carl Backstrom blogpost ([http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html]); to experiment with APEX & PDF printing.
    Tomcat is configured to listen to port 8888; APEX to 8080.
    I have setup APEX according to Carl's blogpost. All is working fine; I can generate PDF reports using the standard templates. I'm new to XSL, but decided to go wild. I decided to include a JPG graphic.
    I followed the example in Scott & Spendolini, Pro Oracle Application Express, page 399. However the image is not shown in the PDF, nor is there an error message produced. What is wrong?
    This is the relevant section of source code I have used:
    &lt;fo:static-content flow-name="region-footer"&gt;
    &lt;fo:block xsl:use-attribute-sets="text footer"&gt;
    &lt;fo:inline xsl:use-attribute-sets="body-font page-number"&gt;
    &lt;fo:external-graphics width="50px" height="50px" src='url("http://www.fiat128.nl/images/fiat128.jpg")'/&gt;
    &lt;fo:page-number/&gt;
    &lt;/fo:inline&gt;
    &lt;/fo:block&gt;
    &lt;fo:block xsl:use-attribute-sets="text text_2 #PAGE_FOOTER_ALIGNMENT#"&gt;
    &lt;fo:inline xsl:use-attribute-sets="page-footer"&gt;#PAGE_FOOTER#&lt;/fo:inline&gt;
    &lt;/fo:block&gt;
    &lt;/fo:static-content&gt;
    all help is appreciated. Is there a problem with Cocoon and Linux?
    many regards,
    Ronald van Dijk
    Edited by: user614694 on Oct 6, 2008 3:09 AM
    Edited by: Ronald van Dijk on Oct 6, 2008 3:10 AM

    Hello Ronald,
    Your code looks fine to me. Although xsl-fo is not very friendly for a slight change...
    This is an example I use during my PDF printing presentation:
    <fo:static-content flow-name="region-header">
    <fo:block xsl:use-attribute-sets="text text_2 text_0 #PAGE_HEADER_ALIGNMENT#">
    <fo:inline xsl:use-attribute-sets="page-header">#PAGE_HEADER#</fo:inline>
    </fo:block>
    <fo:block border="0.5pt solid silver"
    background-image="url('http://o11g1.apex-evangelists.com:7779/i/htmldb/apex_logo.gif')"
    padding="12pt"
    text-align="center">Apex Evangelists
    </fo:block>
    </fo:static-content>
    Does that work for you?
    (change o11g1.apex-evangelists.com:7779 to your hostname:port - and see that you get the image by using the url)
    I've sometimes seen problems displaying certain pictures or specifying the width.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/

  • N900 messages are not shown in Conversation folder

    can any1 plz help me with this problem!!!! my messages are saved in my cell but t z not shown n da conversation folder despite of having enough memory n my N900 ...
    Sohail,
    thanks
    MODERATOR'S NOTE:
    Subject title was edited to the most appropriate topic for the post.

    here you go.   follow this exactly as i type, one step at a time, line-by-line.
    this will fix your conversations issue, but all your conversations will be deleted.
    i think that you would agree, having your conversations working is much more important then keeping 10,000 text messages that are just cluttering up your device.
    1.  install rootsh onto your device by doing the following:
    -if you dont have the Extras-Devel repository installed, then click on the link for each to auto-install it first.
    -open your application manager (App. manager)
    -select "Download" (this will be faster if you are on wifi)
    -select "all"
    -slide out your keyboard and type "rootsh"
    -tap on rootsh
    -tap on "I undertand and agree"
    -tap on "continue" (it will download and install rootsh and show when it is done.)
    -close application manager (App. manager)
    2.  Open your x-terminal (x-term)
    -type "sudo gainroot"
    -tap the return arrow
    -you should see:  "BusyBox v1.10.2  (Debian 3:1.10.2.blah, blah, blah"...and then "/home/user #")
                      if you see the above, then move on.  If you see anything that pertains to something being open or beside the above, it means that your App. Manager is still running in the background or is not closed.   make sure it is closed and then if necessary, reboot your device to be sure.  if you rebooted, then after the reboot, start at step 2.
    *when you see "/home/user #" then continue with the below:
    -type "cd .rtcom-eventlogger"
    -tap the return arrow
    -type "sqlite3 el-v1.db .dump > el-v1.db.sql"
    -tap the return arrow
    -type "sqlite3 el-v1.db.new < el-v1.db.sql"
    -tap the return arrow
    -type "cp el-v1.db.new el-v1.db"
    -tap the return arrow
    -type "chown user el-v1.db"
    -tap the return arrow
    -type "chgrp users el-v1.db"
    -tap the return arrow
    Now close and/or re-open your Conversations app - the changes should be immediate!
    it will be empty, but you should be able to see them now.  there seems to be a bug that still needs to be fixed and is triggered when a sms that is recieved is bigger then 140 characters..."sometimes"
    hope that helps.

  • OC4J not shown in enterprise manager... but in opmn yes !!!

    hello friends.
    info:
    Server: Sun Solaris SPARC 64
    application server: 10G 10.1.2.0.2
    I have a problem with OC4J on our production server, it is not shown on enterprise manager, and the applications inside it working well, but now we need to upgrade the version of the application, I cant find that OC4J in my enterprise manager.
    opmnctl status: show it and it is alive.
    I maybe able to undeploy/deploy via dcmctl, but really need this to work thriough enterprise manager
    Many thanx in advance for your advices
    A.Salloum

    Hello all,
    Many thanks for your replies,
    I found the solution finally,
    I opened the file $ORACLE_HOME/sysman/emd/targets.xml, all the OC4Js were there except the one I wanted, I added it to targets.xml, and every thing is good now
    Regards,
    A.Salloum

  • Signature not shown in print preview

    hi ,
    I have uploaded a signature in sap script as .tiff image  through se78 and i am trying to see the print preview of the same.
    It is not  shown in print preview ,
    I have embedded the image like this in editor.
    /: BITMAP &ZFI_TP_SIGNATURE& OBJECT GRAPHICS ID BMAP TYPE BMON DPI 500
    can any one tell me if there is anything wrong in this..?
    Thanks,
    Kamala

    Hi Kamala,
    1 Try to Print it and see whether it is printing or not , sometimes images will be overlapped with other windows so if u can print and  see ,then we can know whats the issue , if its the printer or dimensions ..
    2 also try to Print the Signature from SE78  and see whether it is printing..
    surya

  • Setting the series color of a bi beans graph based on the data values

    How do I conditionally set the series color of a bi beans graph based on the data values?
    I am using the following code to get the data values and set the series color:
    Graph gr=(Graph)CmdrDashboardP1_pres1.getView();
    DataAccess da=gr.getGraphModel().getDataAccess();
    DataDirector dd=gr.getDataDirector();
    DataMap dm=dd.getDataMap();
    int re=dd.ROW_EDGE;
    int ce=dd.COLUMN_EDGE;
    Object val=da.getValue(re,ce,dm.DATA_TYPE);
    int seriesCount=da.getEdgeCurrentSlice(DataDirector.ROW_EDGE);
    if (val <=45.0)
    gr.getSeries().setColor(new Color(255,0,0),seriesCount);
    I get a NullPointerException from the line of code "Object val=da.getValue(re,ce,dm.DATA_TYPE)." I have tried the code with DATA_UNFORMATTED as well, but get the same exception. When I print the DataMap value of dm the results are [dataUnformatted, dataViewFormat, value, dataIsTotal, dataType].
    Also, I get the error "method <= (java.lang.Object,double) not found in class _CmdrDashboardP1" from the "if (val <=45.0)" code.
    Thanks for any assistance

    How do I conditionally set the series color of a bi beans graph based on the data values?
    I am using the following code to get the data values and set the series color:
    Graph gr=(Graph)CmdrDashboardP1_pres1.getView();
    DataAccess da=gr.getGraphModel().getDataAccess();
    DataDirector dd=gr.getDataDirector();
    DataMap dm=dd.getDataMap();
    int re=dd.ROW_EDGE;
    int ce=dd.COLUMN_EDGE;
    Object val=da.getValue(re,ce,dm.DATA_TYPE);
    int seriesCount=da.getEdgeCurrentSlice(DataDirector.ROW_EDGE);
    if (val <=45.0)
    gr.getSeries().setColor(new Color(255,0,0),seriesCount);
    I get a NullPointerException from the line of code "Object val=da.getValue(re,ce,dm.DATA_TYPE)." I have tried the code with DATA_UNFORMATTED as well, but get the same exception. When I print the DataMap value of dm the results are [dataUnformatted, dataViewFormat, value, dataIsTotal, dataType].
    Also, I get the error "method <= (java.lang.Object,double) not found in class _CmdrDashboardP1" from the "if (val <=45.0)" code.
    Thanks for any assistance

  • Display more than one BI bean graph on JSP page

    Hi,
    I want to show BI Beans graphs on a JSP page (just the Jdev 10.1.2 included components, not the OLAP backed ones) but I want to show a different graph for each row iterated in the JSP so I'll end up with up to 20 graphs on the screen.
    Currently I can have it showing the 20 graphs quite happily, but they're all the same (that is, they all look the same but they have different IDs). I note from the way I understand this works that they're all being made off the currentRow of the viewobject. I want to somehow increment the current row for the data as the view iterator advances. I could break the model 2 separation and do it with java scriptlet in the JSP but this is my least favoured way. Is there some other way I can have all the graphs prepared from a struts action which does advance through the data and then goes on to show the jsp?
    I'm guessing this is somewhat related to a master detail graph - except when I tried to run with one I got some nasty exceptions within the graph tag library. I'm not sure that's what I want anyway as I need to format the page as a report so I need each graph to be a separate image.
    Any help appreciated
    - Nathaniel

    What I'm after is a way to create the BI Beans graphs supplied with Jdev 10.1.2 ni a java class rather than a JSP. Is there a way to do this?

  • Certain symbols are not shown ( see screen shot) How to resolve?

    From this website the logo and arrows are not shown whereas when I am using internet explorer they do show up. What is wrong in my settings and how to adjust these?

    Hello,
    As I can see it is a narrow box with two rows of two characters? Firefox displays that code when it cannot find the corresponding character in any available font. The most common reason to see this is that some sites are now replacing image icons with font characters that Firefox has to download. If you have set Firefox to:
    * use only your preferred fonts instead of the page's preferred fonts
    * not download fonts (either in about:config or using the NoScript extension)
    then you would need to change that in order to see the icons.
    First check your font settings here:
    "3-bar" menu button (or Tools menu) > Options > Content
    Click the Advanced button and make sure there is a check in the box for "Allow pages to choose their own fonts".
    If you change that, try reloading the page. Does Firefox load the missing icons?
    If that doesn't fix the issue then do the following:
    You can check the '''gfx.downloadable_fonts.enabled''' pref on the '''about:config''' page (you can go to it by typing about:config in your address bar) and make sure that it is set to true (if necessary double-click the line to toggle its value).
    Sometimes it also happens because of the slow connection. Due to slow connection the text which takes less space are somehow downloaded but the image couldn't get downloaded within the connection time frame.
    Hope it helps.

  • HT4191 I have iphone 5 and the latest iO7.1. Since upgrading to IOS7.1 birthdays added to a contact are not shown in calendar anymore. It use to show automatically before.

    I have iphone 5 and the latest iO7.1. Since upgrading to IOS7.1 birthdays added to a contact are not shown in calendar anymore. It use to show automatically before. Can anyone help?

    Click on calendars at the bottom of the screen. Make sure that birthdays are checked.
    We may think we have 1 calendar, but iPhone puts things in different calendars. Sometimes we can somehow lose one. Well not really lost, but somehow it just gets de-selected. So just make sure that all that you want to see are checked.
    One cool thing I like about this is that they have added US Holidays which didn't used to be there like on most paper calendars. Nice to have them available now!

  • Are there any disadvantages to writing data to front panel indicators when the vi's panel is not shown during execution?

    Hi,
    In the case where a sub vi's panel is not shown during execution, does it matter if I include front panel indicators on the sub vi's panel? (these indicators were there for debugging purposes). Is there any performance penalty for this? Thanks!

    If the frontpanel is not loaded it has no time penalties. But a frontpanel is sometimes loaded because of property nodes!
    greetings from the Netherlands

Maybe you are looking for

  • How to identify the po documnet type in automatic creation of po shipment

    hai experts          we are facing some problem in transportation proess. For us automatic po is not generated we checked all confiuration settings we could't find out that .  how can we identify what po document type is linked to this process . can

  • Application synchronization issue

    Hi, I have one question for you all, I hate music and application synchronization, but while music is manually synced since the beginning, my applications are synced with iTunes. So every time I sync the iPhone new apps are copied to iTunes and apps

  • How do I back up AVI files from my iPhoto library to a CD or DVD?  I

    I am using iPhoto 8 , exporting album, save as jpegs named sequentially. I did not think about the avi files from my camera, that are now on the cd or dvd as jpegs.  I'm doing this as I want the original files, not just the iPhoto library and plan to

  • Oracle 10g reports migration to Oracle 11g migration

    I have migrated oracle 10g reports to Oracle 11g reports and generated REP file. But when we execute REP file using RWRUN.EXE I am getting below error. ERR REP-50125: rwbuilder.conf:java.lang.NullPointerException ERR java.lang.NullPointerException to

  • Script to edit 'isCriticalSystemObject' attribute

    Is it possible to write a script to set an OU that contains security groups' attribute 'isCriticalSystemObject' to true? Sean