Help neede very very urgently ... to clear the report from Cache.....

Hello all,,,
In my project iam using crystsal report for eclipse to generate reports.
Iam using a .jsp page to call my report.(which i got it from the examples of CRE).
The name of my jsp page is poi.jsp
The name of my Crystal report is CrystalReport2.rpt
My problem is this....
when i run the report first time i can see my poi.jsp page and user can submit
the parameter and based on the users parameter the report is generated..(ITs working absoultely fine)
but when the user runs the report again, its not showing the parameter page (i.e user cannot see poi.jsp)
rather its showing the old generated report.
When i tried using session.invalidate and session.removeAttribute it was showing me the poi.jsp page
but the problem is when the user clicks on the print icon or any icon on the report its just
showing the poi.jsp page...
When the user closes the report or when the clicks on the button to generate the report it should
show the parameter page (poi.jsp).how can i solve this problem???
the code what iam using is as follows..( got it from the examples of CRE - database login )
Object reportSource = session.getAttribute("reportSource");
if (reportSource == null)
String report = "CrystalReport2.rpt";
ReportClientDocument reportClientDoc = new ReportClientDocument();
reportClientDoc.open(report, 0);
reportSource = reportClientDoc.getReportSource();
session.setAttribute("reportSource", reportSource);
ConnectionInfos connInfos = new ConnectionInfos();
IConnectionInfo connInfo1 = new ConnectionInfo();
connInfo1.setUserName("USER");
connInfo1.setPassword("USER");
connInfos.add(connInfo1);
CrystalReportViewer viewer = new CrystalReportViewer();
viewer.setReportSource(reportSource);
viewer.setEnableLogonPrompt(false);
viewer.setDatabaseLogonInfos(connInfos);
if (session.getAttribute("refreshed") == null)
viewer.refresh();
session.setAttribute("refreshed", "true");
viewer.setOwnPage(true);
viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
//session.removeAttribute("refreshed");
//session.invalidate();
thanks in advance
regards
jack

As far as parameter refresh is concerned add in your code
viewer.setHasRefreshButton(true)
refresh button is appeared on crystal report toolbar and you can use this button instead of explorer refrsh button and every time you can add new parameters values.
Also, if you want to update reportsource in session object. means if user wants to view more than one different reports and want to invalidate reportsource form session.
add in jsp.
session.removeAttribute("reportSource");
Happy programming
Uzma

