Detecting Loaded Flash Chart

I have a page with a report region and a flash chart. I created a printer friendly template for this and in it included some script to print the page using the onload event. The problem is that when the print dialog box comes up the chart is sometimes not yet rendered so the printout shows the "Loading..." gif instead of the chart.
Is there a way to capture or test for the end of the loading of the flash chart?
Thanks,
Greg
PS Apex 3.0 with users all on IE6

Hi Greg,
Could you ever print a chart, just from the browser?
In my understanding this is not yet possible in the standard APEX implementation. Anychart 4.2 is a lot better in this, but that's not yet in APEX 3.0.
However if you think it's just the loading, why not have a button on the page that does the print? So you're sure it's loaded? It won't be one click like you're trying to implement, but 2 click.
Alternatively I'm thinking about pausing the javascript or working with 2 pages. Like a master and detail and you load the chart in the detail and print from the master.
I look forward to your reply.
Regards,
Dimitri
-- http://dgielis.blogspot.com/
-- http://apex-evangelists.com/
-- http://apexblogs.info/

Similar Messages

  • Slow flash chart loading in Apex due to SQL performance!

    I am very new with Oracle. I have an application with lots of flash charts which are mostly very slow to load. My table size is over 10 million and growing. I think that most of my problems come from the SQL quries that I use, but do not understand most of the techniques I find in internet to tune it. Here is one example:
    select null,c.mydate label,c7.cnt "Rattle",c8.cnt "Climb",c9.cnt "Kick",c1.cnt "Footstep",c2.cnt "Vehicle",c4.cnt "Start"
    from (select unique TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,TO_CHAR(RECORDDATE,' yyyy-mm-dd HH24:MI') as sort from SCOTT.SCDATABASE4 WHERE RECORDDATE> TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND ID = :P2_ID AND RECORDDATE< TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS') AND (CLASS in (7,8,9,1,2,4))) c
    left join
    (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate, count(1) cnt from SCOTT.SCDATABASE4 WHERE RECORDDATE> TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND ID = :P2_ID AND RECORDDATE< TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS') AND CLASS = 7 group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')) c7 on (c.mydate = c7.mydate)
    left join
    (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate, count(1) cnt from SCOTT.SCDATABASE4 where RECORDDATE> TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND ID = :P2_ID AND RECORDDATE< TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS') AND CLASS = 8 group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')) c8 on (c.mydate= c8.mydate)
    left join
    (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate, count(1) cnt from SCOTT.SCDATABASE4 where RECORDDATE> TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND ID = :P2_ID AND RECORDDATE< TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS') AND CLASS = 9 group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')) c9 on (c.mydate = c9.mydate)
    left join
    (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate, count(1) cnt from SCOTT.SCDATABASE4 WHERE RECORDDATE> TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND ID = :P2_ID  AND RECORDDATE< TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS') AND CLASS = 1 group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')) c1 on (c.mydate = c1.mydate)
    left join
    (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate, count(1) cnt from SCOTT.SCDATABASE4 WHERE RECORDDATE> TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND ID = :P2_ID AND RECORDDATE< TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS') AND CLASS = 2 group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')) c2 on (c.mydate = c2.mydate)
    left join
    (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate, count(1) cnt from SCOTT.SCDATABASE4 WHERE RECORDDATE> TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND ID = :P2_ID AND RECORDDATE< TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS') AND CLASS = 4 group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')) c4 on (c.mydate = c4.mydate)
    order by c.sort I have oracle 11g working with Apex 4.1. I used the SQL workshop's explain plan:
    Operation     Options     Object     Rows     Time     Cost     Bytes     Filter
    Predicates *     Access
    Predicates
    SELECT STATEMENT
              66     703     58,573     9,966          
    SORT
    ORDER BY          66     703     58,573     9,966          
    HASH JOIN
    RIGHT OUTER          66     703     58,572     9,966          "C"."MYDATE" = "C1"."MYDATE"(+)
    VIEW
              1     101     8,358     22          
    HASH
    GROUP BY          1     101     8,358     18          
    FILTER
                                  TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    TABLE ACCESS
    FULL     SCDATABASE4     1     101     8,357     18     "CLASS" = 1 AND "ID" = TO_NUMBER(:P2_ID) AND "RECORDDATE">TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND "RECORDDATE"<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    HASH JOIN
    OUTER          66     603     50,214     8,514          "C"."MYDATE" = "C2"."MYDATE"(+)
    HASH JOIN
    OUTER          66     503     41,853     7,062          "C"."MYDATE" = "C4"."MYDATE"(+)
    HASH JOIN
    OUTER          66     402     33,494     5,610          "C"."MYDATE" = "C9"."MYDATE"(+)
    HASH JOIN
    OUTER          66     302     25,135     4,158          "C"."MYDATE" = "C8"."MYDATE"(+)
    HASH JOIN
    OUTER          66     202     16,777     2,706          "C"."MYDATE" = "C7"."MYDATE"(+)
    VIEW
              66     102     8,418     1,254          
    HASH
    UNIQUE          66     102     8,418     1,188          
    FILTER
                                  TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    TABLE ACCESS
    FULL     SCDATABASE4     66     102     8,417     1,188     "ID" = TO_NUMBER(:P2_ID) AND ("CLASS" = 1 OR "CLASS" = 2 OR "CLASS" = 4 OR "CLASS" = 7 OR "CLASS" = 8 OR "CLASS" = 9) AND "RECORDDATE">TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND "RECORDDATE"<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    VIEW
              1     101     8,358     22          
    HASH
    GROUP BY          1     101     8,358     18          
    FILTER
                                  TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    TABLE ACCESS
    FULL     SCDATABASE4     1     101     8,357     18     "CLASS" = 7 AND "ID" = TO_NUMBER(:P2_ID) AND "RECORDDATE">TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND "RECORDDATE"<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    VIEW
              1     101     8,358     22          
    HASH
    GROUP BY          1     101     8,358     18          
    FILTER
                                  TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    TABLE ACCESS
    FULL     SCDATABASE4     1     101     8,357     18     "CLASS" = 8 AND "ID" = TO_NUMBER(:P2_ID) AND "RECORDDATE">TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND "RECORDDATE"<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    VIEW
              1     101     8,358     22          
    HASH
    GROUP BY          1     101     8,358     18          
    FILTER
                                  TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    TABLE ACCESS
    FULL     SCDATABASE4     1     101     8,357     18     "CLASS" = 9 AND "ID" = TO_NUMBER(:P2_ID) AND "RECORDDATE">TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND "RECORDDATE"<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    VIEW
              15     101     8,359     330          
    HASH
    GROUP BY          15     101     8,359     270          
    FILTER
                                  TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    TABLE ACCESS
    FULL     SCDATABASE4     15     101     8,358     270     "CLASS" = 4 AND "ID" = TO_NUMBER(:P2_ID) AND "RECORDDATE">TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND "RECORDDATE"<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    VIEW
              49     101     8,361     1,078          
    HASH
    GROUP BY          49     101     8,361     882          
    FILTER
                                  TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')     
    TABLE ACCESS
    FULL     SCDATABASE4     49     101     8,360     882     "CLASS" = 2 AND "ID" = TO_NUMBER(:P2_ID) AND "RECORDDATE">TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS') AND "RECORDDATE"<TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
    From this I gather that the full database access is a bad thing, but do not know how to prevent it. I would appreciate any help and sorry for the long post!!

    End Of (rather busy) Week: Friday evening but your query
    select null,c.mydate label,c7.cnt "Rattle",c8.cnt "Climb",c9.cnt "Kick",c1.cnt "Footstep",c2.cnt "Vehicle",c4.cnt "Start"
      from (select unique
                   TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   TO_CHAR(RECORDDATE,' yyyy-mm-dd HH24:MI') as sort
              from SCOTT.SCDATABASE4
             WHERE RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND (CLASS in (7,8,9,1,2,4))
           ) c
           left join
           (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   count(1) cnt
              from SCOTT.SCDATABASE4
             WHERE RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND CLASS = 7
             group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')
           ) c7
        on (c.mydate = c7.mydate)
           left join
           (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   count(1) cnt
              from SCOTT.SCDATABASE4
             where RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND CLASS = 8
             group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')
           ) c8
        on (c.mydate= c8.mydate)
           left join
           (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   count(1) cnt from SCOTT.SCDATABASE4
             where RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND CLASS = 9
             group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')
           ) c9
        on (c.mydate = c9.mydate)
           left join
           (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   count(1) cnt
              from SCOTT.SCDATABASE4
             WHERE RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID 
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND CLASS = 1
             group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')
           ) c1
        on (c.mydate = c1.mydate)
           left join
           (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   count(1) cnt
              from SCOTT.SCDATABASE4
             WHERE RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND CLASS = 2
             group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')
           ) c2
        on (c.mydate = c2.mydate)
           left join
           (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   count(1) cnt from SCOTT.SCDATABASE4
             WHERE RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND CLASS = 4
             group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI')
           ) c4
        on (c.mydate = c4.mydate)
    order by c.sortseems just
    select null,
           c.mydate label,
           case when gc.CLASS = 7 then gc.cnt end "Rattle",
           case when gc.CLASS = 8 then gc.cnt end "Climb",
           case when gc.CLASS = 9 then gc.cnt end "Kick",
           case when gc.CLASS = 1 then gc.cnt end "Footstep",
           case when gc.CLASS = 2 then gc.cnt end "Vehicle",
           case when gc.CLASS = 4 then gc.cnt end "Start"
      from (select unique
                   TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   TO_CHAR(RECORDDATE,' yyyy-mm-dd HH24:MI') as sort
              from SCOTT.SCDATABASE4
             WHERE RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND (CLASS in (7,8,9,1,2,4))
           ) c
           left join
           (select TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI') as mydate,
                   CLASS,
                   count(1) cnt
              from SCOTT.SCDATABASE4
             WHERE RECORDDATE > TO_TIMESTAMP(:P2_DATE,'DD-MON-YYYYHH24:MI:SS')
               AND ID = :P2_ID
               AND RECORDDATE < TO_TIMESTAMP(:P2_DATE2,'DD-MON-YYYYHH24:MI:SS')
               AND CLASS in (7,8,9,1,2,4)
             group by TO_CHAR(RECORDDATE,'MM/DD/YY HH24:MI'),CLASS
           ) gc
        on c.mydate = gc.mydate
    order by c.sortRegards
    Etbin

  • "loading data. please wait." message on flash charts after releasing to 3.1

    We are experiencing "loading data. please wait." message on all flash charts after exporting our app from dev (3.1.2) where all of the charts work fine and importing it into prod (3.1.2) where the message occurs.
    A work-around has been found by resetting the #HOST# variable in charts' regions' source code
    from:
    XMLFile=#HOST#apex_util.flash?
    to:
    XMLFile=<physical URL of the production app>apex_util.flash?
    Obviously this is an ugly work-around and requires a lot of work every time we do a release because it gets overwritten back to #HOST# with ever import (we have quite a few flash charts).
    Any suggestions, or rumors when this "bug" will be fixed?
    Thank You
    Boris

    Hello,
    Take a look at this thread and see if it addresses your problem -
    Flash chart fails through proxy
    BTW it's not really a 'bug' ;)
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

  • Flash charts are not displaying on APEX 4.2 - using HTML5 works fine

    Hi
    I have a problem with flash charts on APEX 4.2.
    When I try to prepare simplest chart (Flash) I don't see any charts. on IE8,9,10 I see empty region and page is still loading. Using FF page is still loading but I don't see even empty frame/place for chart.
    Other regions are visible but page is still loadng (on status bar I see message: "waiting for respons and page URL).
    When I switch to HTML5 charts everything works fine (on newer browsers IE10,FF)
    How to debug above?
    Thank you for any help.

    Hi,
    My Apex listener version is 1.1.4.195.00.12

  • Dynamically set flash chart height?

    Hi,
    I have a flash chart that includes a selector that alters the query for the chart. Depending on what the user selects, the chart shows a different number of rows (this happens to be a stacked horizontal bar chart, but this could apply to any chart type). I would like to be able to dynamically set the chart height based on the number of rows the query returns. If I set it too small and the user makes a choice that returns a larger number of rows, the chart bars are compressed to the point where the labels are unreadable or omitted altogether. Conversely, if I set the height to a larger value and the user makes a selection that results in a small number of rows, the chart is overly extended and hard to read.
    I am able to calculate what I'd like the chart height to be using a page item and a before header process. But I can't figure out how to pass this value to AnyChart. I tried using an item substitution (e.g., &P7_CHART_HEIGHT.) as the value for the chart height on the Chart Attributes/Chart Settings page, but this attribute requires a non-zero numeric value. I tried to figure out if I could alter the chart XML, but could not figure out how to do it and I'm not sure item substitutions would be passed in the XML anyway.
    Is there a way to dynamically set the height attribute of a chart at page load time?
    Thanks,
    Mike

    Hi Mike,
    You can update the Region Source of your chart, replacing the substitution strings *#HEIGHT#* with the reference to your page item *&P7_CHART_HEIGHT.*. So your chart region source should then look something like the following(note that I've trimmed some lines for display purposes), and when the chart is run it will pick up your setting for the height, based upon the value returned from your Before Header process:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
        codebase="#HOST_PROTOCOL#://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
        width="#WIDTH#"
        height="&P7_CHART_HEIGHT."
        id="#CHART_NAME#"
        align="top">
    <param name="movie" value="#IMAGE_PREFIX#flashchart/anychart_5/swf/...............................">
    <param name="quality" value="high">
    <param name="allowScriptAccess" value="sameDomain">
    <param name="allowNetworking" value="all">
    <param name="scale" value="noscale">
    <param name="wmode" value="transparent">
    <param name="FlashVars" value="initText=#FLASH_INIT#&xmlLoadingText=............................................">
    <embed src="#IMAGE_PREFIX#flashchart/anychart_5/.......................................
           quality="high"
           width="#WIDTH#"
           height="&P7_CHART_HEIGHT."
           name="#CHART_NAME#"
           scale="noscale"
           align=""
           allowScriptAccess="sameDomain"
           allowNetworking="all"
           type="application/x-shockwave-flash"
           pluginspage="#HOST_PROTOCOL#://www.macromedia.com/go/getflashplayer"
           wmode="transparent"
           FlashVars="initText=#FLASH_INIT#&xmlLoadingText=#FLASH_................................................">
    </embed>
    </object>
    #CHART_REFRESH#
    {code}
    I hope this helps.
    Regards,
    Hilary                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Safari browser does not detect Adobe Flash and/or JavaScript.

    Hello,
    I have Safari and Firefox loaded on my Mac. My Firefox browser detects Adobe Flash Player and Javascript is enabled, but my Safari browser doesn't seem to detect it although it is definitely loaded and installed on the computer. I can watch/see videos on youtube and see flash-enabled content on websites using firefox browser, but my safari browser cannot. Is there anything else I can do to fix this? I went and checked that I have javascript enabled in my preferences for the Safari Browser.
    I have reinstalled the latest version of flash player on my computer several times. But, when I go to a website like youtube, all it tells me is that either my Javascript is disabled or I have an old version of Flash player. I've repeatedly installed the newest version. I need help with this. Thanks.

    No it doesn't work now. I uninstalled Flash, reinstalled, unclicked the javascript buttons in safari preferences, restarted, everything, and still I can't play vids in sites like youtube.com.

  • Flash Charts issue, please help!

    Hi everyone!
    This this what is happening. The DBA just "modify" the apex (Application Express 3.1.0.00.32) images (I don't know why ¬_¬ ), after that all the entire apex and application stoped working at all. He "recovered" the images when I asked him if he changed something into the server, however, even when apex go backs to "normal" charts does not load any data anymore. What could the problem be?
    Hope you could help me!
    Thank you!
    Fury
    Edited by: FuryDev on Aug 30, 2010 8:39 AM
    Edited by: FuryDev on Aug 30, 2010 8:55 AM

    Thanks for your reply Jari
    Apex version: 3.1.0.00.32
    Data Base Version: 10.2.0.1.0
    Aplication Server: 10.1.2.0.2
    Apex full version was previously uncompress on the OAS server and it (apex) was deleted by mistake, images inlcuded. In order to fix this the DBA took the original apex.zip and then he "restore" the images from that file into the apex images folder. Everythings seems to work fine but flash charts, HTML charts works fine as well.
    Hope you can help me!
    PS: If you need some other info, just tell me.
    Fury

  • Setting the parameters for flash charts

    Hi friends,
    I am having a flash chart in one of my pages and the chart series is of type "Function returning the SQL query". the query is having some parameters like :P23_VARIABLE_NAME. The values of the variable is not getting passed on page load but the values will be passed only when we submit the form. The :P23_VARIABLE_NAME is a variable assigned to a list.
    Could you please let me know how to pass the value to the flash chart the data. The variable values are passed on page load for some other charts which are on the page.
    Regards,
    Pradeep

    That was helpful information. I verified the session status for the page items and saw that when the page loads the session status is blank and when we submit the form the status changes to I with the corresponding values that I entered.
    How can i set a default value for a page item so that when the page loads for the first time, The session status will be I and there is a default value for the page item.
    One more observations is that even the session status is blank how is the apex reports fetching the data based on the variable and the chart is not able to fetch the data.
    Could you provide some more light on the above two questions.
    Regards,
    Pradeep

  • Can't get working flash chart through SSL (Apex 4.0)

    Flash chart does not works in Apex 4.0 using ssl and Apex Listener (on glassfish v3 ). In firefox it just writes "No data found", in google chrome it writes "error loading file http://.../apex/apex_util.flash?..."
    Any help will be appreciated, thanks.

    Hello Emma I presume your in the UK.
    In the UK PPPoA is the standard PPPoE is not supported by many ISP's.
    On your Mac just use DHCP in your Network settings. Do not use PPPoE.
    Then login to your router's web configuration page. http://192.168.0.1 or http://192.168.1.1. Admin and Password are the usual login details for netgear routers.
    use the following details
    PPPoA
    VC-Mux
    Chap authentication
    vpi and vci are 38,0
    and of course use your isp username and password.
    Post edited. I just noticed you had already figured out the correct details.
    Message was edited by: Tim Haigh

  • Apex 4 - Flash Chart - How to open link in same page

    Hi,
    I need help in apex flash chart development. I want to open link in same page. Currently it open in new window with existing page intact
    I have created a flash chart.
    Below are setting
    Chart Type 2D line
    Series Type : Line
    Series siurce : sql query
    elect '?p=&APP_ID.:2:&APP_SESSION.::::P2_ORACLESID,P2_CAP_DATE:&P15_ORACLESID.,'||capture_date link,
    capture_date,
    round(sum(TOTAL_MB)) "Total_MB" ,
    round(sum(USED_MB)) "Used_MB" ,
    round(sum(FREE_MB)) "Free_MB"
    from SST.TABLESPACE_USAGE_HIST
    where DBNAME = :P15_ORACLESID
    group by capture_date
    order by capture_date
    Problem: when I run this page, chart is displayed. Now if I click on the series value of chart, it opens page ( '?p=&APP_ID.:2:&APP_SESSION.::::P2_ORACLESID,P2_CAP_DATE:&P15_ORACLESID.,'||capture_date link) It opens page 2 in new window. I want it to open in same window. Am I missing something ? Is this possible ? Is there anything I can change to achive this functionality
    Please help

    Hi All,
    I have an issue with Anychart link, can you please help me.
    1. I have created HTML region in a page with
    <div id="sampleClick">
    <div id="sample1">
    <script type="text/javascript" language="javascript">
    function ChartSample()
    var ChartSample = new AnyChart('/i/flashchart_v5/swf/AnyChart.swf');
    ChartSample.width = "500";
    ChartSample.height = "400";
    var ChartData = new htmldb_Get(null,$x('pFlowId').value,
    'APPLICATION_PROCESS=FINANCE_020',0);
    gReturn = ChartData.get();
    // prompt("xml",gReturn);
    ChartSample.setData(gReturn);
    ChartSample.write("sample1");
    ChartSample();
    </script>
    2. Then created Application process with "On Demand Run this application process when requested by a page process." in PL/SQL Anonymous block
    select 'f?p=&APP_ID.:136:&APP_SESSION.::::P33_ID:' || YEAR link,DECODE(period,1,'JAN',2,'FEB',3,'MAR',4,'APR',5,'MAY',6,'JUN',7,'JUL',8,'AUG',9,'SEP',10,'OCT',11,'NOV',12,'DEC')||'-'||year "MONTH",round(SUM(ytd_revenue)/1000000,2) YTD_REV from t_tc_qpcq2052
    where cntry='IND' and category='20'
    GROUP BY year, period
    ORDER BY YEAR, period
    I am able to see the chart, but I am not able to open or pass the value from one page to another page when I click the bar chart.
    Can you please help me on this.
    Thanks in Advance.

  • Unable to load Flash 9 on my Intel MacBook Pro

    Unable to load Flash 9 on my Intel MacBook Pro but can on my
    Intel iMac. I spoke with a Tech from the Mac Store service area and
    was told that there in a thread on this issue but I can't find it.
    The basic issue is that I am able to load Adobe Flash Player
    9 on my Intel iMac but not on my Intel MacBook Pro and I'm unable
    to determain why. I tryed uninstalling and reinstalling three times
    and found no difference.
    If someone could help me I'd be thankful.
    Dave

    I bought the $29 version of Snow Leopard (not the kosher way of doing things, i know.
    If you read the license agreement, there's actually no difference between what's allowed with the $29 copy and the $169 boxed set. The only difference is that the boxed set also includes iLife and iWork. There is also, despite what some will have you believe, nothing in the license agreement that requires Leopard to be pre-installed except in the case of the $10 disk purchased as part of the Up-to-Date program (for folks who bought a machine shortly before SL was released). So, you're not being bitten by some technical requirement for Leopard to be present.
    I get a flashing folder with a question mark. My disk drive makes some crazy noises as well, and it seems to start running fast, then slowing down. I think it may have caused a minor scratch on the disk as well.
    Sounds like it's possible the drive could be failing, though that's impossible to say for sure remotely. One man's crazy noises are another man's normal state of operations. Do other DVDs work in your drive?
    I'll also need to do an "Archive & Install" since there are tons of important files on this machine.
    *DO NOT* attempt to install a system update on this machine unless you have good backups! If something goes wrong, you're screwed if you didn't have a backup. Hopefully, you have not reached that point already... I'm unclear on whether your machine is no longer able to boot, or if it's only having trouble when you try to boot from the SL disk.
    If your machine is still functional, your first priority before doing *+anything else+* should be to make at least two backups. See my [Mac Backup Guide|http://www.reedcorner.net/thomas/guides/backups> for assistance with this.
    If your machine can't boot anymore, let us know and we'll offer some troubleshooting tips. And don't try to do anything else with it until you've consulted with some expert, whether here or at an Apple Store or somewhere else.

  • How can I display more than 15 rows in a stacked 3D horizontal flash chart

    It seems I cannot display more than 15 rows at a time in a stacked 3D horizontal flash chart.
    Any ideas?
    Thanks, Pierre

    The default history length of a chart is 1024. To make it longer is a right click option.

  • How to turn off scrollbars in Flash chart legend

    I recently migrated an Apex 3 app over to Apex 4. In the process I upgraded all of the Flash charts as well. Now, I get vertical scrollbars in some of the legends.
    How can I turn those scrollbars off? I don't see any settings in the UI and I haven't been able to work out the proper arguments in the XML to do it manually.
    Thanks for any pointers!
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    in ipad

  • Flash Chart Legend

    I have built a 2D Line Flash chart with 6 series. My problem is that the legend shows the word "Value". Does anyone know how to make the legend display the series name instead.
    Jeff

    Varad,
    Thank you for your reply but your answer does not appear to be the solution I need. This SQL statement below used in a SVG Chart yields a legend using the series name. The same SQL statemnet used in a Flash Chart yields "Value" as the series name. Why?
    <pre>
    SELECT NULL link,
    to_char (minipay_detail_vw.event_dt, 'YYYY, MM') AS label,
    sum (minipay_detail_vw.contract_pay_amt) AS value
    FROM [email protected]
    WHERE minipay_detail_vw.object_class_cd = '018'
    AND to_char (minipay_detail_vw.event_dt, 'YYYYMM') <
    to_char (sysdate, 'YYYYMM')
    AND financial_organization_cd IN
    ('1650', '1655', '1660', '1665', '1670')
    AND (:p337_fy = '%null%' OR minipay_detail_vw.fiscal_year = :p337_fy)
    GROUP BY to_char (minipay_detail_vw.event_dt, 'YYYY, MM')
    ORDER BY to_char (minipay_detail_vw.event_dt, 'YYYY, MM')
    </pre>
    Jeff

  • Flash Chart Legend Problem

    Hi,
    Im having a problem with my flash chart legends in Apex3.0.
    I have changed the name of the Series to what i want to appear in my legend - however the legend just shows "Value" for all my Series.
    Does anyone else have this problem?
    Cheers,
    Immanuel

    Hello,
    I need a legend like this
    No of Clicks('000)
    If i give l" No of Clicks('000)" as column alias, chart says Error :No chart data available.
    If i give "No of Clicks('000')" or "No of Clicks(''000)" as column alias in the query, it displays the correct legend..
    Would anybody tell me how to show the legend like this
    No of Clicks('000)
    Regards,
    Archana

Maybe you are looking for

  • Add a New Layer As a Last Layer

    Hi Friends, How to  Add a New Layer As a Last Layer in indesign scripting. If the Document has 5 layers in the sense,the newly added Layer should be the 6th Layer. Please Give ideas.

  • Change over from Pipex

    BT changed my broadband and telephone over on the 26th April. BT cancelled the broadband okay. They did not cancel the telephone, so according to pipex, I still have a telephone account with them. So I'm paying both? cancelled pipex today.

  • IMessage immediately sent as SMS message

    Hi everyone I was iMessaging with someone (both have iPhone 6) for a few days, then, one day, I sent them a message. (I did not have the SMS settings turned on). This is what happened: The iMessage appeared to send as blue, but immediately appeared a

  • Keys provided by school do not work; where can I get help?

    Hello, I attend an art college currently that provided students with a copy of photoshop cs6 and a limited amount of creative cloud as long as we attend. However, I'm unable to make the new cs6 work. Who can I speak to? I dislike forms because I don'

  • Computer didn't wake up

    Hello. I had an issue this morning with my Mac. It was in sleep mode. I touched a key to wake it up and nothing happened. After several attempts and also trying to press the start button, I finally held in the start button (which I hope was alright t