Crash after logging in, how to submit crash report?

A little while ago, I tried to login in to my laptop.  As my account was coming up (desktop picture, desktop icons, a few apps, some of the extensions in the upper right, etc) the screen went blue and I was returned to the login window.  According to my neice this had been happening all day with her account as well.
I restarted the machine and since then all has been well.  I can see the crash reports in Console.  So I kind of have two questions:  One, what caused the problem?  Two, how do I submit a crash report to Apple?  It does appear to be an OS crash, as the crashed thread is running WindowServer code in Apple GeForce driver.
Thanks
Chris

If you want to report this issue to Apple's engineering, send a bug report or an enhancement request via its Bug Reporter system. To do this, join the Mac Developer Program—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report or enhancement request. You'll get a response and a follow-up number; thus, starting a dialog with engineering.

Similar Messages

  • In my MacBook Pro, finder is crashing after logging in. It is showing crash report with Relaunch option, when i click on Relaunch option finder is working properly but i am unable to see top bar(Apple, Date, Wifi). Even in safari address bar not accepting

    In my MacBook Pro(10.7.5), finder is crashing after logging in. It is showing crash report with Relaunch option, when i click on Relaunch option finder is working properly but i am unable to see Top bar(Apple logo, Date and Wifi etc... bar). Even in safari address bar, TextEdit not accepting any text means when type something not showing up and also i am unable operate any thing from keyboard. Plz help me…..

    One thing that you can try is installing a 'fresh' version of OS X Lion. Boot into your Recovery partition (holding down the command and R keys whilst booting) and elect to install OS X from the Recovery screen. You need not erase your hard drive and you should not lose any of your data.
    Oh, and just as a precaution, I would use Disk Utility, once you're in Recovery mode, to verify your hard drive before trying to install the OS again.
    Clinton

  • My iphone has crashed after downloding ios7,how can i reset it back

    my iphone has crashed after downloding ios7,how can i reset it back???

    Adnan Kavak wrote:
    my iphone has crashed ...
    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414

  • Skype keeps crashing after log in 7.3.0.101

    Whenever I try to launch Skype, it loads the homepage (after logging in) and then immediately crashes. This has been happening for a few months now and with every skype account that I've tried.  I've reinstalled several times (including deleting all skype files on my computer+registery and resetting all my settings), but nothing.
    Running Windows 7, 64-bit.
    Problem Event Name: APPCRASH
    Application Name: Skype.exe
    Application Version: 7.3.0.101
    Application Timestamp: 5512b3c5
    Fault Module Name: CESpy.dll
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 5085a464
    Exception Code: c0000005
    Exception Offset: 0000c28d
    OS Version: 6.1.7601.2.1.0.768.3
    Locale ID: 2057
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    I've tried everything I could find in the discussions. Help?
    Attachments:
    diagnostics.pdf ‏250 KB

    ruwim wrote:
    Jack2626 wrote:
    Hi, im having the ame issue but from fault module:
    Problem Event Name: APPCRASH
    Application Name: Skype.exe
    Application Version: 7.3.60.101
    Application Timestamp: 5512d489
    Fault Module Name: KERNELBASE.dll
    Fault Module Version: 6.1.7601.18015
    Fault Module Timestamp: 50b83c8a
    Exception Code: 0eedfade
    Exception Offset: 0000c41f
    OS Version: 6.1.7601.2.1.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Any help would be greatly appreciated.
    Please,  run the DirectX diagnostics tool.
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post.
    Be aware that you will have to zip this file before attaching it here.
    Attachments:
    DxDiag.zip ‏9 KB

  • How to submit a report ,Passing the internal tables from parent report

    How to submit a report ,Passing the internal tables from the parent report ?

    The SUBMIT statement executes a report from within a report. i.e. you could have a drill-down which
    calls another report. Can only execute reports of type '1'.
    *Code used to execute a report
    SUBMIT Zreport.
    *Code used to populate 'select-options' & execute report
    DATA: seltab type table of rsparams,
          seltab_wa like line of seltab.
      seltab_wa-selname = 'PNPPERNR'.
      seltab_wa-sign    = 'I'.
      seltab_wa-option  = 'EQ'.
    load each personnel number accessed from the structure into
    parameters to be used in the report
      loop at pnppernr.
        seltab_wa-low = pnppernr-low.
        append seltab_wa to seltab.
      endloop.
      SUBMIT zreport with selection-table seltab
                                    via selection-screen.
    *Code used to populate 'parameters' & execute report
    SUBMIT zreport with p_param1 = 'value'
                    with p_param2 = 'value'.
    Other additions for SUBMIT
    *Submit report and return to current program afterwards
    SUBMIT zreport AND RETURN.
    *Submit report via its own selection screen
    SUBMIT zreport VIA SELECTION-SCREEN.
    *Submit report using selection screen variant
    SUBMIT zreport USING SELECTION-SET 'VARIANT1'.
    *Submit report but export resultant list to memory, rather than
    *it being displayed on screen
    SUBMIT zreport EXPORTING LIST TO MEMORY.
    Once report has finished and control has returned to calling
    program, use function modules LIST_FROM_MEMORY, WRITE_LIST and
    DISPLAY_LIST to retrieve and display report.
    *Example Code (Retrieving list from memory)
    DATA  BEGIN OF itab_list OCCURS 0.
            INCLUDE STRUCTURE abaplist.
    DATA  END OF itab_list.
    DATA: BEGIN OF vlist OCCURS 0,
            filler1(01)   TYPE c,
            field1(06)    TYPE c,
            filler(08)    TYPE c,
            field2(10)    TYPE c,
            filler3(01)   TYPE c,
            field3(10)    TYPE c,
            filler4(01)   TYPE c,
            field4(3)     TYPE c,
            filler5(02)   TYPE c,
            field5(15)    TYPE c,
            filler6(02)   TYPE c,
            field6(30)    TYPE c,
            filler7(43)   TYPE c,
            field7(10)    TYPE c,
          END OF vlist.
    SUBMIT zreport EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = itab_list
      EXCEPTIONS
        not_found  = 4
        OTHERS     = 8.
    CALL FUNCTION 'LIST_TO_ASCI'
      EXPORTING
        list_index         = -1
      TABLES
        listasci           = vlist
        listobject         = itab_list
      EXCEPTIONS
        empty_list         = 1
        list_index_invalid = 2
        OTHERS             = 3.
    IF sy-subrc NE '0'.
      WRITE:/ 'LIST_TO_ASCI error !! ', sy-subrc.
    ENDIF.
    Submit report as job
    *Submit report as job(i.e. in background)
    data: jobname like tbtcjob-jobname value
                                 ' TRANSFER TRANSLATION'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1.
    Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    Insert process into job
    SUBMIT zreport and return
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
                event_id             = starttime-eventid
                event_param          = starttime-eventparm
                event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
                laststrtdt           = starttime-laststrtdt
                laststrttm           = starttime-laststrttm
                prddays              = 1
                prdhours             = 0
                prdmins              = 0
                prdmonths            = 0
                prdweeks             = 0
                sdlstrtdt            = starttime-sdlstrtdt
                sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
                targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.

  • Crashing after Log and Transfer

    I am experiencing a FCP crash after using Log and Transfer to import P2 files.  The material is on an external FW800 drive.  I go to Add Custom Path in the Log and Transfer dialog box, point the software to the CONTENTS folder of each captured P2 card, the list populates with the clips, I drag the files into the que, and they import as usual.  All is well and good until I X out of Log and Transfer, and when I do that, FCP crashes.  I have not experienced this when capturing directly from a camera. This has happened over and over since beginning this project, and we are still yet to get all the material into the machine for editing. 
    Also, in case it is pertinent, I am using a MacBook Pro 2.2 GHz Core i7 machine with 8GB RAM.
    Any ideas or has anyone else experienced this?  Thanks in advance!
    -Van

    First thing I'd try is trashing your preferences.  Google preference manager from digital rebellion.  It's a free download and in invaluable.  It's so cool you'll WANT to pay for it.  It allows you to store a good set of preferences, trash them when they get funky and then restore the good set, including all the cool stuff you created.
    ANYWAY,  I'm in the habit of saving every which way from Tuesday after something interesting has happened, like a capture or L&T.  I know that's not a solution, but a best practice.  hopefully a pref trash will set you right.

  • Mac Acrobat X opens then crashes after 8 seconds, how do you fix this Adobe?

    I am trying to use Acrobat Pro X 10.1.3 on Mac 10.10.2.
    Every time I open either the application or a pdf file, Acrobat Pro X crashes after about 8 seconds.
    From looking at the forums, it seems many people have asked a similar question, however there does not appear to be a solution that works for Macs.
    Acrobat Pro X is part of CS5.5 suite. Reinstalled on a new iMac and all Adobe products updated including Acrobat X.
    Older version of Acrobat works on my old Mac but not here.
    I have resorted to Acrobat Reader, however I need to use Acrobat Pro X.
    Any solution or work around for Mac would be greatly appreciated.

    Hi,
    Please try the following steps and let me know if that worked.
    Delete all the files from following folders:
    [Home]/Library/Application Support/Adobe/SLStore
    [Home]/Library/Application Support/Adobe/SLCache
    And, delete all files from following folder except cache.db
    [Home]/Library/Application Support/Adobe/AdobePCD
    Then launch Acrobat and try to activate and check.
    Regards
    Sukrit Dhingra

  • Adobe reader for iOS crashes after log in for online storage

    I need help with this... Thanks

    Thank you for the information. We are investigating the issue at our end. It would be great if you could send us the crash logs at [email protected]
    For crash logs , please sync your device with iTunes and then find the crash logs at
    * Mac OS X : ~/Library/Logs/CrashReporter/MobileDevice/<DEVICE_NAME>
    * Windows XP: C:\Documents and Settings\<USERNAME>\Application Data\Apple computer\Logs\CrashReporter/<DEVICE_NAME>
    * Windows Vista & Windows 7: C:\Users\<USERNAME>\AppData\Roaming\Apple computer\Logs\CrashReporter/MobileDevice/<DEVICE_NAME>
    * The log files' names start with the application name and have the extension "crash".
    Regards,
    Ankit

  • Gateway crashed after debug command - how to recover

    Hi - I was troubleshooting an issue out of hours and the voice gateway I was working on crashed after using a debug command
    Whats the best way to recover the gateway?
    I'm unable to ping it now - do I need someone to reboot it?
    Once it comes back up with debugging still be active ?

    Chris if the debug you entered is too processor intensive then the only way to recover is to reboot. After Reboot the debugs are turned off.
    Sometimes it becomes too slow but you are still able to access it intermittently if thats the case then you can wait for it become accessible for a small period of time and try to quikly enter u all (undebug all) otherwise if its completely inaccesible your only way to recover is to reboot.
    -Terry

  • Firefox 19 Crashes after logging into Facebook

    Java version installed: Java 7 Update 17
    Adobe Flash: 11.6 r602
    Everytime I log in to Facebook using Firefox, the browser crashes.
    It also crashes when i Restart with Add-Ons Disabled.
    When i type about:crashes in the address bar no crash reports are displayed.
    Can anyone please help?

    Problem Solved, Installed Firefox 20.0 Beta version and no problems at all so far. Firefox not crashing when logging into facebook.

  • How to submit request(Report+Template) using Shell Scripts?

    Hi Friends,
    How to submit request + Add layout using shell scripts..
    If anybody has sample code..Can you please send me to [email protected]
    Please help me..
    Its Urgent.
    Thanks and Regards,
    A Swain
    Message was edited by:
    SwainA

    Following is a package where the request is submitted and the layout is added.
    Also check iin the other way by adding the layout first n then giving the request.
    CREATE OR REPLACE PACKAGE BODY try
    AS
    PROCEDURE try_proc
    errbuf OUT VARCHAR2,
    retcode OUT NUMBER
    IS
    l_mode BOOLEAN;
    l_request_id NUMBER;
    xml_layout BOOLEAN;
    BEGIN
    fnd_file.put_line (fnd_file.output, 'USER_ID :' || fnd_global.user_id);
    fnd_file.put_line (fnd_file.output, 'REQU_ID :' || fnd_global.resp_id);
    fnd_file.put_line (fnd_file.output,
    'RESP_APPL_ID :' || fnd_global.resp_appl_id
    l_mode := fnd_request.set_mode (db_trigger => TRUE);
    IF l_mode IS NOT NULL
    THEN
    fnd_file.put_line (fnd_file.output,
    'Concurrent MODE Option is Success'
    END IF;
    -- if wrong paramters error recd give all 100 arguments as null
    l_request_id :=
    fnd_request.submit_request (application => 'app_short_name',
    program => 'shortname',
    sub_request => FALSE
    fnd_file.put_line (fnd_file.output,
    'Request_Id 1 is :' || l_request_id
    xml_layout :=
    fnd_request.add_layout (template_appl_name => 'SQLAP',
    template_code => 'CAPINEF01',
    template_language => 'en',
    template_territory => 'US',
    output_format => 'PDF'
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line (fnd_file.LOG,
    'Error in procedure package procedure :'
    || SUBSTR (SQLCODE, 1, 20)
    || ':'
    || SUBSTR (SQLERRM, 1, 250)
    END try_proc;
    END try;

  • How to submit a report to printer with specified language?

    hi all,
       It's very strange that there's no parameter which can specify language when submit a report to printer, then how can I print Chinese when logon in English? I can display Chinese correctly in screen and spool by set the SY-LANGU = '1', but it doesn't work with printer. Furthermore, the customer have lots of Chinese users but they won't install the Chinese language package.

    Hi,
    In your ABAP program use "set locale language 'X' country 'XX' " stmt to set the language.
    Svetlin

  • How to submit a  report program to a standard program.

    I want to submit a report program to a slection screen program which is standard with some values. can any one help me out.
    here is the code.
    CONSTANTS:  w_object(10)   type c value  'ZCOST2',
               k_projet(10)   TYPE c VALUE 'AIN_AUSA2',
               k_ssprojet(10) TYPE c VALUE 'ZCOST2'.
    SUBMIT /sapdmc/sap_lsmw_bi_recording
                     via selection-screen
                     WITH p_keep = 'X'
                     WITH p_object = w_object
                     WITH p_projec = k_projet
                     WITH p_subpro = k_ssprojet and return.

    Hi
    Try this...
    SUBMIT /sapdmc/sap_lsmw_bi_recording
                 WITH p_keep = 'X'
                 WITH p_object = w_object
                 WITH p_projec = k_projet
                 WITH p_subpro = k_ssprojet
                  AND return.
    Note:  No need to mention 'VIA Selection Screen', it's not a mandatory.....

  • How to Submit a Report?

    Usually when a program quits on its own a prompt will come up saying such and such quit. Cancel or Submit a Report of the problem.
    Is there a way to go straight to the Submit a report screen on the computer? I am having issues with my iChat connecting. Nothing has changed on my computer and it won't connect for nothing.
    Thanks

    There are some very helpful people in the iChat forum.
    http://discussions.apple.com/forum.jspa?forumID=902

  • CUPC 8.6.3.20802 crashes after logging in successfully System version 8.6.2.100000-44.

    Hi there,
    At my company i have a Dell Latitude E6330 laptop running version 8.6.3.20802 of the CUPC.
    The program appears to crash and auto shut down right after I appear to successfully log into it.
    We are running System version 8.6.2.100000-44.
    It does not seem to happen to other users on the same laptop model as me, we have tried to reinstall and re-image my machine as well as even clear out my Windows Roaming profile to start fresh it still crashes. It appears that when I try to log on to another Dell Desktop it will work but when I go back to my laptop it does the same thing.
    I have found a few different logs however I do not want to spam my thread with every single log that the Communicator gives me. I have tried to turn on Detailed Logging however the application crashes before it is able to be turned on.
    If you guys could please let me know where I could find some log information which I could post up and give me some assistance in troubleshooting the issue that would be great.
    I am part of the IT department at my firm and we have already tried various troubleshooting steps but any extra assistance would be great!
    Thanks heaps in advance!

     Hello,
    Was this ever resolved? i am facing the same issue

Maybe you are looking for