Similar Messages

  • How to clear the report from Cache.

    Hello all,,,
    In my project iam using crystsal report for eclipse to generate reports.
    Iam using a .jsp page to call my report.(which i got it from the examples of CRE).
    The name of my jsp page is poi.jsp
    The name of my Crystal report is Department.rpt
    My problem is this....
    when i run the report first time i can see my poi.jsp page and user can submit
    the parameter and based on the users parameter the report is generated..(ITs working absoultely fine)
    but when the user runs the report again, its not showing the parameter page (i.e user cannot see poi.jsp)
    rather its showing the old generated report.
    When i tried using session.invalidate and session.removeAttribute it was showing me the poi.jsp page
    but the problem is when the user clicks on the print icon or any icon on the report its just
    showing the poi.jsp page...
    When the user closes the report or when the clicks on the button to generate the report it should
    show the parameter page (poi.jsp).how can i solve this problem???
    the code what i am using is as follows
    try {
              String reportName = "C:/workspace/Reports/WebContent/Department.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   clientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // ****** BEGIN SET RUNTIME DATABASE CREDENTIALS **************** 
                        String connectString = "jdbc:oracle:thin:@192.168.1.4:1521:orcl";
                        String driverName = "oracle.jdbc.driver.OracleDriver";
                        String JNDIName = "orcl";
                        String userName = "act_db";               // TODO: Fill in database user
                        String password = "act_db";          // TODO: Fill in password
                        // Switch all tables on the main report and sub reports
                        CRJavaHelper.changeDataSource(clientDoc, userName, password, connectString, driverName, JNDIName);
                        // logon to database
                        CRJavaHelper.logonDataSource(clientDoc, userName, password);
                   // ****** END SET RUNTIME DATABASE CREDENTIALS ****************           
                   // ****** BEGIN CONNECT PARAMETERS SNIPPET ****************          
                        // STRING VALUE PARAMETER. 
                        String stringValue = request.getParameter("DeptId");;     // TODO: Fill in value
                        CRJavaHelper.addDiscreteParameterValue(clientDoc, "", "DeptId", stringValue);
                   // ****** END CONNECT PARAMETERS SNIPPET ****************     
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
              // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                   // Create the CrystalReportViewer object
                   CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                   String reportSourceSessionKey = reportName+"ReportSource";
                   session.removeAttribute("reportSource");
                   Object reportSource = session.getAttribute(reportSourceSessionKey);
                   if (reportSource == null)
                        reportSource = clientDoc.getReportSource();
                        session.setAttribute(reportSourceSessionKey, reportSource);
                   //     set the reportsource property of the viewer
                   crystalReportPageViewer.setReportSource(reportSource);
                   crystalReportPageViewer.setDisplayGroupTree(false);
                 session.removeValue("reportSource");
                   crystalReportPageViewer.setHasRefreshButton(true);
                   // Apply the viewer preference attributes
                   // Process the report
                   crystalReportPageViewer.processHttpRequest(request, response, application, null);
              // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    Thanks In advance
    Regards,
    Amol Patil

    CrystalReportViewer viewer = new CrystalReportViewer();
    viewer.setReportSource(reportSource);
         viewer.setReportSource(reportSource);
         viewer.setHasRefreshButton(true);
         viewer.setOwnPage(true);
         viewer.setOwnForm(true);
         viewer.setHasExportButton(true);
         viewer.setZoomFactor(100);
         viewer.setPrintMode(CrPrintMode.ACTIVEX);
        viewer.setParameterFields(fields);
    viewer.setEnableParameterPrompt(true); --this line will prompt

  • Clearing the report from cache....

    Hello all,,,
    In my project iam using crystsal report for eclipse to generate reports.
    Iam using a .jsp page to call my report.(which i got it from the examples of CRE).
    The name of my jsp page is poi.jsp
    The name of my Crystal report is CrystalReport2.rpt
    My problem is this....
    when i run the report first time i can see my poi.jsp page and user can submit
    the parameter and based on the users parameter the report is generated..(ITs working absoultely fine)but when the user runs the report again, its not showing the parameter page (i.e user cannot see poi.jsp) rather its showing the old generated report.
    When i tried using session.invalidate and session.removeAttribute it was showing me the poi.jsp page but the problem is when the user clicks on the print icon or any icon on the report its just showing the poi.jsp page...
    When the user closes the report or when the clicks on the button to generate the report it should show the parameter page (poi.jsp).how can i solve this problem???
    the code what iam using is as follows..( got it from the examples of CRE - database login )
              response.setHeader("Cache-Control","no-cache");
              response.setHeader("Pragma","no-cache");
              response.setDateHeader("Expires",-1);
              response.setHeader("Cache-Control","no-store");
              Object reportSource = session.getAttribute("reportSource");
            if (reportSource == null )
                String report = "CrystalReport2.rpt";
                ReportClientDocument reportClientDoc = new ReportClientDocument();
                reportClientDoc.open(report, 0);
                reportSource = reportClientDoc.getReportSource();
                session.setAttribute("reportSource", reportSource);
            ConnectionInfos connInfos = new ConnectionInfos();
            IConnectionInfo connInfo1 = new ConnectionInfo();         
            connInfo1.setUserName("CS22USER");
            connInfo1.setPassword("CS22USER");
            connInfos.add(connInfo1);
            CrystalReportViewer viewer = new CrystalReportViewer();
            viewer.setReportSource(reportSource);          
              viewer.setEnableLogonPrompt(false);
            viewer.setDatabaseLogonInfos(connInfos);
            if (session.getAttribute("refreshed") == null)                  
                 viewer.refresh();               
                 session.setAttribute("refreshed", "true");           
                 //response.sendRedirect("Test.jsp");
                  //session.removeAttribute("refreshed");    
                  //session.invalidate();
                  //session.removeAttribute("refreshed");       
            viewer.setOwnPage(true);
            viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);                     
            //session.invalidate();

    CrystalReportViewer viewer = new CrystalReportViewer();
    viewer.setReportSource(reportSource);
         viewer.setReportSource(reportSource);
         viewer.setHasRefreshButton(true);
         viewer.setOwnPage(true);
         viewer.setOwnForm(true);
         viewer.setHasExportButton(true);
         viewer.setZoomFactor(100);
         viewer.setPrintMode(CrPrintMode.ACTIVEX);
        viewer.setParameterFields(fields);
    viewer.setEnableParameterPrompt(true); --this line will prompt

  • File Upload Help Needed - Very Urgent

    Dear All
    I am making a application in Webdynpro for uploading an excel file to the server. Can someone give me a demo application so that I can run it and see whether my server is configured or not. Also I have made the application right now and have coded the need full. But when I select a file and say submit it shows me a page not found error. Currently I am working round the clock on my project and am stuck up here. Its very urgent can any body help please with an example or a demo application.
    Regards Gaurav

    Hi,
      Check whether in server, MultipartBodyParameterName property is set to "com.sap.servlet.multipart.body" . You can check this by going to Visual Admin -> Cluster tab -> Services -> web container -> Properties sheet.
    Do assign points if i answered your question.
    Regards
    Vasu

  • Clear the applet from cache

    Hello,
    I use the following html code to open my signed java applet.
    <APPLET CODE="Applet.class" ARCHIVE="applet.jar" WIDTH=100 HEIGHT=100>However if I make some changes into the applet code and open the HTML file in the browser, I see that the applet is being picked up from the applet cache. Thus if users have caching enabled on their systems they will not be able to retrieve the new version that I have made.
    Is there a way to trigger the browser to download not to use the applet from the cache whenever an updated copy is available on the server.
    I need this fix for IE, Mozilla, Netscape..
    Thanks in advance.

    Hello,
    the easiest solution (for me, at least, it was): when you want to reload an applet type x in the java console (it openes when you load the applet; if it doesn't open you may find it in the icons bar at the bottom of your screen) and then reload the applet
    Hope it helps, good luck!

  • Help needed very urgent

    I have problem in downloading a file through a servlet. Let me put my points clearly.
    When a client requests my servlet using setcontenttype, setheader methods I prompt for the 'save' option.
    The client can choose the file and save in his local directory.
    The problem now is, if he cancels in between or at the initial stage itself an exception saying 'connection reset by peer' should be thrown at the server side.
    When I execute the servlet in javawebserver2.0/weblogic 5.0, the exception is thrown.
    Whereas when I use the same servlet in weblogic6.0sp1win no exception is thrown.
    I want the exception to be thrown even in weblogic6.0sp1win.
    How to overcome this problem. Please help me out at the earliest.
    Please see the code below.
    I am eagerly awaiting for your feedback. I have posted this query several times in java and jguru forum but did not get any reply till now.
    Since the problem is very serious please help me out as soon as possible. thanks
    luv,
    venkat.
    //code
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.security.*;
    public class TestServ extends HttpServlet //implements javax.jms.Connection
    Exception exception;
    public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException, UnavailableException
         int bytesRead=0;
         int count=0;
         byte[] buff=new byte[1];
    OutputStream out=res.getOutputStream ();
    // Set the output data's mime type
    res.setContentType( "application/pdf");//application/pdf" ); // MIME type for pdf doc
    // create an input stream from fileURL
    String fileURL ="http://localhost:7001/soap.pdf";
    // Content-disposition header - don't open in browser and
    // set the "Save As..." filename.
    // *There is reportedly a bug in IE4.0 which ignores this...
    // PROXY_HOST and PROXY_PORT should be your proxy host and port
    // that will let you go through the firewall without authentication.
    // Otherwise set the system properties and use URLConnection.getInputStream().
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    boolean download=false;
         res.setHeader("Content-disposition", "attachment; filename="+"xml.pdf" );
    try
              URL url=new URL(fileURL);
         bis = new BufferedInputStream(url.openStream());
         bos = new BufferedOutputStream(out);
    while(-1 != (bytesRead = bis.read(buff, 0, buff.length)))
              try
                   bos.write(bytesRead);
                   bos.flush();
                   }//end of try for while loop
                   catch(SocketException e)
                        setError(e);
                        break;
                   catch(Exception e)
                        System.out.println("Exception in while of TestServlet is " +e.getMessage());
                        if(e != null)
                             System.out.println("File not downloaded properly");
                             setError(e);
                             break;
                        }//if ends
                   }//end of catch for while loop
    }//while ends
              Exception eError=getError();
              if(eError!=null)
                   System.out.println("\n\n\n\nFile Not DownLoaded properly\n\n\n\n");
              else if(bytesRead == -1)
              System.out.println("\n\n\n\ndownload successful\n\n\n\n");
              else
              System.out.println("\n\n\n\ndownload not successful\n\n\n\n");
    catch(MalformedURLException e)
    System.out.println ( "Exception inside TestServlet is " +e.getMessage());
    catch(IOException e)
    System.out.println ( "IOException inside TestServlet is " +e.getMessage());
         finally {
              try
    if (bis != null)
    bis.close();
    if (bos != null)
    bos.close();
              catch(Exception e)
                   System.out.println("here ="+e);
    }//doPost ends
         public void setError(Exception e)
              exception=e;
              System.out.println("\n\n\nException occurred is "+e+"\n\n\n");
         public Exception getError()
                   return exception;
    }//class ends

    My idea is:
    When user cancel the operation, browser send a message back but webserver/weblogic just ingnores it.
    You check BufferOutputStream class or any other class that it extends to see if flush() method does really flushed, if not then it means that the operation has been cancelled.

  • Realignment table cannot be activated - help needed - Very urgent

    Hi All,
         Iam new to SCM and in the process of learning it. Iam trying to work with the realignment transaction /sapapo/rlgcopy. When i try to create a table , after characteristics selection it gives error "Realignment table cannot be activated". How do i proceed from there. Please help.
    It would be helpful if somebody could send a link that explains realignment steps in detail. I tried help.sap.com , but could not understand clearly. Kindly help

    Hi...
    As mentioned earliar reply...
    Hope you are having Authorization of realianment transaction...
    Transaction
    /SAPAPO/RLGCOPY - Data Realignment
    Check that you have selected Realianment button
    entered the planning object structure name
    You have created table/change table
    selected char to be ralianed
    and then maintained entries

  • Dashboards help needed very urgently

    hi experts
    i have a page which displays like dril down table which has information of customers, beside the under that table i hve round diagrams which has business orinet things around that lot of object are there.
    for example it looks
    sun in the center and all the planets around it. if we click the particular planet it goes to the information page.
    i need how to keep the driill down box for the customers and how to do for the remaining like sun and planets...
    or the better way how we can keep
    Thank you

    My idea is:
    When user cancel the operation, browser send a message back but webserver/weblogic just ingnores it.
    You check BufferOutputStream class or any other class that it extends to see if flush() method does really flushed, if not then it means that the operation has been cancelled.

  • Guyz!!! Help Needed Very Urgent.

    I am not able to upload my cap file into jcop31 card using omni key reader,wat should i do?
    What can be the problem.Please analyse.
    /term "winscard:4|OMNIKEY CardMan 5x21 0"--Opening terminal
    /card -a a000000003000000 -c com.ibm.jc.CardManagerresetCard with timeout: 0 (ms)
    --Waiting for card...
    ATR=3B 66 00 FF 4A 43 4F 50 33 30 ;f..JCOP30
    ATR: T=0, N=-1, Hist="JCOP30"
    => 00 A4 04 00 08 A0 00 00 00 03 00 00 00 00 ..............
    (96000 usec)
    <= 6F 19 84 08 A0 00 00 00 03 00 00 00 A5 0D 9F 6E o..............n
    06 40 51 30 85 30 1A 9F 65 01 FF 90 00 [email protected]....
    Status: No Error
    cm> set-key 255/1/DES-ECB/404142434445464748494a4b4c4d4e4f 255/2/DES-ECB/404142434445464748494a4b4c4d4e4f 255/3/DES-ECB/404142434445464748494a4b4c4d4e4f
    cm> init-update 255
    => 80 50 00 00 08 F0 54 16 78 0C 04 84 90 00 .P....T.x.....
    (127698 usec)
    <= 00 00 61 12 00 70 38 90 95 59 FF 01 E8 34 68 A8 ..a..p8..Y...4h.
    43 E9 74 6A 69 FC AA BF EA 0A 2C AC 90 00 C.tji.....,...
    Status: No Error
    cm> ext-auth plain
    => 84 82 00 00 10 C9 DE 7E 5D 82 10 1F 49 43 4D A5 .......~]...ICM.
    E8 AD 76 46 A1 ..vF.
    (71397 usec)
    <= 90 00 ..
    Status: No Error
    cm> delete 010203040502
    => 80 E4 00 00 08 4F 06 01 02 03 04 05 02 00 .....O........
    (70050 usec)
    <= 6A 80 j.
    Status: Wrong data
    jcshell: Error code: 6a80 (Wrong data)
    jcshell: Wrong response APDU: 6A80
    Ignoring expected error
    cm> delete 0102030405
    => 80 E4 00 00 07 4F 05 01 02 03 04 05 00 .....O.......
    (67988 usec)
    <= 6A 80 j.
    Status: Wrong data
    jcshell: Error code: 6a80 (Wrong data)
    jcshell: Wrong response APDU: 6A80
    Ignoring expected error
    cm> upload -b 250 "D:\JAVA\ECLIPSEWTP322\workspace\handson_simple\bin\handson_simple\javacard\handson_simple.cap"
    => 80 E6 02 00 12 05 01 02 03 04 05 08 A0 00 00 00 ................
    03 00 00 00 00 00 00 00 ........
    (103546 usec)
    <= 00 90 00 ...
    Status: No Error
    => 80 E8 80 00 F0 C4 81 ED 01 00 1E DE CA FF ED 02 ................
    02 04 00 01 05 01 02 03 04 05 0E 68 61 6E 64 73 ...........hands
    6F 6E 5F 73 69 6D 70 6C 65 02 00 21 00 1E 00 21 on_simple..!...!
    00 0A 00 0B 00 1E 00 0E 00 3D 00 0A 00 0B 00 00 .........=......
    00 4D 01 CA 00 00 00 00 00 00 01 01 00 04 00 0B .M..............
    01 02 01 07 A0 00 00 00 62 01 01 03 00 0A 01 06 ........b.......
    01 02 03 04 05 02 00 08 06 00 0E 00 00 00 80 03 ................
    00 FF 00 07 01 00 00 00 1C 07 00 3D 00 01 10 18 ...........=....
    8C 00 05 7A 05 30 8F 00 06 3D 8C 00 02 18 1D 04 ...z.0...=......
    41 18 1D 25 8B 00 04 7A 02 21 18 8B 00 03 60 03 A..%...z.!....`.
    7A 19 8B 00 00 2D 1A 04 25 73 00 09 00 00 00 00 z....-..%s......
    00 0F 11 6D 00 8D 00 01 7A 08 00 0A 00 00 00 00 ...m....z.......
    00 00 00 00 00 00 05 00 1E 00 07 03 80 0A 01 06 ................
    80 07 01 06 00 00 01 03 80 03 03 03 80 03 02 06 ................
    80 03 00 01 00 02 00 09 00 0B 00 00 00 07 05 06 ................
    04 0A 07 07 13 00 ......
    (278665 usec)
    <= 6A 80 j.
    Status: Wrong data
    jcshell: Error code: 6a80 (Wrong data)
    jcshell: Wrong response APDU: 6A80
    Unexpected error; aborting execution

    cm>  /term "winscard:4|SCM Microsystems Inc. SCR33x USB Smart Card Reader 0"
    --Opening terminal
    /card -a a000000003000000 -c com.ibm.jc.CardManagerresetCard with timeout: 0 (ms)
    --Waiting for card...
    ATR=3B E6 00 FF 81 31 FE 45 4A 43 4F 50 33 30 07       ;....1.EJCOP30.
    ATR: T=1, N=-1, IFSC=254, BWI=4/CWI=5, Hist="JCOP30"
    => 00 A4 04 00 08 A0 00 00 00 03 00 00 00 00          ..............
    (81900 usec)
    <= 6F 19 84 08 A0 00 00 00 03 00 00 00 A5 0D 9F 6E    o..............n
        06 40 51 22 83 30 13 9F 65 01 FF 90 00             .@Q".0..e....
    Status: No Error
    cm>  set-key 255/1/DES-ECB/404142434445464748494a4b4c4d4e4f 255/2/DES-ECB/404142434445464748494a4b4c4d4e4f 255/3/DES-ECB/404142434445464748494a4b4c4d4e4f
    cm>  init-update 255
    => 80 50 00 00 08 0F F5 A8 43 45 FB 5F 81 00          .P......CE._..
    (86324 usec)
    <= 00 00 52 15 01 07 15 90 77 50 FF 01 82 F7 42 24    ..R.....wP....B$
        95 18 B7 31 C6 47 6E 9D 94 5F D9 B1 90 00          ...1.Gn.._....
    Status: No Error
    cm>  ext-auth plain
    => 84 82 00 00 10 EF 3C A2 00 C3 8A E0 AB 29 7C EA    ......<......)|.
        7B 28 95 D6 0A                                     {(...
    (56216 usec)
    <= 90 00                                              ..
    Status: No Error
    cm>  delete 010203040502
    => 80 E4 00 00 08 4F 06 01 02 03 04 05 02 00          .....O........
    (325622 usec)
    <= 00 90 00                                           ...
    Status: No Error
    cm>  delete 0102030405
    => 80 E4 00 00 07 4F 05 01 02 03 04 05 00             .....O.......
    (264622 usec)
    <= 00 90 00                                           ...
    Status: No Error
    cm>  upload -b 250 "C:\Documents and Settings\Administrator\workspace\training\bin\training\javacard\training.cap"
    => 80 E6 02 00 12 05 01 02 03 04 05 08 A0 00 00 00    ................
        03 00 00 00 00 00 00 00                            ........
    (60562 usec)
    <= 00 90 00                                           ...
    Status: No Error
    => 80 E8 80 00 DD C4 81 DA 01 00 0F DE CA FF ED 01    ................
        02 04 00 01 05 01 02 03 04 05 02 00 1F 00 0F 00    ................
        1F 00 0A 00 0B 00 1E 00 0C 00 3D 00 0A 00 0B 00    ..........=.....
        00 00 4D 00 00 00 00 00 00 01 01 00 04 00 0B 01    ..M.............
        00 01 07 A0 00 00 00 62 01 01 03 00 0A 01 06 01    .......b........
        02 03 04 05 02 00 08 06 00 0C 00 80 03 00 FF 00    ................
        07 01 00 00 00 1C 07 00 3D 00 01 10 18 8C 00 02    ........=.......
        7A 05 30 8F 00 06 3D 8C 00 04 18 1D 04 41 18 1D    z.0...=......A..
        25 8B 00 03 7A 02 21 18 8B 00 01 60 03 7A 19 8B    %...z.!....`.z..
        00 00 2D 1A 04 25 73 00 09 00 00 00 00 00 0F 11    ..-..%s.........
        6D 00 8D 00 05 7A 08 00 0A 00 00 00 00 00 00 00    m....z..........
        00 00 00 05 00 1E 00 07 03 80 0A 01 03 80 03 03    ................
        06 80 03 00 03 80 03 02 06 00 00 01 06 80 07 01    ................
        01 00 00 00 09 00 0B 00 00 00 07 05 06 04 0A 07    ................
        07 13 00                                           ...
    (547331 usec)
    <= 00 90 00                                           ...
    Status: No Error
    Load report:
      221 bytes loaded in 0.5 seconds
      effective code size on card:
          + package AID       5
          + applet AIDs       13
          + classes           15
          + methods           64
          + statics           0
          + exports           0
            overall           97  bytes
    cm>  install -i 010203040502  -q C9#() 0102030405 010203040502
    => 80 E6 0C 00 1A 05 01 02 03 04 05 06 01 02 03 04    ................
        05 02 06 01 02 03 04 05 02 01 00 02 C9 00 00 00    ................
    (127417 usec)
    <= 00 90 00                                           ...
    Status: No Error
    cm>  card-info
    => 80 F2 80 00 02 4F 00 00                            .....O..
    (41639 usec)
    <= 08 A0 00 00 00 03 00 00 00 07 9E 90 00             .............
    Status: No Error
    => 80 F2 40 00 02 4F 00 00                            [email protected]..
    (51116 usec)
    <= 06 A0 00 00 00 00 02 07 00 06 01 02 03 04 05 02    ................
        07 00 90 00                                        ....
    Status: No Error
    => 80 F2 10 00 02 4F 00 00                            .....O..
    (27798 usec)
    <= 6A 86                                              j.
    Status: Incorrect parameters (P1,P2)
    => 80 F2 20 00 02 4F 00 00                            .. ..O..
    (116801 usec)
    <= 07 A0 00 00 00 62 00 01 01 00 07 A0 00 00 00 62    .....b.........b
        01 01 01 00 07 A0 00 00 00 62 01 02 01 00 07 A0    .........b......
        00 00 00 62 02 01 01 00 07 A0 00 00 00 03 00 00    ...b............
        01 00 06 A0 00 00 00 00 01 01 00 05 01 02 03 04    ................
        05 01 00 90 00                                     .....
    Status: No Error
    Card Manager AID   :  A000000003000000
    Card Manager state :  INITIALIZED
        Application:  SELECTABLE (--------) A00000000002   
        Application:  SELECTABLE (--------) 010203040502   
        Load File  :      LOADED (--------) A0000000620001   (java.lang)
        Load File  :      LOADED (--------) A0000000620101   (javacard.framework)
        Load File  :      LOADED (--------) A0000000620102   (javacard.security)
        Load File  :      LOADED (--------) A0000000620201   (javacardx.crypto)
        Load File  :      LOADED (--------) A0000000030000   (visa.openplatform)
        Load File  :      LOADED (--------) A00000000001   
        Load File  :      LOADED (--------) 0102030405     
    {code}
    I use your code, and upload OK.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Lenovo s510p touch top cover broken, top cover needed very urgently

    i bought my lenovo ideapad s510p touch from usa in dec 2013, i only hav upgraded warranty.,  
    recently my laptop's TOP COVER  has broken i need the part very urgently please any one can help meee please  
    LENOVO IDEAPAD S510P TOUCH TOP COVER ('a' COVER)
    Link to picture/image
    Link to picture/image
    Link to picture/image
    Link to picture/image
    NEEDED VERY URGENTLY CAN ANYONE HELP ME PARTS ALSO NOT AVALIABLE SAID BY SERVICE CENTERS
    Mod comment: Over sized pictures converted to links. Please see About-Posting-Pictures-In-The-Forums

    Some posts have been removed.
    Please do not post private information in these forums.
    Andy  
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество

  • Please Help Urgently to refresh the report on the change in data

    We want to refresh report at runtime for the Drill Down report if any user changes the Data. We changes the data from the form which is called from the report and we want to this effect on the report on the prompt.
    Is there any method to close the report while it is in the queue of Background Engine? Can we refresh the report ? Please help urgently.
    Thanks in Advance.

    Pritesh,
    Reports goes out to the database and fetches the data (not a snapshot) and returns the information, formats it and displays it. The only way to refresh, is to rerun the report.
    If your are running from the server, you need to make sure you are not fetching from cache (you determine this from destype and set the life of the cache in the servername.ora file).
    I am unaware of any way to programatically close the report once displayed. The user must take action to close the report (unless you call the operating system to kill the display). When you rerun the report from Oracle Forms, you will get fresh data.
    Regards,
    The Oracle Reports Team jls

  • Very Urgent Hyperion Planning Financial Report Issue

    Hi All,
    I have a coloum in the last in all data forms to enter comments basically I am using No account for the user to enter the text here.
    Similarly I had created a FR Report to view the data along with the comment
    The issue is that once I look in the comment in report it not properly visible
    say for ex if I enter 3206 -The tax value is high in datafrom
    Only 3206 appears in the report.
    I am not sure that how the comment is truncated in the report
    Kindly please help to provide me the solution
    Thanks in advance
    Vikash
    Edited by: 909920 on Jan 24, 2012 7:10 AM

    It's properly not visible means, are you trying to view the report from workspace or print preview.
    If your column/row width is less than that comment, it will not visible in report full, so you have to extend until coment ends, make sure you give correct format/space given to show on the report. just expand the column/row width long until ur coment ends.
    If coment is not visible in the report itself, you can try format the cell text -> righ click-> format -> Replace with-> you can enter whatever comment you want to keep, so that it will be available, but even here to show full comment, you have to exand the column/row until its full coment visible....
    Generally text/member aliases will not show full names due to the format only, i am not sure if your issue is different, but i am sure its format issue i think. please let us know if its differnt issue, just want to know.

  • Help needed with identifying cause of Google Chrome crashes from a crash report

    Hello,
    I am trying to isolate a problem which is causing Google Chrome to crash. This is happening far too frequently - sometimes on opening, sometimes on web page loads and sometimes when viewing the preferences page.
    I'm using a 2012 Mac Mini running OS X 10.8.4.
    After many hours of trawling around the Internet and trying various suggestions, I am close to admitting defeat. Hopefully somebody here can save my sanity and point me towards a possible cause.
    To date, these are some of the things that I have tried:
    Replacing the 16GB of Crucial Ram with the stock Ram.
    Logging in as a Guest user and opening Chrome.
    Disabling all Chrome extensions (there are only 3 that I use anyway).
    Uninstalling Chrome and all associated files that I could find, then reinstalling.
    Booting into Safe Mode and loading Chrome.
    None of these have made a difference. There have also been a couple of times when Firefox has crashed, too. Safari has been rock solid. Yes, I could just use Safari, but there are personal reasons why I need to use Chrome. I also need to locate this problem in case it is something that might effect other applications … or possibly even be a hardware problem.
    Below is my most recent crash report. Frankly, it's contents are way outside of my comfort zone, so I am hoping that somebody will be able to help point me towards the relevant parts that might help me resolve this problem:
    Process:    
    Google Chrome [953]
    Path:       
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier: 
    com.google.Chrome
    Version:    
    28.0.1500.95 (1500.95)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [155]
    User ID:    
    501
    Date/Time:  
    2013-07-31 17:02:20.022 +0100
    OS Version: 
    Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:     
    74480 sec
    Crashes Since Last Report:      
    32
    Per-App Interval Since Last Report:  34565 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                 
    0FD820CB-AFE5-4E19-0C1C-7DC211A950EE
    Crashed Thread:  0  CrBrowserMain  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   com.google.Chrome.framework  
    0x00711447 0x45000 + 7128135
    1   com.google.Chrome.framework  
    0x02a8056e 0x45000 + 44283246
    2   com.google.Chrome.framework  
    0x02a807d4 0x45000 + 44283860
    3   com.google.Chrome.framework  
    0x02bd6116 0x45000 + 45682966
    4   com.google.Chrome.framework  
    0x02bbc1ba 0x45000 + 45576634
    5   com.google.Chrome.framework  
    0x02bb8628 0x45000 + 45561384
    6   com.google.Chrome.framework  
    0x02bbc2fb 0x45000 + 45576955
    7   com.google.Chrome.framework  
    0x02bb0498 0x45000 + 45528216
    8   com.google.Chrome.framework  
    0x02bb0aeb 0x45000 + 45529835
    9   com.google.Chrome.framework  
    0x00c4e86c 0x45000 + 12621932
    10  com.google.Chrome.framework  
    0x00c50129 0x45000 + 12628265
    11  com.google.Chrome.framework  
    0x00731d28 0x45000 + 7261480
    12  com.google.Chrome.framework  
    0x0073216d 0x45000 + 7262573
    13  com.google.Chrome.framework  
    0x006fd205 0x45000 + 7045637
    14  com.apple.CoreFoundation 
    0x90c5304f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    15  com.apple.CoreFoundation 
    0x90c52a79 __CFRunLoopDoSources0 + 233
    16  com.apple.CoreFoundation 
    0x90c78826 __CFRunLoopRun + 934
    17  com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    18  com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    19  com.apple.HIToolbox      
    0x9794af5a RunCurrentEventLoopInMode + 242
    20  com.apple.HIToolbox      
    0x9794acc9 ReceiveNextEventCommon + 374
    21  com.apple.HIToolbox      
    0x9794ab44 BlockUntilNextEventMatchingListInMode + 88
    22  com.apple.AppKit         
    0x9627f93a _DPSNextEvent + 724
    23  com.apple.AppKit         
    0x9627f16c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    24  com.apple.AppKit         
    0x962755cc -[NSApplication run] + 855
    25  com.google.Chrome.framework  
    0x006fd5c1 0x45000 + 7046593
    26  com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    27  com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    28  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    29  com.google.Chrome.framework  
    0x001c0691 0x45000 + 1554065
    30  com.google.Chrome.framework  
    0x02a893b0 0x45000 + 44319664
    31  com.google.Chrome.framework  
    0x02a89ec3 0x45000 + 44322499
    32  com.google.Chrome.framework  
    0x02a86ef1 0x45000 + 44310257
    33  com.google.Chrome.framework  
    0x0061723b 0x45000 + 6103611
    34  com.google.Chrome.framework  
    0x00616600 0x45000 + 6100480
    35  com.google.Chrome.framework  
    0x00047449 ChromeMain + 41
    36  com.google.Chrome        
    0x0003ef78 main + 24
    37  com.google.Chrome        
    0x0003ef55 0x3e000 + 3925
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   libdispatch.dylib        
    0x97d1cc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib        
    0x97d1c7a9 _dispatch_mgr_thread + 53
    Thread 2:: NetworkConfigWatcher
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 3:: DnsConfigService
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc662 0x45000 + 7042658
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    9   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    10  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    11  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 4:: AudioThread
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 5:: CrShutdownDetector
    0   libsystem_kernel.dylib   
    0x96116dba __read + 10
    1   com.google.Chrome.framework  
    0x001c1fa6 0x45000 + 1560486
    2   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    3   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    4   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 6:: Chrome_DBThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a9391f 0x45000 + 44362015
    12  com.google.Chrome.framework  
    0x02a93aa3 0x45000 + 44362403
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 7:: Chrome_WebKitThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a9394f 0x45000 + 44362063
    12  com.google.Chrome.framework  
    0x02a93ab1 0x45000 + 44362417
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 8:: Chrome_FileThread
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc741 0x45000 + 7042881
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x02a9397f 0x45000 + 44362111
    9   com.google.Chrome.framework  
    0x02a93abf 0x45000 + 44362431
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 9:: Chrome_FileUserBlockingThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a939af 0x45000 + 44362159
    12  com.google.Chrome.framework  
    0x02a93acd 0x45000 + 44362445
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 10:: Chrome_ProcessLauncherThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x02a939df 0x45000 + 44362207
    12  com.google.Chrome.framework  
    0x02a93adb 0x45000 + 44362459
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 11:: Chrome_CacheThread
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc741 0x45000 + 7042881
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x02a93a0f 0x45000 + 44362255
    9   com.google.Chrome.framework  
    0x02a93ae9 0x45000 + 44362473
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 12:: Chrome_IOThread
    0   libsystem_kernel.dylib   
    0x961169ae kevent + 10
    1   com.google.Chrome.framework  
    0x0076a8c6 0x45000 + 7493830
    2   com.google.Chrome.framework  
    0x00768549 0x45000 + 7484745
    3   com.google.Chrome.framework  
    0x006fc741 0x45000 + 7042881
    4   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    5   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    6   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    7   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    8   com.google.Chrome.framework  
    0x02a93a3f 0x45000 + 44362303
    9   com.google.Chrome.framework  
    0x02a93af7 0x45000 + 44362487
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 13:: NetworkConfigWatcher
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 14:: Proxy resolver
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 15:: MediaStreamDeviceThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 16:: BrowserWatchdog
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x00753a54 0x45000 + 7400020
    5   com.google.Chrome.framework  
    0x007346eb 0x45000 + 7272171
    6   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    7   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    8   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    9   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.google.Chrome.framework  
    0x02b4d31a 0x45000 + 45122330
    3   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    4   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    5   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 18:: BrowserBlockingWorker1/54019
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x007584a9 0x45000 + 7419049
    5   com.google.Chrome.framework  
    0x00757a3d 0x45000 + 7416381
    6   com.google.Chrome.framework  
    0x0075a8ca 0x45000 + 7428298
    7   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    8   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    9   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 19:: NetworkConfigWatcher
    0   libsystem_kernel.dylib   
    0x961137d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x96112cb0 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x90c72f79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation 
    0x90c7895f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation 
    0x90c7801a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation 
    0x90c77e8b CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x9090fbb6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.google.Chrome.framework  
    0x006fd42f 0x45000 + 7046191
    8   com.google.Chrome.framework  
    0x006fd0fc 0x45000 + 7045372
    9   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    10  com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    11  com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    12  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    13  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    14  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    15  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    16  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 20:: Proxy resolver
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 21:: Chrome_SafeBrowsingThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 22:: BrowserBlockingWorker2/57859
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x007584a9 0x45000 + 7419049
    5   com.google.Chrome.framework  
    0x00757a3d 0x45000 + 7416381
    6   com.google.Chrome.framework  
    0x0075a8ca 0x45000 + 7428298
    7   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    8   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    9   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 23:: Chrome_HistoryThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x00753a54 0x45000 + 7400020
    5   com.google.Chrome.framework  
    0x007346eb 0x45000 + 7272171
    6   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    7   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    8   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    9   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 24:: Chrome_SyncThread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x00753a54 0x45000 + 7400020
    5   com.google.Chrome.framework  
    0x007346eb 0x45000 + 7272171
    6   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    7   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    8   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    9   com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    10  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    11  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    12  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    13  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 25:: Chrome_PasswordStore_Thread
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b6095 pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework  
    0x00753548 0x45000 + 7398728
    4   com.google.Chrome.framework  
    0x00753a7b 0x45000 + 7400059
    5   com.google.Chrome.framework  
    0x00753916 0x45000 + 7399702
    6   com.google.Chrome.framework  
    0x007346b1 0x45000 + 7272113
    7   com.google.Chrome.framework  
    0x007317b0 0x45000 + 7260080
    8   com.google.Chrome.framework  
    0x007470d1 0x45000 + 7348433
    9   com.google.Chrome.framework  
    0x0073152a 0x45000 + 7259434
    10  com.google.Chrome.framework  
    0x0075b071 0x45000 + 7430257
    11  com.google.Chrome.framework  
    0x0075b10d 0x45000 + 7430413
    12  com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    13  libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    14  libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 26:: BrowserBlockingWorker3/78339
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x007584a9 0x45000 + 7419049
    5   com.google.Chrome.framework  
    0x00757a3d 0x45000 + 7416381
    6   com.google.Chrome.framework  
    0x0075a8ca 0x45000 + 7428298
    7   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    8   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    9   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 27:: WorkerPool/88591
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x95130280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x951b60e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework  
    0x00753627 0x45000 + 7398951
    4   com.google.Chrome.framework  
    0x0075d15f 0x45000 + 7438687
    5   com.google.Chrome.framework  
    0x0075d65c 0x45000 + 7439964
    6   com.google.Chrome.framework  
    0x007574e5 0x45000 + 7415013
    7   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    8   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib   
    0x961160ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x9512e0ac _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x9512de79 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x95115d2a start_wqthread + 30
    Thread 29:: CVDisplayLink
    0   libsystem_kernel.dylib   
    0x961158e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x951302e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x95130572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo      
    0x94c98fd7 CVDisplayLink::waitUntil(unsigned long long) + 297
    4   com.apple.CoreVideo      
    0x94c9805c CVDisplayLink::runIOThread() + 658
    5   com.apple.CoreVideo      
    0x94c97db2 startIOThread(void*) + 160
    6   libsystem_c.dylib        
    0x9512b5b7 _pthread_start + 344
    7   libsystem_c.dylib        
    0x95115d4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x7ce8e400  edx: 0x7ce97cc0
      edi: 0x7e9844e0  esi: 0x00000001  ebp: 0xbffc0688  esp: 0xbffc0680
       ss: 0x00000023  efl: 0x00000282  eip: 0x00711447   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x09907000
    Logical CPU: 2
    Binary Images:
       0x3e000 -
    0x3eff3 +com.google.Chrome (28.0.1500.95 - 1500.95) <1F14C17E-910C-3A38-B8EA-4D3868359AF3> /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
       0x45000 -  0x40f1f1f +com.google.Chrome.framework (28.0.1500.95 - 1500.95) <AFF7EFEF-A842-3ED5-8795-987BB0D2F0F4> /Applications/Google Chrome.app/Contents/Versions/28.0.1500.95/Google Chrome Framework.framework/Google Chrome Framework
    0x441e000 -  0x44e7ff3  com.apple.Bluetooth (4.1.4 - 4.1.4f2) <09A08285-00DD-3F8A-995B-18E2BF86E14B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x4538000 -  0x4542fff  com.apple.CoreBluetooth (100.6 - 1) <3562A2BD-DDB4-337B-BD98-A89D24109094> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x58f4000 -  0x5901ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x5943000 -  0x5952ff7 +com.google.Keystone.Registration (1.1.0 - 1.1.0.3659) <2379CBDF-65AB-246D-D5F4-3A450D457F42> /Applications/Google Chrome.app/Contents/Versions/28.0.1500.95/Google Chrome Framework.framework/Frameworks/KeystoneRegistration.framework/KeystoneRegistrat ion
    0x59a6000 -  0x59abfff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <903097A8-3922-3BF8-8B82-8BD1D831F6E7> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x7eed000 -  0x7eedfff +cl_kernels (???) <E37CAD34-CEF6-4542-8D4B-22D7EC0F5AD6> cl_kernels
    0x7f13000 -  0x7f14ff5 +cl_kernels (???) <4E8CD9D8-7F8F-4424-8A2E-EF38A1E6C8AD> cl_kernels
    0x85d4000 -  0x85dcffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x85e3000 -  0x8675fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x97a5000 -  0x97a9fff  com.apple.IOAccelerator (74.5.1 - 74.5.1) <CB7CDE62-DAEC-35AF-8ADB-3271AA2DF921> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x9bd5000 -  0x9bdffff  libGPUSupportMercury.dylib (8.9.2) <302EC167-66A3-3E12-8416-F03F50CA96D9> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0xa4da000 -  0xa66effa  GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xa6a5000 -  0xa826fff  libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xa858000 -  0xaca5ff3  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.12.47 - 8.1.2) <5B46A344-20F2-3C75-9D42-D13092E6BB81> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
    0xb1f7000 -  0xb222ff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x8fe3d000 - 0x8fe6fe57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x9006bff3  libstdc++.6.dylib (56) <79A6B148-08F6-30C6-9B31-6183A6295290> /usr/lib/libstdc++.6.dylib
    0x9006c000 - 0x9006efff  com.apple.securityhi (4.0 - 55002) <15E9B9BC-108F-3416-A0A7-A321A85081F7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9006f000 - 0x900deffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x900df000 - 0x90121ffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x90122000 - 0x901b4ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x901bd000 - 0x901f8fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.fr

    Here's the report from EtreCheck:
    Hardware Information:
              Mac mini (Late 2012)
              Mac mini - model: Macmini6,1
              1 2.5 GHz Intel Core i5 CPU: 2 cores
              16 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 768 MB
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 0:11:37
    Disk Information:
              APPLE HDD HTS545050A7E362 disk0 : (500.11 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (213.98 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Western Digital My Passport 0730 500.07 GB
                        disk2s1 (disk2s1) <not mounted>: 209.7 MB
                        Time Machine Backup (disk2s2) /Volumes/Time Machine Backup: 499.73 GB (52.94 GB free)
              Microsoft Microsoft® Digital Media Pro Keyboard
              Western Digital  External HDD     250.06 GB
                        Backups (disk1s1) /Volumes/Backups: 250.06 GB (60.58 GB free)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              com.microsoft.driver.MicrosoftKeyboard          (8.2)
              com.microsoft.driver.MicrosoftKeyboardUSB          (8.2)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.carbonite.launchd.carbonitedaemon.plist
    Launch Agents:
              [loaded] com.carbonite.launchd.carbonitealerts.plist
              [loaded] com.carbonite.launchd.carbonitestatus.plist
    User Launch Agents:
              [loaded] com.google.keystone.agent.plist
              [loaded] com.macupdate.desktop5.scanner.plist
    User Login Items:
              iTunesHelper
              ChronoSyncBackgrounder
              NZBVortex Helper
              TransmitMenu
              Dropbox
              PhotoStream2Folder
              Spark Daemon
              XMenu
              AudioSwitcher
              Alfred 2
              MicrosoftKeyboardHelper
              witchdaemon
              SpeechSynthesisServer
              RightZoom
    3rd Party Preference Panes:
              Carbonite
              Flash Player
              Microsoft Keyboard
              Witch
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   9%          VoiceOver
                   7%          ChronoSyncBackgrounder
                   2%          WindowServer
                   2%          EtreCheck
                   1%          coreaudiod
                   1%          CarboniteDaemon
                   0%          fontd
                   0%          diskmanagementd
                   0%          Dropbox
                   0%          warmd
    Top Processes by Memory:
              98 MB    mds
              82 MB    Finder
              82 MB    Dropbox
              82 MB    VoiceOver
              49 MB    com.apple.dock.extra
              49 MB    Alfred 2
              49 MB    CalendarAgent
              49 MB    loginwindow
              49 MB    SystemUIServer
              49 MB    PhotoStream2Folder
    Virtual Memory Statistics
              12.40 GB           Free RAM
              1.56 GB  Active RAM
              213 MB   Inactive RAM
              1.83 GB  Wired RAM
              347 MB   Page-ins
              0 B      Page-outs

  • How to clear the picture from custom container

    Hi All
    I am uploading the employee image into custom container . for that i have used the below fn modules
    CALL FUNCTION 'HR_IMAGE_EXISTS'
    EXPORTING
    p_pernr = pernr
    * P_TCLAS = 'A'
    * P_BEGDA = '18000101'
    * P_ENDDA = '99991231'
    IMPORTING
    * P_EXISTS =
    p_connect_info = g_connect_info
    EXCEPTIONS
    error_connectiontable = 1
    OTHERS = 2
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    else.
    CALL FUNCTION 'SCMS_DOC_URL_READ'
    EXPORTING
    * MANDT = SY-MANDT
    stor_cat = space
    crep_id = g_connect_info-archiv_id
    doc_id = g_connect_info-arc_doc_id
    * PHIO_ID =
    comp_id = 'DATA'
    * SIGNATURE = 'X'
    * SECURITY = ' '
    * USE_LOCATION = 'A'
    * LOCATION = ' '
    * HTTP_URL_ONLY = ' '
    dp_url_only = 'X'
    * LIFETIME = ' '
    * NO_CACHE = ' '
    * EXPIRATION =
    * PDF_MODE = ' '
    * URL_EXTENTION = ' '
    * FORCE_GET = ' '
    IMPORTING
    url = g_url
    EXCEPTIONS
    error_config = 1
    error_parameter = 2
    error_signature = 3
    http_not_supported = 4
    docget_not_supported = 5
    not_accessable = 6
    data_provider_error = 7
    tree_not_supported = 8
    not_supported = 9
    OTHERS = 10
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    after getting the url for uploading the picture
    I used load_picture_from_url
    the image is uploaded, but when i try to clear the image from control using picture->clear_picture
    it is not clearing the image
    Please help me how to clear the image.
    Thanks
    Rama

    Hi,
    " Request an URL from the data provider by exporting the pic_data.
    CLEAR url.
    PERFORM load_pic_from_db CHANGING url.
    " load picture
    CALL METHOD cl_gui_picture_1->load_picture_from_url
      EXPORTING
        url = url.
    CLEAR url.
    url = 'file://C:\sap-logo.gif'.
    CALL METHOD cl_gui_picture_2->load_picture_from_url
      EXPORTING
        url = url.
    CLEAR url.
    url = 'http://www.sap-press.com/images/logo_books_online_162_50.gif'.
    CALL METHOD cl_gui_picture_3->load_picture_from_url
      EXPORTING
        url = url.
    init = 'X'.
    CALL METHOD cl_gui_cfw=>flush
      EXCEPTIONS
        cntl_system_error = 1
        cntl_error = 2.
    ENDIF.
    Its helpful.
    Regards,
    Raj.

  • I have Safari on an HP desktop running Windows 7, 64-bit. When I want to clear the history from Safari, the "Reset Top Sites Also" button is always checked. This can cause problems. Any way to have it unchecked all the time?

    I have Safari on an HP desktop running Windows 7, 64-bit. When I want to clear the history from Safari, the "Reset Top Sites Also" button is always checked. This can cause problems. Any way to have it unchecked all the time?

    Welcome to the HP Forums Hinalover,
    I see by your post that you are having issues with the print spooler on the Windows 7 computers.
    I can help you with this issue.
    Download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it. Find and fix common printer problems using HP diagnostic tools for Windows?
    Try running the Microsoft Fix It Tool to see if it will fix the print spooler.
    Diagnose and repair Windows File and Folder Problems automatically.
    You can also run the System File Checker to repair corrupted or missing files.
    System File Checker: Run sfc /scannow & analyze its logs in Windows 7 | 8.
    You might end up having to do a repair of Windows.
    Please let me know the results.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

Maybe you are looking for

  • Regarding IDOC 2 FILE Scenario

    Hi Friends,                 please help on IDOC 2 File Scenario. I have done tha ALE settings in R3 system and the Idoc has been  generated out of r3 system. but how it wiil be sent to XI server can any body help me on this issue.make it as quick as

  • Managed property and result sources

    I'm trying to create a search results page that only returns results where the query value = a managed property. I am getting these results back but am also getting back results where the query value if found within a documents contents which I do no

  • Regarding UTL_FILE parameter in the INIT.ORA file

    Dear all, How can i set UTL_FILE parameter in the INIT.ORA file. Also let me know how to create a directory over there.I am new to this area. Where exactly i can locate these details and create directory. Regards, Bala.

  • HTML in Actionscript

    When I paste HTML text from Dreamweaver into Actionscript, to appear in a dynamic text field, Actionscript chokes on any line spaces between tags (which Dreamweaver automatically puts in). I tried manually deleting all the line breaks, but the text i

  • Trouble obtaining approved refund, terrible customer service

    Hello, on 11/3/2014 I sent my U310 Touch into the repair depot under warranty to get fixed. On 11/17/14, parts were no available so I escalated to a refund in which a case manager was assigned to me and accepted my refund. He said that the refund che