Case Statement Error - Need help

What's wrong with this case statement
Case When Opportunity."Probability %" = '0' then "- Product Revenue"."Product Revenue (000)" *( Opportunity."Probability %" / 100) else "- Product Revenue"."Product Revenue (000)" *( "Opportunity - Product"."Probability %" / 100) end if
I am getting an error when I place this in a pivot table

Disregard, it is working now

Similar Messages

  • Acrobat Error - need help! - Acrobat 9 Pro

    When I try to open an acrobat files my it trys to Open EVERY acrobat file on my computer and does so until I get the following message
    "There was an error opening this document.  The maximum number of files are already open.  No other files can be opened or printed until some are closed"
    Then I have to force quit.
    This just started happending a few months ago
    I am on a Mac OSX
    I need help!  Any suggestions?
    Debbie

    I  have a 10.5.8
    I am not that technical so not sure what you mean about applejack etc.
    Thanks for helping!
    Debbie
    Date: Sat, 10 Apr 2010 13:03:28 -0600
    From: [email protected]
    To: [email protected]
    Subject: Acrobat Error - need help! - Acrobat 9 Pro
    What version of OS X? Some people have luck by clearing their caches. This can be done with Applejack in 10.5. Onyx will work in SL.
    >

  • CASE Statement error in function -- Please help!

    Hi All,
    I created a function in my report.
    It has a SQL query similar to the one below. The query works fine in SQL plus.
    It has a CASE statement. I am getting error at line4 at the select statement. Error is: "Encountered symbol 'SELECT'....."
    Can we use CASE statements like this in reports that use SELECT statements for RETURN EXPRESSIONS. Do we have to do any special?
    Can someone help me out of this trouble?
    THanks in advance.
    SELECT PARENT_id,
         CASE WHEN EXISTS (SELECT PARENT_id FROM CHILD CH1 WHERE CH1.PARENT_id = PARENT.PARENT_id AND UPPER(CH1.description) LIKE '%ABC%') THEN
              (SELECT CH2.MOD_id FROM CHILD CH2 WHERE CH2.PARENT_id = PARENT.PARENT_id AND UPPER(CH2.description) LIKE '%ABC%')
         ELSE
              (SELECT MOD_id FROM
              (SELECT MOD_id,PARENT_id FROM CHILD CH3 ORDER BY started) MOD2 WHERE MOD2.PARENT_id = PARENT.PARENT_id AND ROWNUM = 1
         END
    ) MOD_ID
    FROM PARENT;

    take out the parentheses after the PARENT_ID and see
    like below
    SELECT parent_id,
           CASE
              WHEN EXISTS (
                     SELECT parent_id
                       FROM CHILD ch1
                      WHERE ch1.parent_id = PARENT.parent_id
                        AND UPPER (ch1.description) LIKE '%ABC%')
                 THEN (SELECT ch2.mod_id
                         FROM CHILD ch2
                        WHERE ch2.parent_id = PARENT.parent_id
                          AND UPPER (ch2.description) LIKE '%ABC%')
              ELSE (SELECT mod_id
                      FROM (SELECT   mod_id, parent_id
                                FROM CHILD ch3
                            ORDER BY started) mod2
                     WHERE mod2.parent_id = PARENT.parent_id AND ROWNUM = 1)
           END AS mod_id
      FROM PARENT;       

  • Help: Case statement Error

    Hello Folks,
    Am trying to execute a procedure but somehow its returning an error near the case statement.I am thinking whether i have written it correctly or not. Can anyone please advice.Am just posting that specific part of the code where it points. Thanks a million.
    select  @v_retained_by_client = case c.code when '50' then RETAINED_BY_CLIENT  -- Its pointing the error at this line
                                                  when '51' then RETAINED_BY_CLIENT                
                                                  when '52' then RETAINED_BY_CLIENT
                                                  else 0
                                                  end,
               @v_hriretainedfee = case c.code  when '50' then hri_fee     
                                                when  '51' then hri_fee
                                                when '52' then hri_fee
                                                else 0
                                                end,
              @v_adminretainedfee = case c.code when '50' then admin_fee    
                                                when  '51' then admin_fee
                                                when '52' then admin_fee
                                                else 0
                                               end,  
               @v_allocation_amt = case c.code       when '50' then ALLOCATION_CHECK_AMOUNT
                                                        when '51' then ALLOCATION_CHECK_AMOUNT
                                                       when '52' then ALLOCATION_CHECK_AMOUNT          
                                                 else 0
                                              end,
              @v_cur_recoveryrefund = case c.code when '96' then sum(recovery_amount)      
              end,
              @v_cur_recoveryvoid = case c.code when '95'  then sum(recovery_amount)   
              end,
              @v_cur_hrirefund = case c.code when '96' then sum(hri_fee)            
              end,
              @v_cur_hrivoid = case c.code when '95'  then sum(hri_fee)             
              end,
                @v_cur_adminrefund = case c.code when '96' then sum(admin_fee)            
              end,
              @v_cur_adminvoid = case c.code when '95'  then sum(admin_fee)              
              end,
                @v_cur_taxrefund = case c.code when '96' then sum(taxes)             
              end,
              @v_cur_taxvoid = case c.code when '95' then sum(taxes)              
              end
                 from cash_receipt b, recovery_type c
                 where case_id = @v_case_id
              and b.recovery_type_id = c.recovery_type_id
              and recovery_date between @p_startdate and @p_enddate
            end         Edited by: user11961230 on Nov 25, 2009 1:27 PM

    Hi,
    Sorry, I don't know anything about SQL Server.
    I do know you should take baby steps, especially when trying something you're not sure how to do.
    Get rid of all but one CASE expression, until you know how to make that one work.
    When you do get that to work, add one more, as much like the first as possible, to make sure you know how to do two columns in the same query.
    Get asomething working, then try adding a little bit to it. When you do have errors, you'll have a much better idea what caused the errror.
    It's suspicious that you're using aggregate functions in some places, like this
    @v_cur_recoveryrefund = case c.code when '96' then sum(recovery_amount)      
              end,but not in the first CASE expressions. You might try <tt>MAX (CASE case c.code when '50' then ... END)</tt>
    I also find it odd that you're using <tt>CASE ... SUM (...)</tt> ; in Oracle, that would be very rare. It implies that the same expression will be in the GROUP BY clause.
    It's more common to have <tt>SUM (CASE ... END)</tt> , like this:
    SUM ( CASE c.code WHEN '96' THEN recovery_amount END )

  • Case statement error OBIEE

    Hi All,
    I'm getting an error with my Case statement in OBIEE. Below is the statement.
    case when @{PV_RELEASE_NAME} = 'January' then "Script Details"."Calendar Date" is between ('1/1/2012','1/31/2012') else"Script Details"."Calendar Date" end
    Please advice. Thanks for your help in advance!

    Thanks for the response , I tried with the formula u mention still I am getting the same error ..Please find the error below
    case when @{PV_RELEASE_NAME} = 'January' then "Script Details"."Calendar Date" || " is between ('1/1/2012','1/31/2012')" else"Script Details"."Calendar Date" end
    Formula syntax is invalid.
    [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27005] Unresolved column: " is between ('1/1/2012','1/31/2012')". (HY000)
    SQL Issued: SELECT case when 0 = 'January' then "Script Details"."Calendar Date" || " is between ('1/1/2012','1/31/2012')" else"Script Details"."Calendar Date" end FROM "Test Script - Ad Hoc"
    If I use the below formula I am getting syntax error
    case when @{PV_RELEASE_NAME} = 'January' then "Script Details"."Calendar Date" is between ('1/1/2012','1/31/2012') else"Script Details"."Calendar Date" end
    Formula syntax is invalid.
    [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27002] Near : Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: SELECT case when 0 = 'January' then "Script Details"."Calendar Date" is between ('1/1/2012','1/31/2012') else"Script Details"."Calendar Date" end FROM "Test Script - Ad Hoc"

  • Case statement error

    Error:  The below case statement is throwing error when i include in the select statement for B
       CASE WHEN (AST_INV_CHF_Y <= 250000)
                      THEN 'BELOW 250K'
                      WHEN (AST_INV_CHF_Y > 250000  AND AST_INV_CHF_Y <=1000000)
                      THEN 'CHF250K-1MN'
                      WHEN (AST_INV_CHF_Y > 1000000 AND AST_INV_CHF_Y <=5000000)
                      THEN 'CHF1MN-5MN'
                      WHEN (AST_INV_CHF_Y > 5000000 AND AST_INV_CHF_Y <=10000000)
                      THEN 'CHF5MN-10MN'
                      WHEN (AST_INV_CHF_Y > 10000000)
                      THEN 'CHF10MN PLUS'
                      ELSE 'NO INV HH AST' END AS AST_SGMT_RNG_CHF_T   
    ----------- Full query                 
    SELECT       TO_CHAR(SYSDATE,'yyyy-mm-dd') AS ED_UPD_D,
                 BRN_I,
                 DVS_I,
                 A.ACC_MHH_N,
                 GPC_MAND_C,
                 GPC_DPNT_C,          
                 GPC_INDEP_C, 
                 GPC_TRST_C,             
                 ACC_AST_PRCS_D,         
                 AST_SRCE_SD_Y,
                 AST_SRCE_SD_CHF_Y,
                 CNTRY_DMCL_DESC_T,
                 AST_SGMT_RNG_CHF_T
        select * from CFO_OWNER.ASSETS_BY_DOMICILE_TEMP1 A,
                 SELECT   SYSDATE    AS ED_UPD_D,
                              ACC_MHH_N,
                 SUM(
                         CASE WHEN (AST_GMIS_LIAB_C = '20001'
                        ) THEN AST_SRCE_SD_CHF_Y
                          ELSE 0 END)
                 AS AST_INV_CHF_Y ,
       CASE WHEN (AST_INV_CHF_Y <= 250000)
                      THEN 'BELOW 250K'
                      WHEN (AST_INV_CHF_Y > 250000  AND AST_INV_CHF_Y <=1000000)
                      THEN 'CHF250K-1MN'
                      WHEN (AST_INV_CHF_Y > 1000000 AND AST_INV_CHF_Y <=5000000)
                      THEN 'CHF1MN-5MN'
                      WHEN (AST_INV_CHF_Y > 5000000 AND AST_INV_CHF_Y <=10000000)
                      THEN 'CHF5MN-10MN'
                      WHEN (AST_INV_CHF_Y > 10000000)
                      THEN 'CHF10MN PLUS'
                      ELSE 'NO INV HH AST' END AS AST_SGMT_RNG_CHF_T           
        FROM CFO_OWNER.ASSETS_BY_DOMICILE_TEMP1
        GROUP BY ACC_MHH_N
        ORDER BY ACC_MHH_N
        ) B
    where a.ACC_MHH_N = b.ACC_MHH_N   )
    below are the columns for the table ASSETS_BY_DOMICILE_TEMP1.
                 A.ACC_MHH_N,
                 A.BRN_I,
                 A.DVS_I,
                 CNTRY_DMCL_DESC_T,
                 GPC_MAND_C,
                 GPCE_DPNT_C AS GPC_DPNT_C,      
                 GPC_INDEP_C, 
                 GPC_TRST_C,             
                 ACC_AST_PRCS_D,
                 AST_GMIS_LIAB_C,         
                 AST_SRCE_SD_Y,
                 AST_SRCE_SD_CHF_Y
        

    Hi,
    It's hard to tell if you have ENDs to each CASE.
    I recommend indenting so that the END comes directly underneath CASE, with only whitespace in between.
    SELECT  ED_UPD_D,ACC_MHH_N,AST_INV_CHF_Y ,
            CASE
           WHEN (AST_INV_CHF_Y <= 250000)
                      THEN 'BELOW 250K'
                      WHEN (AST_INV_CHF_Y <=1000000)  -- No need to test for lower bound
                      THEN 'CHF250K-1MN'
                      WHEN (AST_INV_CHF_Y <=5000000)
                      THEN 'CHF1MN-5MN'
                      WHEN (AST_INV_CHF_Y <=10000000)
                      THEN 'CHF5MN-10MN'
                      WHEN (AST_INV_CHF_Y > 10000000) -- Equivalent to IS NOT NULL
                      THEN 'CHF10MN PLUS'
                      ELSE 'NO INV HH AST'
         END AS AST_SGMT_RNG_CHF_T
    FROM (
         SELECT   TO_CHAR(SYSDATE,'yyyy-mm-dd')    AS ED_UPD_D,
                  ACC_MHH_N,
                       SUM (
                           CASE
                        WHEN (AST_GMIS_LIAB_C = '20001')
                        THEN AST_SRCE_SD_CHF_Y
                               ELSE 0
                   END
                   )             AS AST_INV_CHF_Y
         FROM      CFO_OWNER.ASSETS_BY_DOMICILE_TEMP1
             GROUP BY ACC_MHH_N
    ORDER BY ACC_MHH_NSince the first WHEN clause said
    AST_INV_CHF_Y <= 250000, there's no need to check for
    AST_INV_CHF_Y > 250000 in the second one: the second WHEN clause won't even be executed if AST_INV_CHF_Y <= 250000.
    Edited by: Frank Kulash on Nov 21, 2008 2:18 PM

  • Case Statement error in Obiee

    Hi All,
    I'm facing an error with my Case statement in OBIEE(using it in expression builder in RPD). Below is the statement.
    CASE WHEN"GCRMANDB".""."HIM_SRV_REQ_DIM"."ATTRIB_44" = 'Customer Demand Not In GDMS' OR GCRMANDB"."HIM_SRV_REQ_DIM"."ATTRIB_45" = 'Customer Demand Not In GDMS' THEN 1
    (WHEN "GCRMANDB".""."HIM_SRV_REQ_DIM"."ATTRIB_44" = 'Poor Behaviour / Attitude' OR GCRMANDB"."HIM_SRV_REQ_DIM"."ATTRIB_45" = 'Poor Behaviour / Attitude' THEN 1) ELSE 0 END
    Error message that i'm getting is:
    [nQSError: 27002] Near <">: Syntax error [nQSError: 26012] .
    Plaese help

    Try this
    CASE
    WHEN "GCRMANDB"."HIM_SRV_REQ_DIM"."ATTRIB_44" = 'Customer Demand Not In GDMS' OR GCRMANDB"."HIM_SRV_REQ_DIM"."ATTRIB_45" = 'Customer Demand Not In GDMS' THEN 1
    WHEN "GCRMANDB"."HIM_SRV_REQ_DIM"."ATTRIB_44" = 'Poor Behaviour / Attitude' OR GCRMANDB"."HIM_SRV_REQ_DIM"."ATTRIB_45" = 'Poor Behaviour / Attitude' THEN 1
    ELSE 0 END
    Mark if helps

  • CASE STATEMENT ERRORS

    Hi all,
    I have created a PLSQL code which is as follows:
    create or replace procedure case_statement is
    pi constant number(9, 7) := 3.1415927;
    area number(14, 2);
    cursor rad_cursor is
    select * from radius_vals;
    rad_val rad_cursor%rowtype;
    begin
    open rad_cursor;
    loop
    fetch rad_cursor
    into rad_val;
    exit when rad_cursor%notfound;
    area := pi * power(rad_val.radius, 2);
    case
    when rad_val.radius = 3 then
    insert into areas_case values (rad_val.radius, area);
    when rad_val.radius = 4 then
    insert into areas_case values (rad_val.radius, area);
    when rad_val.radius = 10 then
    insert into areas_case values (0, 0);
    else
    raise CASE_NOT_FOUND;
    end case;
    end loop;
    close rad_cursor;
    end case_statement;
    When I execute this code I get these error messages:
    ORA - 06592: CASE not found while executing CASE statement.
    ORA - 06512: at "SCOTT.CASE_STATEMENT" line 24
    ORA - 06512: at line 3
    How do I resolve this problem?

    How do I resolve this problem? Well your code raise CASE_NOT_FOUND in the else clause. So either do something different rad_val.radius is not equal to any of the tested values or give your code an exception handler.
    Cheers, APC

  • Case statement error in 9i

    The following 2 queries gives me different result on running.. can anyone tell me the reason behind it.. is it a oracle error. Case statement gives me a additional unknown value..its not a null or a blank..why is it so?
    1)
    select DISTINCT case when X = 'Cluster' then Yend
    from TABLE_NAME
    2)
    SELECT DISTINCT Y FROM TABLE_NAME WHERE
    X = 'Cluster'

    Because in (1) when X != 'Cluster' the CASE expression will resolve to NULL, thus you have an extra value in the set after the DISTINCT modifier is applied.
    In (2), the rows where X != 'Cluster' are omitted altogether.
    cheers,
    Anthony

  • Exception error, Need Help!

    Need help!
    Why my java program work well under C:\, but can't under D:\Java today? It worked well even yesterday. I had tried the "Hello World", it can not work under D:\Java either.
    when I enter the "java d:\java\Hello" order(after javac of cause), those displays are here:
    Exception in thread "main" java.lang.NoClassDefFoundError: d:\java\Hello
    Caused by: java.lang.ClassNotFoundException:d:\java\Hello
    at java.net.URLClassLoader$1.run<URLClassLoader.java:200>
    at java.security.AccessController.doPrivileged<Native Method>
    at java.net.URLClassLoader.findClass<URLClassLoader.java:188>
    at java.lang.ClassLoader.loadClass<ClassLoader.java:306>
    at sun.misc.Launcher$AppClassLoader.loadClass<Launcher.java:276>
    at java.lang.ClassLoader.loadClass<ClassLoader.java:251>
    at java.lang.ClassLoader.loadClassInternal<ClassLoader.java:319>
    The Hello.java has no problem,and it worked well even yesterday!
    I just don't know what had happened.
    Someone who can help me please reply or email at [email protected]
    Thank you!

    The simple "Hello World" can work under Editplus, but can't under DOS.
    The error appears as the same. I don't know what I should do, could you tell me please?
    Thank you!First test whether environment variables had been set properlyor not
    To test :-
    1) Open cmd
    2) type java
    3) If it runs that means you have set it properly
    Then go to your program directory i.e d:\java\
    and type
    javac Hello.java //to compile it and then
    java Hello //To run it

  • General exception error need help!

    Experts,
    i am facing this problem. i connect to the net by proxy (through office Lan). none of the java applets work for me. Need help
    Java Plug-in 1.5.0_08
    Using JRE version 1.5.0_08 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\mkrishna
    network: Loading user-defined proxy configuration ...
    network: Done.
    network: Loading direct proxy configuration ...
    network: Done.
    network: Proxy Configuration: No proxy
    basic: Cache is enabled
    basic: Location: C:\Documents and Settings\mkrishna\Application Data\Sun\Java\Deployment\cache\javapi\v1.0
    basic: Maximum size: unlimited
    basic: Compression level: 1
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=1
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=2
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=3
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@15212bc
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@97a560
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@1ea5671
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: httpCompression = true
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/liste.jar with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/Outline.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris/class.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris/class.class with proxy=DIRECT
    load: class ZoneFavoris.class not found.
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: ZoneFavoris.class
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/Outline/class.class with proxy=DIRECT
    load: class ZoneFavoris.class not found.
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: ZoneFavoris.class
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    load: class Outline.class not found.
    java.lang.ClassNotFoundException: Outline.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: Outline.class
    java.lang.ClassNotFoundException: Outline.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped

    Hi
    I think you need to configure proxy for the JRE
    If you are using windows Go to control panel , you will find an icon called java plugin. if you have installed multiple JRE you will find multiple icons . Select the one which is configured to browser.
    You will find a proxies tab in that window , add the proxy details there
    Hope this helps you
    Vijay

  • CRW32.exe error NEED HELP

    I get an error when I click on the print preview button, then I click thru the records using the right arrow in the records field at the top of the screen.  I can get to page 3 but when I click it again I get the error "crw32.exe has encountered a problem and needs to close.  We are sorry for the inconvenience." AppName: crw32.exe      AppVer: 12.2.0.290      ModName: cslibu-3-0.dll
    ModVer: 12.2.0.290      Offset: 000023a7
    Can anyone help me with this?? I have to get a job out today and I cant do anything!!

    What happens if you create a new report that has more than 3 pages of data?
    I suggest you purchase a case and get a support engineer tyo help you debug this:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551
    Thank you
    Don

  • Trying to fix an error - need help

    Hello everyone
    I'm having a problem while I try to activate the app
    when I try a error shows me on the screen saying "The applecation was unable to start correctly (0xc0150004). Click OK to close the application"
    The download was fine and succesful.
    can you please help me fix this error?
    thank you.

    The system requirements for AE CC 2014 specifically state that it needs Service Pack 1 if it is to run on Windows 7.
    You will need to get that sorted out before you will be able to run After Effects. Looks like something is wrong with your Windows OS.

  • JDBC - mmMySQL error need help

    hi,
    i hope somebody can help me. I installed mmMySQL its an JDBC driver
    and as i tried to make a query with ORDERBY fieldname ASC i got an
    error:
    Syntax error or Access violation you have an error in your SQL syntax
    near xxx.
    Heres a code snippet would be thankfull for any help
    public static void showToplist(PrintStream printstream)
    String username="root";
    String password="mosesistdoof";
    String toplist="";
    int position;
    try
    Connection con =
    DriverManager.getConnection("jdbc:mysql://localhost/Chat?user="+
    username+"&password="+ password);
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * FROM user ORDERBY
    Punktzahl");
    rs.next();
    stmt.close();
    con.close();
    position=0;
    String Toplist=TemplateReader.JITTmpl("top", "chat");
    printstream.println(Toplist.substring(0,
    Toplist.indexOf("§toplist§")));
    while(rs.next())
    position++;
    printstream.println("<td width=\"15%\"><b><font
    color=\"#0000ff\">" + Integer.toString(position) + "</td><td
    width=\"41%\"><b><font color=\"#0000ff\">" + rs.getString("Username")
    + "</font></b></td><td width=\"44%\"><b><font color=\"#0000ff\">" +
    rs.getString("Punktzahl") + "</font></b></td>");
    printstream.println(Toplist.substring(Toplist.indexOf("§toplist§")
    + 4, Toplist.length()));
    catch(Exception MySQLException)
    System.out.println("SQLException: " +
    MySQLException.getMessage());

    Hi Gidror,
    You need to use "ORDER BY" clause instead of "ODERBY".
    Regards,
    Slava Imeshev
    "Gidror" <[email protected]> wrote in message
    news:[email protected]..
    hi,
    i hope somebody can help me. I installed mmMySQL its an JDBC driver
    and as i tried to make a query with ORDERBY fieldname ASC i got an
    error:
    Syntax error or Access violation you have an error in your SQL syntax
    near xxx.
    Heres a code snippet would be thankfull for any help
    public static void showToplist(PrintStream printstream)
    String username="root";
    String password="mosesistdoof";
    String toplist="";
    int position;
    try
    Connection con =
    DriverManager.getConnection("jdbc:mysql://localhost/Chat?user="+
    username+"&password="+ password);
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * FROM user ORDERBY
    Punktzahl");
    rs.next();
    stmt.close();
    con.close();
    position=0;
    String Toplist=TemplateReader.JITTmpl("top", "chat");
    printstream.println(Toplist.substring(0,
    Toplist.indexOf("§toplist§")));
    while(rs.next())
    position++;
    printstream.println("<td width=\"15%\"><b><font
    color=\"#0000ff\">" + Integer.toString(position) + "</td><td
    width=\"41%\"><b><font color=\"#0000ff\">" + rs.getString("Username")
    + "</font></b></td><td width=\"44%\"><b><font color=\"#0000ff\">" +
    rs.getString("Punktzahl") + "</font></b></td>");
    printstream.println(Toplist.substring(Toplist.indexOf("§toplist§")
    + 4, Toplist.length()));
    catch(Exception MySQLException)
    System.out.println("SQLException: " +
    MySQLException.getMessage());

  • Connection Error - NEED HELP BAD.

    I keep getting this error message. What is the problem and can't anyone explain it in plain terms of what I need to do? What exactly is the problem? I keep reading replies to others' posts about this issue and I can't make heads or tails of what I'm supposed to do. I am not a Mac Tech. I speak English and don't understand all the tech stuff! That's why I own a Mac!
    Please someone help.... This is so frustrating.
    Date/Time: 2006-09-28 21:53:41.354 -0700
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 4071322886.
    [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    0x4f46f00: State change from AVChatNoState to AVChatStateInvited.
    0x4f46f00: State change from AVChatStateInvited to AVChatStateConnecting.
    [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x4f46f00: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    2.113599 @:0 type=4 (00000000/2)
    [VCSIP_INVITEERROR]
    [19]
    2.113461 @SIP/SIP.c:2437 type=4 (900A0015/2)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    1.613373 @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0:2032;branch=z9hG4bK643c3fe24fa4f58c
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1463042804
    Call-ID: 6e5b56ba-4f76-11db-9b55-a94ab9a513c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:2032>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 515
    v=0
    o=alysonraeder 0 0 IN IP4 m.0
    [email protected]
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1296:1:2100
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 2035 RTP/AVP 12 3 0
    a=rtcp:2036
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1082000650
    m=video 2033 RTP/AVP 126 34
    a=rtcp:2034
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 2036 VIDEO 2034
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:352:288:352:288
    a=rtpID:-806649442
    0.612997 @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0:2032;branch=z9hG4bK643c3fe24fa4f58c
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1463042804
    Call-ID: 6e5b56ba-4f76-11db-9b55-a94ab9a513c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:2032>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 515
    v=0
    o=alysonraeder 0 0 IN IP4 m.0
    [email protected]
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1296:1:2100
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 2035 RTP/AVP 12 3 0
    a=rtcp:2036
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1082000650
    m=video 2033 RTP/AVP 126 34
    a=rtcp:2034
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 2036 VIDEO 2034
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:352:288:352:288
    a=rtpID:-806649442
    0.112691 @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0:2032;branch=z9hG4bK643c3fe24fa4f58c
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1463042804
    Call-ID: 6e5b56ba-4f76-11db-9b55-a94ab9a513c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:2032>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 515
    v=0
    o=alysonraeder 0 0 IN IP4 m.0
    [email protected]
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1296:1:2100
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 2035 RTP/AVP 12 3 0
    a=rtcp:2036
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1082000650
    m=video 2033 RTP/AVP 126 34
    a=rtcp:2034
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 2036 VIDEO 2034
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:352:288:352:288
    a=rtpID:-806649442
    0.000000 @:0 type=2 (00000000/22)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x170fff com.apple.iChat 3.1.5 (436) /Applications/iChat.app/Contents/MacOS/iChat
    0x4463000 - 0x446dfff com.apple.IOFWDVComponents 1.7.9 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x44d2000 - 0x4511fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x451c000 - 0x454efff com.apple.QuickTimeIIDCDigitizer 7.1.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x4558000 - 0x45a1fff com.apple.QuickTimeUSBVDCDigitizer 1.4.0 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x45c8000 - 0x46d7fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4706000 - 0x47f6fff com.apple.ATIRadeon9700GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x4804000 - 0x481dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x4823000 - 0x483efff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x4880000 - 0x488cfff com.apple.audio.AudioIPCPlugIn 1.0.1 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x490a000 - 0x490bfff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x4adb000 - 0x4b14fff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x569c000 - 0x56a0fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x8fe00000 - 0x8fe52fff dyld /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff com.apple.ApplicationServices.ATS 1.9.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d7fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d5000 - 0x913defff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e5000 - 0x9140dfff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91420000 - 0x9142bfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91430000 - 0x91438fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143c000 - 0x914b7fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f4000 - 0x914f4fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f6000 - 0x9152efff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91549000 - 0x91616fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166b000 - 0x916fcfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91743000 - 0x917fafff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91837000 - 0x91895fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c4000 - 0x918e5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f9000 - 0x9191efff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91931000 - 0x91973fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9198f000 - 0x919a3fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b1000 - 0x919f1fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a07000 - 0x91acffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b1d000 - 0x91b32fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b37000 - 0x91b54fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b59000 - 0x91bc8fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bdf000 - 0x91be3fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be5000 - 0x91c2dfff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c32000 - 0x91c6ffff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c76000 - 0x91c8ffff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c94000 - 0x91c97fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c99000 - 0x91c99fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9b000 - 0x91d80fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d88000 - 0x91da7fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e13000 - 0x91e81fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e8c000 - 0x91f21fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3b000 - 0x924c3fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924f6000 - 0x92821fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92851000 - 0x928d9fff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291a000 - 0x92b45fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c63000 - 0x92d41fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d61000 - 0x92e4ffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e61000 - 0x92e7ffff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8a000 - 0x92ee4fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f02000 - 0x92f02fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f04000 - 0x92f18fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f30000 - 0x92f40fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f4c000 - 0x92f61fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f73000 - 0x92ffafff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9300e000 - 0x93019fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93023000 - 0x93050fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306a000 - 0x93079fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93085000 - 0x930ebfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9311c000 - 0x9316bfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93199000 - 0x931b6fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931c8000 - 0x931d5fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931de000 - 0x934ebfff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363a000 - 0x93646fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9364b000 - 0x9366bfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936be000 - 0x936befff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c0000 - 0x93cf3fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94080000 - 0x940f0fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94129000 - 0x941ecfff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9423e000 - 0x9423efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94240000 - 0x943f3fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94446000 - 0x94483fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9448b000 - 0x944dbfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9451b000 - 0x9455ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9456b000 - 0x945a3fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x945e6000 - 0x94602fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94616000 - 0x9465afff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9467e000 - 0x9468dfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94695000 - 0x946a2fff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946e8000 - 0x94701fff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94708000 - 0x949d7fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a9a000 - 0x94b0bfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94b7e000 - 0x94b9ffff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94ca7000 - 0x94dd7fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e69000 - 0x94e78fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e80000 - 0x94eadfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94eb4000 - 0x94ec4fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94ec8000 - 0x94ef7fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94f07000 - 0x94f24fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95273000 - 0x952e1fff com.apple.Bluetooth 1.7.5 (1.7.5f10) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x95644000 - 0x956d2fff com.apple.WebKit 418.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9572e000 - 0x957c4fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95801000 - 0x95b0dfff com.apple.WebCore 418.20.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95c96000 - 0x95cbffff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96eb6000 - 0x96ed5fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97546000 - 0x9756bfff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x975ec000 - 0x976adfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x976d8000 - 0x976d9fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x976db000 - 0x976e8fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97847000 - 0x97848fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9806c000 - 0x98193fff com.apple.viceroy.framework 273.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x98937000 - 0x9893afff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98b83000 - 0x9953afff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99f7d000 - 0x99f88fff com.apple.IMFramework 3.1.1 (427) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99f93000 - 0x9a0ecfff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message

    I'm having the same problems with mine. I have a powerbook g4- 10.4.7. I bought my isight so that i could talk to my girlfriend who goes to school in washington. She has a Macbook. I can easily talk to everyone else but her. Amazing I know. Just my luck. Can anyone help me with this? I'm connected to my schools internet system and i can chat with people in washington also but not her. I also cant talk to my friend who goes to my school and is also on the same network as me. I am using an ethernet cable or i can connect to wireless. We are known to have a T1 internet. Please help me.

Maybe you are looking for

  • Error while transporting Function module.

    Hi guys, A z fun. Module was already created by some user on client 150.I changed,Activated it on client 180 ,but when I transport it to production I get the follow Error when I checked in "SMTS" .Please guide.    Generation of programs and screens  

  • Cannot update my Photoshop CS6 to 13.0.4

    I keep getting "failed" with errors U44M1P6 and U44M2P6.  How do I fix this?  This is happening on both my Imac and my Macbook Pro.

  • Oracle utilities SDk download

    Hi, Where can I download oracle utilities SDK. Is it licensed? if no can you please send me the url from where can I download SDK?

  • I have a Power Shot SD4500 IS and after battery is fully charged battery runs down without any use.

    I have a Power Shot SD4500 IS and after charging battery  then placing in camera and within a day the battery is dead.  I have tried replacing with a new battery and have the same problem.  Any suggestions? The last time (2 years ago) I had a problem

  • Moving SMC 4.0 server

    Hi, We are planning to move our SunMC server to another more powerful system. Currently it is located in a Zone on a V480. The Zone is mounted on ZFS disk. The idea is to move it to a T5220 with the Zone on a ZFS/SAN volume. We intend to keep the SMC