Problem with graphs on repeating frames

Is it possible to use graphs showing correct data within repeating frames?
We experienced problems with graphs within repeating frames, each occurrence of a graph shows the same picture (using data that corresponds to the first frame).
Tnx in advance.

Sounds like the source data for the Graph is the wrong Group.
Dave

Similar Messages

  • Problem with Graphs

    Hi
    We are facing  a strange problem with graphs in BeX.
    We are making graph on summarized data and storing it in workbooks.The problem im facing is that whenever the query is refreshed the Graph gets scattered.for e.g X axis becomes Y  and things like that,
    pls share your experience and a way to fix this problem
    JPJP

    hi jaya
    thanks for your response
    i shall try upgrading and also check the note,
    Thanks
    JP

  • Problems accessing parameters within repeating frames.

    I hope this is a more readable version of the problem I just submitted.
    This is the overall layout of a report I am currently working on
    and having problems with, using Oracle Reports 6i.
    Departments Commitments Obligations
    Dept 1 - Dept 1 Title
    RCC 1 - RCC Title
    RIC
    Non-pay by RIC 308 1 1
    Non-pay by RIC 438 1 1
    Non-pay by RIC 514 1 1
    Subtotal 3 3
    Pay by RIC 514 2 2
    Total RCC 1 5 5
    RCC 2 - RCC Title
    RIC
    Non-pay by RIC 308 1 1
    Non-pay by RIC 438 1 1
    Non-pay by RIC 514 1 1
    Subtotal 3 3
    Pay by RIC 514 1 1
    Total RCC 2 5 5
    Dept n
    Total Dept 1
    Non-pay by RIC 308 2 2
    Non-pay by RIC 438 2 2
    Non-pay by RIC 514 2 2
    Subtotal 6 6
    Pay RIC 514 4 4
    Total Dept1 10 10
    I use a format trigger to calculate the data for
    Non-pay by RIC 308 (the most inner frame).
    If (:RIC = '308') then
    Return (True);
    Else
    Return (False);
    End if;
    And I do something equivalent for the other two RICs, RIC = 438,
    and RIC = 514.
    With this approach, I am able to calculate subtotals and totals
    for all the RCCs for each Dept.
    I work one frame at a time, from the inner frame to the outer
    frame.
    My problem is to get the Total Dept section at the end of each
    Department.
    Total Dept 1
    Non-pay by RIC 308 2 2
    Non-pay by RIC 438 2 2
    Non-pay by RIC 514 2 2
    Subtotal 6 6
    Pay RIC 514 4 4
    Total Dept1 10 10
    I get a frame error when I try this code in a format trigger
    If (:RIC = '308') then
    Return (True);
    Else
    Return (False);
    End if;
    I know this trigger fails because I am trying to reference the ":RIC"
    parameter that is in a different repeating frame.
    How can I check for the RIC at this level?
    Is there a better way to tackle this problem? Any suggestions?
    Thanks,
    Carlos

    Sounds like the source data for the Graph is the wrong Group.
    Dave

  • Please suggest problem in increasing height repeating frames

    Hi,
    in my report normally up to 100 are printed. i setted the vertical elasticity as expand and horizontal as fixed.
    but while priting, in vertical, it is contracting if date is too short enough and expanding when dat is large enough. But what my requirement i want to specify the height of each field in repeating frame fixed. i.e. 3 centimeters and it should be same for all records printed on page and on each logical page and i want to print maximum 8 records per page becoz my print page size can hold maximum 8 records and each record at 4 lines. And even if the data is short enough it must not be contracted, if data is one line,and the remaining space that is in 3 cemtimers should be left blank and it must to go to second record. That is in fixed heigt of record repeart frame i want to print the data. If data goes more than 3 centimetres then date must be truncated. I did not find any height to set this property in Repeating frame property.
    please suggest solution'
    thanks in advance
    prasanth a.s

    Hi Prasanth,
    Enlarge the Repeating Frame height to say, 3 centimeters in the layout.
    Set the Vertical (& Horizontal as well) Elasticity of the repeating Frame as Fixed.
    In the Property Palette of Repeating Frame, set Maximum Records Per Page to 8 and Set Page Break after property to Yes.
    This will solve ur problems.
    Have a nice day...
    Raja Angamuthu B

  • Problem with file dialog (root frame)

    Hi guys
    I�m having a problem with open up a filedialog.
    I have a rendered jlist and the are some items inside. The user, can right click any item and choose from a list some commands (print, save, update etc)
    Everything works fine but when he clicks the SAVE option (again, right click and choose save)
    FileDialog fd = new FileDialog(new JFrame(),"Save PAX list",FileDialog.SAVE);
    I cannot use new JFrame() (as I did above) because it might block the application.
    For this I�m trying to get the root by:
    Component c = SwingUtilities.getRoot((Component)e.getSource());
    JFrame myFrame = (JFrame)c;
    And than:
    FileDialog fd = new FileDialog myFrame,"Save PAX list",FileDialog.SAVE);
    This get me a null frame :- (
    Anyone?

    The following worked on a "normal" menu item. I didn't test it on a "popup" menu item:
    JMenuItem mi = (JMenuItem)e.getSource();
    JPopupMenu popup = (JPopupMenu)mi.getParent();
    Component c = SwingUtilities.windowForComponent(popup.getInvoker());
    System.out.println(c);

  • Performance problem with graphs on Tabs (LV7.1)

    I have huge performance problems in a subsystem using tab controls with graphs on top. The whole thing worked nice, until I record a measurement (abou 10k of double as data displayed on the graph). The win task manager indicates above 50% on both CPUs, the app hangs (or lags), my queues generate timeout messages...
    The graph is located in one of the pages of a tab control. As well are several clusters of config data for the measurement.
    As I said, the problems started, when I put the data of that size on the graph indicator.
    The clusters are some nested typ defs, but it worked with them before, no huge arrays involved. All are bundled in a huge cluster (less than 1 k if saved as xml).
    So I wonder, if the clusters and/or the graphs are the problem PLUS is that problem resolved in current LV-Versions (hoping to get the faster car & and I love the current GUI with tabs)?
    Sorry, can't post the code, but if none of you knows that kind of problems and I can't solve it on my on in an hour or so, I can make some imitation code.
    Felix
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

    How many graphs are you referring to?
    Are they all on your User Interface and running in the UI thread?
    You might want to try putting your graphs in their own threads i.e., called dynamically or otherwise in a structure that allows LabVIEW to put them in their own thread. I've gotten good performance out of a PXI-8106 controller by calling a graph template dynamically. That's four graphs showing at once, 12 plots per graph, 10000 XY value pairs per plot. Each graph was setup to get its data every 50-200ms.
    How much data you can plot with decent performance also depends on the hardware you're using, i.e., CPU speed, RAM size, video capability, etc. It can also depend on how efficiently you've coded your application. Are you initializing your data arrays and using "Replace Subset" or are you using the less efficient "Build Array" for example?
    Message Edited by Bill@NGC on 09-11-2007 09:31 PM
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

  • OBIEE10G - Javascript problems with graphs

    Hi,
    Is there any known problem with using javascript and the display of graphs? I have a report where i have a pivot table where i use some javascript to format that table. Below that table i have 2 graphs that are different reports from the one with the pivot table (see images below).
    Version working well
    http://imageshack.us/f/41/graphworkingok.jpg/
    Version with problems
    http://imageshack.us/f/220/graphwithproblems.jpg/
    I guess the problems may be related with javascript because when i remove the javascript from the pivot table (i have it in a static text view) the graphs seem to work ok.
    I'm not an expert (far from that) with javascript and i was playing around with it so i could format the pivot table the way i wanted but i don't have enough knowledge of it to understand what may be causing the problem.
    Thanks

    I didn't do that because the line i want to format is a "manually" built line. I want to format the last line (total line) but that line wasn't made using the total feature of OBIEE but built by myself. What i do in that line is changing the background color of all the cells in that last line and changing the font-size as well.
    Would i be able to do this just by using CSS? From what i read i think i can't that's why i used JS.
    Btw, what i did is related to this other thread i created where i explained my problem, this may help:
    OBI10G - Format a specific cell of a pivot table
    Edited by: Pedro F on 19/Mar/2012 4:15

  • Problem with javascript cookies and frames in Safari

    I have a web page with 2 frames in it. One frame holds a pulldown menu for quick navigation, which changes the content in the other frame and also writes a cookie that makes that choice the default when the user comes back to the web page. My problem is that when the page that has the navigation is in frames it will not change the cookie when the navigation choice is changed. It will only change the cookie if the navigation page is displayed on its own web page (not in frames). The javascript works fine in both FireFox and Google Chrome. It's only Safari that has this problem. Is this a bug in Safari, or do I need to code this differently? I also tried putting the javascript function in the main index.html page that sets up the frames, but that didn't help either.

    HI Patrick,
    Try posting in the Apple Technoligies forums here.
    http://discussions.apple.com/forum.jspa?forumID=735
    Carolyn

  • Problem with Pullout Tab/Scrollable Frame

    I've designed a pullout tab and in the Scrollable Frame Overlay I've specified "Horizontal" as the scroll direction. Now, with Desktop Preview everything looks fine. On the iPad however, the frame can be moved around in all kind of directions - up, down, left, right, even in circles (so to speak).
    When I copied the frame to another empty page for test purposes, everything worked as planned with Desktop Preview and on the iPad. So then I added the rest of my content to that test page and voila, the problem resurfaced.  I also have other pages with pullout tabs in the same folio that work just fine. I'm lost to what causes this behaviour in this one article.
    Anyone had this before?
    Thanks.

    My mistake, I meant the layers panel. Try renaming your graphic frames to samething unique.

  • Problem with Step and Repeat (transform)

    Hi All.
    I tried a search on this but came up with nothing, so if this has already been posted let me know.
    In CS3 Illustrator: When I click on a horizontal line, and go to object/transform and key in a number such as -1p6, indicating that I want the line to repeat downward 1p6, the line instead repeats upward 1p6. I have tried using the ruler from point A to point B in a downward direction, but end up with horizontal rules that move upward.
    What am I doing wrong? Or, is it the software? I had the same problem in AI 10, but not in previous versions of Illustrator.
    I've been working with Illustrator almost as long as it's been around, so I'm pretty familiar with it. This is just an annoying problem that slows me down.
    Thanks so much!

    You're using the regular Move command, right? Object > Transform > Move (or Command - Shift - M, or hit the Enter key)? Then entering a negative number ( -1p6) in the Vertical field? And it moves the object up? Try trashing your prefs?

  • Multiple problems with installation and stop frame animation

    I have just spent 24 hours of increasing frustration trying to install and use On Location. I recently bought a Matrox RTX 2 Premiere CS3 desktop edit suite. On Location recognises any camera I attach via the drop down menu but will never display a video image or activate any capture commands. An afternoon with my dealer's tech support did not find a solution.
    Next I tried installing it on my Vaio laptop. It would not display the menu bar, but components would display, my camera was recognised, and I managed to capture avi type 2 files in mpeg at 1080i PAL. These will play back on the laptop in media player but crash Premiere when I import them. Matrox say these files should be supported. After these tests, OnLocation began to crash the Vaio as soon as I plugged in a camera. The Vaio presents a black screen and the OS freezes completely, requiring a hard boot for recovery.
    I have uninstalled it and attempted to install it in a brand new Vista HP laptop. The install crashes during activation. After 3 uninstall/reinstall attempts I gave up. I will now start again with a fresh install on the Vaio. Will report back if I make any progress today. Any suggestions meanwhile would be much appreciated.
    The holy grail, by any means possible, is to capture stop frame animations in HDV 1080i PAL format. I need one laptop to work for capture, then to transfer the animation files to the desktop for editing.
    many thanks

    Hi Martin,<br />Sorry to hear you're having such problems. I have no experience with Matrox system, so I cannot speak directly to compatibility with OnLocation CS3. For both computers, I'd be interested in seeing the system specs. If you're willing, how about sending the dxdiag file for each to me at [email protected] I'll see if anything jumps out at me.<br /><br />One detail that does not compute is your reference to recoring "avi type 2 files in mpeg at 1080i PAL." HDV content cannot be recorded to the AVI format. The only options are MPG and M2T. If the clips are indeed AVIs, then the camera must have been set to the DV mode.<br /><br />As for OnLocation crashing the computer so badly that a hard reboot is necessary, that generally points to some deeper problem in the computer's drivers or BIOS. When it gets into that state, have you tried bringing up Windows Task Manager (CTRL+SHIFT+ESCAPE) and killing the OnLocation process? I'm wondering if the system isn't totally locked up but appears to be so because on this low res display, OnLocation has basically taken over the whole display, so when it fails to launch, you can't see any other Windows controls. If this is the case, then deleting the AppProps file here: C:\Documents and Settings\<username>\Local Settings\Application Data\Adobe\OnLocation CS3.<br /><br />btw, the reason you see no menu bar is that the laptop's display is at the minimum for OnLocation CS3 (1024x768, if memory serves). The menu is shown only at higher display resoltions.

  • Problem with buttons in repeated table header

    I have a bunch of tables that expand/contract at the click of a button in their respective header rows.
    The problem I'm having is when a table breaks to another page the button doesn't work properly in the repeated header - the scripted value isn't making it to the repeated button (I've also tried checkboxes).
    Is there any way to make this happen? Should I try using variables to store a flag or something like that?
    https://acrobat.com/#d=m7zuQYiUoFrtz5isD7rErQ

    This issue is that the second header is an instance of the first, so all unmanaged relative code breaks. I would hazzard a guess to say that your add code looks like "$.parent.row1.instanceManager.addInstance(1)." This will break, as the "second" header row no longer sees the 'table' element as it's parent.
    Changing to code to a static reference will fix it... i.e. xfa.form.form1.table1.row1.instanceManager.addInstance(1).
    This should solve it for you... if not, let me know.
    - Scott

  • PROBLEM WITH GRAPH DRAWING PACKAGE

    Hi all,
    I have been trying to compile and run some code using "JOPenChart" a free charting tool, but I am having many problems.
    Here is the small class:
    import de.progra.charting.*;
    import de.progra.charting.model.*;
    import de.progra.charting.render.*;
    import java.awt.*;
    import java.io.*;
    public class test{
    public static void makeFirstChart() {
         int[][] model = {{0, 100, 200000}};     // Create data array
         double[] columns = {0.0, 1.0, 2000.0};  // Create x-axis values
         String[] rows = {"DataSet 1"};          // Create data set title
         String title = "A First Test";          // Create diagram title
         int width = 640;                        // Image size
         int height = 480;
         // Create data model
         DefaultChartDataModel data = new DefaultChartDataModel(model, columns, rows);
         // Create chart with default coordinate system
         DefaultChart c = new DefaultChart(data, title, DefaultChart.LINEAR_X_LINEAR_Y);
         // Add a line chart renderer
         c.addChartRenderer(new LineChartRenderer(c.getCoordSystem(), data,
         RowColorModel.getInstance(data)), 1);
         // Set the chart size
         c.setBounds(new Rectangle(0, 0, width, height));
         // Export the chart as a PNG image
         try {
              ChartEncoder.createEncodedImage(new FileOutputStream(System.getProperty("user.home")+"/first.png"), c, "png");
              } catch(Exception e)
                   e.printStackTrace();
    }//method
    public static void main (String [] args)
         makeFirstChart();
    }//classI have downloaded the JAR files from the web site. They are called:
    "jep.jar"
    "servlet.jar"
    "charting-0.94.jar"
    but they do not seem to make any difference and I still get compile errors:
    C:\Proj\code\chart>javac test.java
    test.java:1: package de.progra.charting does not exist
    import de.progra.charting.*;
    test.java:2: package de.progra.charting.model does not exist
    import de.progra.charting.model.*;
    test.java:3: package de.progra.charting.render does not exist
    import de.progra.charting.render.*;I cannot work out how to let the cimpiler know that I want to use the said JAR files, or what else to do to solve the above situation...
    Please help as this is CRITICAL to my University project!!!!
    Any help would be much apprecicated!
    Many thanks.

    Does your classpath include the jars you list?
    DB

  • Nested templates - problems with inheriting editable/repeating regions

    I have made a template called 'basic', with 2 sections, 'maincontent' and 'sidecontent' then nested a template in it called 'home'. In 'home', I have made repeats of some regions (sidecontent) and edited them to make a section I want on all 'home' type pages. When I make  a new document from 'basic', it has all the same editable and repeating regions as 'basic'. But when I make a new document from 'home' there are no editable or repeating regions, either in 'sidecontent' which I edited or 'maincontent' which I didn't. I want to be able to edit 'maincontent' when I make a new document from 'home', to make repeating regions and edit them. Please can you advise me what to do?
    Thanks

    When I tried to attach the files it automatically zipped them again, so I have put the code above.
    Thanks,
    Rachel

  • Problem with netui:data repeater tag

    Hi,
    I have 10 checkboxes in a form. It is represented as array of boolean in the form.
    The form and the checkbox values are initialised in the JPF class. Using repeater
    tag to display the checkboxes.
    When the user clicks on first check box, all other check boxes should be selected.
    Need to do this with client side validation.
    Can someone tell me how to do this?

    Hi kunal,
    Thanks for your immediate response.
    But, if I use , I am getting an saying that the file does not exist.
    I have included your code, can you check it. Also, I just want the link to be displayed, not the values that I am getting through the netui-data:repeaterItem tag. Can you please help me.
    I am attaching my code here:
    <netui-data:repeater dataSource="{pageFlow.results2}">
    <netui-data:repeaterHeader></netui-data:repeaterHeader>
    <netui-data:repeaterItem >
    <netui:label value="{container.item.title}" defaultValue=" " ></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterItem>
    <netui:label value="{container.item.link}" defaultValue=" " ></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterItem>
    <netui:label value="{container.item.title}" defaultValue=" "></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></ol></netui-data:repeaterFooter>
    </netui-data:repeater>
    Thanks,
    Latha

Maybe you are looking for

  • Error opening a cfc

    Unable to create this part due to an internal error. Reason for the failure: The editor class could not be instantiated. This usually indicates that the editor's class name was mistyped in plugin.xml. Hi All, How can I fic this error? I can't open my

  • Display results of MySQL query from AMFPHP by ArrayCollection in AS3 (Flash CS4)

    Hi, i am using Flash CS4 (AS3) + AMFPHP + MySQL to do own flash frontend for Wordpress CMS.  Everything is going fine but i`ve got one problem. Problem with properly display of result of query in AS3 by using ArrayCollection. When i check my service

  • RFC problem: could not get functionname from XML requst (sic)

    I'm developing an interface that attempts to call a receiver RFC on an SAP 4.6c system.  It's a very small simple interface, and it's all working until it tries to call the RFC.  The error is Exception caught by adapter framework: error while process

  • SRM pricing query

    Hi SRM experts,

  • Supplier Management Module - to enable Performance page

    Hi All, We are working on E Sourcing 5.1 trying to enable Supplier Management Performance page in the module. Please help with any pointers/guidelines on how to do the same & further use it. Many Thanks, Tripti