Delay in building chart

Hello,
I am making 4-5 charts on single page, the data to build chart is preloaded, Then too,the page is taking around 40-45 seconds to generate on a mobile device(on browser its taking around 8-10 seconds).
Need help in reducing time to generate charts.
Help is appreciated .
Thanks and Regards.

Hi,
If am not wrong, you should not be referring it manually in your ant script, you can generate something called workshop.xml which will have reference to all the required jar, war, ear files required to build the portal project in a server which dostn't support running workshop.
My first suggestion is, please find the below link, which will help you to generate the required build scripts for the projects in your workspace.
http://download.oracle.com/docs/cd/E13224_01/wlw/docs102/guide/ideuserguide/build/conUseCustomAntBuild.html
Kindly go through this document carefully and make sure you do all the steps stated and get the required build scripts.
If you still don't want to use the build script generated by workshop, you will get an idea on how things can be done and you can also customize the scripts based on your requirements.
Let me know if you still have any issues in creating build script for a Weblogic Portal 10.3 application, but get back to me only after reading and trying the above said doc.
-Arun

Similar Messages

  • Delays in builds appearing

    i was giving a presentation in Keynote and there were a few second delays in my builds appearing on click. such that i'd click again and then it would build in AND advance to the next slide. i was getting ahead of myself because the delays in builds threw me. this hasn't happened before.
    i recently upgraded to Tiger, and i don't know if this might have caused problems. i looked at the times set in the builds, etc., and can't see anything that would cause this.
    i was using the presenter mode at the time.
    any advice?

    I've run across the problem before. Here are the main issues:
    •The more complicated the slide/build/transition, the more your machine has to process. This can cause delays and stutters. Also, quit any other programs, so Keynote is the only program running.
    •How much VRAM do you have? If you have less than 32MB, turn on video mirroring for the presentation. Set your display to a lower resolution. Use thousands instead of millions of colors. All these adjustments use less VRAM.
    •It can sometimes help to run your presentation before you present it. It seems that some information is cached, allowing speedier transitions.
    •I was doing complicated stuff, and my 1 GHz PowerBook just couldn't handle it, so I just bought a 2.33 GHz Macbook Pro (not a cheap solution). But my Keynote displays beautifully!
    G5/mirror G4/iBook/Powerbook/MacBookPro   Mac OS X (10.4.9)  

  • Time Delay Connector and Chart Question

    Hello,
    I have two problems with the VC 7.1
    First, how can I design a time delay or a refresh function? In VC 7.0 you have the time delay connector to implement this function.
    Second, in VC 7.0 I can click on a chart and start a action to show me the data of this data series. In VC 7.1 I don' t found something like that?
    Regards Tobias Arnold

    the output of the VISA read i got is call read buffer, but it still seems like a number instead of a string?
    Attachments:
    data.png ‏1 KB

  • Refresh Delay with Radial Charts

    Hi,
    We have deployed a dashboard in XCelsius 2008 SP2 which is composited
    of two screens. Both screens are published in a B.O. 3.1 environment.
    One screen has the general information about our sales and the other
    screen has more detailed data. We have connections to QaaWS
    WebServices, and the test of them is succesful. Also We're using flash
    variables to pass the parameters, and the behaviour it's right.
    In fact, all the deployment seems to be right, but sometimes We're
    experimenting any problems with the refresh action of radial charts.
    These charts are loaded from different Webservices. But after the
    reload of all the data, with a previous change of our parameters, the
    visual refresh of our radial charts has a delay. This behaviour is
    variable, so we aren't able to find a forecast about his performance. 
    We've tested the execution of our webservices, and also We have tested
    the delay between the final execution time and the visual refresh
    effect. Sometimes this delay has more than 30 seconds.
    Have you experimented this problem before? Any tip?
    Thanks in advance!
    Best regards

    Typically the datagrid in a scenario like yours would be
    updated by a webservice call from the client i.e. from Flex to the
    server. The datagrid might be bound to the lastResult of a
    webservice for example, or to a data model, but that will not be
    updated without calling the webservice itself. Oftentimes you will
    see this call in a "creationComplete" event. If you want to
    dynamically update the client when the server changes then you are
    going to have to take some kind of action on the client, like a
    timer for example that triggers the webservice that accesses the
    data.

  • Building charts from xml

    I'm trying to build a series of charts from xml (sample below). Examples might be a column chart of all scores, or a column chart of all 'fred' values. All the examples I've seen are ArrayCollections, or if they are XML, they are very simple xml. I've tried converting the xml to an ArrayCollection (didn't work) and I've tried using the xml as the datasource. I could loop through and build a simple xml for each chart but there must be an easier way. Any suggestions.
    <results>
                    <item name="group1" speed="100" score="23" time="123">
                        <detail>
                            <element name='fred'>2</element>
                            <element name='john'>3</element>
                        </detail>
                    </item>
                    <item name="group2" speed="10" score="3" time="1">
                         <detail>
                             <element name='fred'>12</element>
                             <element name='john'>31</element>
                         </detail>
                     </item>
                    <item name="group3" speed="230" score="53" time="78">
                         <detail>
                             <element name='fred'>42</element>
                             <element name='john'>81</element>
                         </detail>
                     </item>
    </results> 

    Charting framework access the fields like this item[yField] so any of the y field values that you have given does not work i.e. item["item.detail[0]"] etc. do not work.
    For this purpose we created a property called dataFunction on Series, CategoryAxis classes through which you can provide appropriate value for your fields.
    From the livedocs - http://livedocs.adobe.com/flex/3/langref/mx/charts/chartClasses/Series.html#dataFunction
    You typically use the dataFunction property to access fields in a data provider that are not scalar values, but are instead nested in the data provider. For example, the following data requires a data function to access the fields for a chart's data provider:
          , open:25.19}
    The following example returns a value from this data provider:
         public function myDataFunction(series:Series, item:Object, fieldName:String):Object {
              if(fieldName == 'yValue')
                  return(item.close.High);
              else if(fieldName == "xValue")
                  return(item.month);
              else
                  return null;
    Thanks
    -Sunil

  • Building charts in a jsp page

    hi all,
    I have seen jfreechart for making charts. Iam new to jsp. so I dont know how to integrate
    jfreechart with jsp. I dont know how to start with it. can any one help me. Its very urgent.
    Pls show me the coding to implement a bar chart in a jsp page fetching values from the database and things to be configured for making it.
    thanx
    Balaji

    I've never used jfreecharts but maybe I can help you from the JSP side of the coin.I assume you are at least somewhat proficient with Java programming and if you are not then this is the wrong place to start. Think of JSP as a code generating tool. It's typically used to generate HTML or XML content. So from within a JSP page you are generating HTML to be rendered by the browser. So the 1st thing is that you have to understand what the resulting HTML page with the embedded chart would look like. Then you have to figure out how to generate the chart outside of JSP. I'm thinking that the resulting charts are images but I'm not sure because I've never used it before. You would code the Java logic to create the chart.then you can invoke that logic from your JSP to generate a chart upon request.

  • Flash Builder Charts

    Any one ever have this.  Data source retruns data to grid. And datasource returns data to graph ($ value by month) $ values show on Y axis month  name show across X axis but the graphical bars do not show. And there is data values in the datasource and they are returned to a grid using same data source but not showing as bars on graph. Pie chart does same thing.

    Can you attach mxml ?

  • 10.4.9 - Delays in Terminal, Wake From Sleep, XCode Build

    Hi,
    Since I've updated my Intel iMac to 10.4.9 I'm experiencing some delays in certain actions. The most bothersome being in Terminal. Every time I open a new session (window/shell) I get the spinning beach ball for about 10 seconds before the new window appears. I also get the same delay when building in Xcode and getting the login prompt after waking from sleep.
    Looking at the activity monitor, it doesn't look like there is a spike in CPU usage. Any ideas?
    Thanks.
    Intel iMac   Mac OS X (10.4.6)  

    Nothing interesting as far as I can tell. I checked system.log and windowserver.log as well as console.log. I watched the console as I opened terminal and nothing was written before, during or after the delay.
    If I open terminal, wait through the delay, then quit terminal and open it right away, it sometimes it opens a terminal window without delay. It also sometimes opens a new terminal window right away and displays the line "Last login: Fri Mar 23 13:20:52 on ttyp1", but then I have to wait a good 5-10 seconds for the "Welcome to Darwin!" message and the prompt.
    Weird...

  • Error in report builder wizard user interface

    I am getting error 'REP-31954: Error in the Report Builder Chart Wizard user interface'.
    The help subsystem states that I should make sure that the Chart Builder Wizard libraries are properly installed.
    I am sure they are because all other wizards work fine, along with the Forms, Reports, etc.
    I searched using Google and found two messages that indicate this is a bug in the program and not library installation related.
    Does anyone know if this is indeed a bug that has not been resolved, or do I need to troubleshoot more on my end.
    I re-linked Oracle graphics and checked the env variables, but nothing gets the Chart Wizard to work within Reports or Forms.
    Any help/advice would be greatly appreciated.
    Thank you.

    Hi.
    I am running developer 6i on my home machine (with Oracle 8i, v 8.1.7). I am at work at the moment, and I can't recall what the Reports version is. The same error occurs with Forms.
    The filename that I downloaded is called 'd2k6irelease2.tar'.
    I downloaded the version that is currently on Oracle OTN's download site, so I presume that is the latest version that should contain all patches, updates, etc.
    Thank you for responding!

  • How to setup the perfect develop envorinment with Corda Builder

    All,
    It has been a while since I programmed with JSP/Java. Three years ago I developted some custom web pages within JSP and Eclipse. The webpages queried on a SQL DB. The results were populated via a Corda Builder Chart(PCXML script) in a JSP webpage.
    Now, I have to develop a kind of the same page but the JSP variables (date) do not show up in the porlet.
    <%@ page contentType="text/html; charset=UTF-8" %>
    <%@page contentType="text/html" *import="java.util.*" %>*
    <?xml version='1.0' encoding='ISO-8859-1' ?>
    *<%java.util.Date d = new java.util.Date();%>*
    <Chart Version='4.40.00' BorderType='None' BorderColor='#99ccff' FitInBounds='False' CollisionProtection='False' BGGradientColor='#4d718e'>
         <Textbox Name='Title' Top='6' Left='4' Width='114' Height='23' CVersion='7'>
              <Properties ShadowStyle='Fade' HJustification='Left' Font='Name:Lucida Sans; Size:14.0; Style:Bold; Color:#003333;'/>
              <Text><% d.getDate() %></Text>
         </Textbox>
         <Graph Name='graph' Top='49' Left='20' Width='427' Height='263' CVersion='7' Type='Line Bar' SubType='Basic'>
              <Legend Name='legend' Top='50' Left='451' Width='80' Height='110' ZIndex='2'>
              </Legend>
         </Graph>
         <GraphData Name='graph' Method='Replace'>
              <Categories>
                   <Category Name='Week1'/>
                   <Category Name='Week2'/>
              </Categories>
              <Series Name='Balans'>
                   <Data Value='54'/>
                   <Data Value='75'/>
              </Series>
              <Series Name='Inkomsten'>
                   <Data Value='92'/>
                   <Data Value='60'/>
              </Series>
              <Series Name='Uitgaven'>
                   <Data Value='68'/>
                   <Data Value='87'/>
              </Series>
         </GraphData>
         <Project HTMLHeight='330' HTMLWidth='540'>
         </Project>
    </Chart>Problem:
    The comes up perfectly but the date and database connection(didn't add that to this script because does not make sense). Does anyone have an idea based on this code what i do wrong? I use TomCat, developed the code in Eclipse. Additionally, what would be the best configuration (headlines) of developing the JSP pages?.
    It's for you guys an easy case but it would really help me.
    Jeroen

    Well your main problem is that you are using scriptlets, those have been out of date for at least 10 years now. Anyway:
    <% d.getDate() %>should be
    <%= d.getDate() %>The next time you don't know why something isn't happening, you are best of looking up the servlet java code that is generated for the JSP page. Where this file is put depends on the server, Tomcat and JBoss for example put it inside a 'work' subdirectory. The reason why I advise this is because the servlet source file is what is executed by the server, and is thus a better source for problem finding than the JSP source.

  • PL/SQL in a line chart

    Hello,
    I am learning to use APEX to build charts on our intranet. I'm getting errors when I try the PL/SQL code below on a line chart (btw I'm a noob in PL).
    The error description is after the code. Can someone please point out what's wrong with my code?
    Any help will be very much appreciated. Thanks.
    declare
    q varchar2(4000);
    g varchar2(4000);
    w varchar2(4000);
    c varchar2(4000);
    qte varchar2(1) := CHR(39);
    begin
    q:=' select null link , month, ';
    g:=' group by month ';
    q:= q ||' to_char(decode((sum(nvl(i_worked,0)) + sum(nvl(o_worked,0))),0,0,null,0,(sum(nvl(i_cont,0)) + sum(nvl(o_cont,0))) *100/ (sum(nvl(i_worked,0)) + sum(nvl(o_worked,0)))),'||qte||'999.00'||qte||')||' || qte||'%'||qte || ' as Cont_Rt ';
    q:= q ||' from axe_csa_daily_performance_mth ';
    w := ' ';
    if :P1_CENTER != 'All' then
    if instr(w,'where')=0 then
         w:= ' where CENTER = :P1_CENTER ';
    else w:=w||' and CENTER = :P1_CENTER ';
    end if;
    end if;
    if :P1_UNIT != 'All' then
    if instr(w,'where')=0 then
         w:= ' where ops_unit = :P1_UNIT ';
    else w:=w||' and ops_unit = :P1_UNIT ';
    end if;
    end if;
    if :P1_SUBUNIT!= 'All' then
    if instr(w,'where')=0 then
         w:= ' where sub_unit = :P1_SUBUNIT ';
    else w:=w||' and sub_unit = :P1_SUBUNIT ';
    end if;
    end if;
    if :P1_TM!= 'All' then
    if instr(w,'where')=0 then
         w:= ' where MGR_LNM'||','||'MGR_FNM = :P1_TM ';
    else w:=w||' and MGR_LNM'||','||'MGR_FNM = :P1_TM ';
    end if;
    end if;
    if :P1_TL!= 'All' then
    if instr(w,'where')=0 then
         w:= ' where LDR_LNM'||','||'LDR_FNM = :P1_TM ';
    else w:=w||' and LDR_LNM'||','||'LDR_FNM = :P1_TL ';
    end if;
    end if;
    if :P1_FROM <= :P1_TO then
    if instr(w,'where')=0 then
         w:= ' where month >= TO_DATE('||qte||:P1_FROM||qte||','||qte||'mm/dd/yyyy'||qte||') and month <= TO_DATE('||qte||:P1_TO||qte||','||qte||'mm/dd/yyyy'||qte||')' ;
    else w:=w||' and month >= TO_DATE('||qte||:P1_FROM||qte||','||qte||'mm/dd/yyyy'||qte||') and month <= TO_DATE('||qte||:P1_TO||qte||','||qte||'mm/dd/yyyy'||qte||')' ;
    end if;
    end if;
    q:= q || w || g;
    return q;
    end;
    1 error has occurred
    Invalid chart query: select null link , month, to_char(decode((sum(nvl(i_worked,0)) + sum(nvl(o_worked,0))),0,0,null,0,(sum(nvl(i_cont,0)) + sum(nvl(o_cont,0))) *100/ (sum(nvl(i_worked,0)) + sum(nvl(o_worked,0)))),'999.00')||'%' as Cont_Rt from axe_csa_daily_performance_mth group by month
    Use the following syntax:
    SELECT LINK, LABEL, VALUE
    FROM ...
    Or use the following syntax for a query returning multiple series:
    SELECT LINK, LABEL, VALUE1 [, VALUE2 [, VALUE3...]]
    FROM ...
    LINK URL
    LABEL Text that displays along a chart axis.
    VALUE1, VALUE2, VALUE3... Numeric columns that define the data values.
    Note: The series names for Column and Line charts are derived from the column aliases used in the query.

    Hello,
    Your code:
    Invalid chart query: select null link , month, to_char(decode((sum(nvl(i_worked,0)) + sum(nvl(o_worked,0))),0,0,null,0,(sum(nvl(i_cont,0)) + sum(nvl(o_cont,0))) *100/ (sum(nvl(i_worked,0)) + sum(nvl(o_worked,0)))),'999.00')||'%' as Cont_Rt from axe_csa_daily_performance_mth group by monthtry:
    select null link , month label, to_char(decode((sum(nvl(i_worked,0)) + sum(nvl(o_worked,0))),0,0,null,0,(sum(nvl(i_cont,0)) + sum(nvl(o_cont,0))) *100/ (sum(nvl(i_worked,0)) + sum(nvl(o_worked,0)))),999) value from axe_csa_daily_performance_mth group by monthI didn't check all the brackets, but by appending a percentage it isn't a value (numeric) anymore....
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

  • Re:error in report builder wizard user interface

    I am getting error 'REP-31954: Error in the Report Builder Chart Wizard user interface'.
    The help subsystem states that I should make sure that the Chart Builder Wizard libraries are properly installed. I am sure they are because all other wizards work fine, along with the Forms, Reports, etc. I searched using Google and found two messages that indicate this is a bug in the program and not library installation related. Does anyone know if this is indeed a bug that has not been resolved, or do I need to troubleshoot more on my end. I re-linked Oracle graphics and checked the env variables, but nothing gets the Chart Wizard to work within Reports or Forms. I am running developer 6i on my home machine (with Oracle 8i, v 8.1.7). The same error occurs with Forms. The filename that I downloaded is called 'd2k6irelease2.tar'. I downloaded the version that is currently on Oracle OTN's download site, so I presume that is the latest version that should contain all patches, updates, etc.
    Any help/advice would be greatly appreciated.
    Thank you for responding!

    Hi Adrian,
    Got the following when grepped through the web. You can give a try and see whether it works :
    1) Open the report in the Builder. In the properties for the graphic image, change to the proper UNIX path. Also, ensure the .ogd file which is referenced is also placed in the proper UNIX directory, so that the new path is reflected accurately.
    2) Ensure that your environment have the ORACLE_HOME set properly and then try re-linking with Graphics.
    Thanks,
    Vinod

  • Charts and dashboards

    Gurus,
    using APEX can we develop Charts and dashboards. if so can you help me find like/documentation regarding this?
    thanks

    Hi "user13319804"
    What version of APEX are you using? Since APEX 3.0, Flash chart support has been supported, using a third-party component from AnyChart: http://anychart.com/. With APEX 4.2, we've integrated AnyChart 6 which offers HTML5 chart support, as well as enhanced Flash charts. The AnyChart online documentation is pretty detailed, and I'd recommend taking at their User's Guide for further information on the various chart types that we expose through the APEX wizards. Please note that we only license a subset of the chart types that AnyChart offer, and users are only licensed to create chart types that we expose through the APEX wizards.
    I would also recommend reviewing the section Creating Charts in the APEX User's Guide - http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/bldapp_chrt.htm#CHDFEJAB - for information on creating charts. While it is possible to layout your pages in APEX as a dashboard, the AnyChart dashboard feature for creating a charts dashboard is not covered by our license.
    You might find it useful to step through the Building Charts, Gantts and Maps OBE, available here: http://apex.oracle.com/pls/apex/f?p=44785:24:16898343576394::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:4776,2.
    I hope this helps.
    Regards,
    Hilary

  • Possible to use formulas in chart series data?

    Hello, I need to build chart series from manual values. This is possible but Excel accepts only raw values. When I try to use a calculated value, excel rejects the series format.
    =SERIES("Supply";(Sheet1!$A$97;Sheet1!$H$47);(Sheet3!$B$10;Sheet3!$B$10);4)
    is accepted. I need to adjust it to something like
    =SERIES("Supply";(DATEVALUE("31.12.2014");MAX(Sheet1!A:A;Sheet1!H:H));(Sheet3!$B$10/365;Sheet3!$B$10/365);4)
    this however doesn't fit. Does Excel provide a format for inline evaluating without need to use auxiliary cells?

    It is not possible to evaluate formulas within a Series formula. You can use Names to calculate individual values from formulas, return an array of values or use a dynamic Name to return an array of cells and use Names in Series formulas.
    However for your purposes I don't think even use of Names would help; from your first example your formulas return multiple cell areas (albeit only one cell in each area) and your second example aims to return an array with each formulas calculating each
    element, you'd need a Name of Names which I don't think would work.
    Even if you could do it the way you want I think it would be a bad approach. Why not make use of cells, there's no shortage of them and it would make things much easier for maintenance.
     

  • How avoid chart vendor code 17003 Invalid column index: getValidColumnIndex

    Vista desktop, Oracle 11,
    During chart actions ..
    enter SQL statement
    select username, count(*) ct
    from v$session
    where username is not null
    group by username
    Choose table style initially to see data
    Change to chart and set PIE_MULTI false 3d, false gradient, default chart style, true to remaining chart options
    Every time the above error .
    Thanks

    Charts in SQL Developer usually have 3 columns, so format your SQL Query in this common format:
    select group, series, data from table;
    The above is a snip from Sue Harper's blog:
    [http://sueharper.blogspot.com/2006/11/sql-developer-11-how-do-i-build-chart.html]
    For example, if you wanted to see the number of tables in each of your tablespaces you could do:
    select tablespace_name, 1, count(*) num
    from user_tables
    group by tablespace_name;
    Hope this helps!
    Hubert
    Edited by: user7946585 on Sep 9, 2008 7:10 AM

Maybe you are looking for

  • How to avoid blank page in last page?

    Hi friends, I have one page layout in my RTF file for Invoice printing. But when submitting the concurrent from Apps, it is showing one page output and one blank page at the end of the output. How can i restrict the blank page.. Pl. help. Thanks Kavi

  • When your hard drive is full

    My 1tb hard drive on my 27" imac is almost full. I'm not interested in the tedious prosess of going through folders and deleting applications and files I don't use anymore. I want to keep everything. I would like to just copy the whole 1tb storage  o

  • Binding dynamic variable in XQuery doesn't work: ORA-00932

    I have a table with several columns. One of those columns is a XMLType. My goal is to have a query which selects rows from the table of which the XML column matches certain criteria. I'm trying following example (JDBC) : http://download.oracle.com/do

  • Problem with openURL when sending Mail

    Hi All I am trying to send mail from my app using [[UIApplication sharedApplication] openURL: [NSURL URLWithString:emailData]]; emailData contains a google URL that i want to send via email: http://maps.google.com/maps?f=d&saddr=45.578982,-73.565698&

  • Thunderport display vs iMac

    Hi Apple Communities, It is nice to be back. I do not really have a problem today. I am buying a new Mac this summer so I have a question. I already have a 13" Macbook Pro late 2011 and Ipad 2. (Don't mention rumors to me) Can someone tell me what to