Getting dump in my include

HI,
i wriien a piece of code in the exit  EXIT_SAPLEINM_002.In development is working fine but in quality giving dump
ABAP runtime errors    TABLE_ILLEGAL_STATEMENT
       Occurred on     04/27/2010 at 06:08:07
>> Short dump has not been completely stored. It is too big.
Error analysis
You attempted to change, delete or create a line in the
internal table "\PROG=SAPLEINM\DATA=XEKPO[]", but no valid cursor exists
for the table.
Possible reasons:
1. The relevant ABAP/4 statement does not include the addition
   "...INDEX...", although the statement is not
   inside a "LOOP...ENDLOOP" loop processing this table.
2. The relevant ABAP/4 statement was called from within a
   "LOOP...ENDLOOP" loop after a DELETE "\PROG=SAPLEINM\DATA=XEKPO[]".
*The stopped line items should be dropped by the idoc
loop at DEKEK_X where ebelp = xekpo-ebelp.
if DEKEK_X-stpin = 1.
delete DEKEK_X where stpin = 1.
delete xekpo where ebelp eq DEKEK_X-ebelp.
endif.
endloop.
if DEKEK_X[] is initial.
delete xekpo.
endif.

if DEKEK_X[] is initial.
delete xekpo.
endif.
this is wrong... which record do you wish to delete? you need to tell him... either give an index or a where condition.
if you want to clear the whole table then make use of the CLEAR command instead of delete.

Similar Messages

  • Getting dump with message  CALL_FUNCTION_GET_NAME_FAILED

    Hi,
    My requirement is to write a report which will be run in background every Monday and the result will be sent to a user as email with excel as attachment.
    I tried it by giving the email in 'Spool list recipient' in SM36. ut since the length of the output is more than 255 chars, so i thought of writing the email code as shown below.
    DATA: l_message_content LIKE soli OCCURS 10 WITH HEADER LINE,
            l_receiver_list LIKE soos1 OCCURS 5 WITH HEADER LINE,
            l_packing_list LIKE soxpl OCCURS 2 WITH HEADER LINE,
            l_listobject LIKE abaplist OCCURS 10,
            l_compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
            lw_object_hd_change LIKE sood1,
            l_compressed_size LIKE sy-index.
      l_receiver_list-recnam = sy-uname .
      l_receiver_list-esc_des = 'B'.
      APPEND l_receiver_list.
      lw_object_hd_change-objla = sy-langu.
      lw_object_hd_change-objnam = 'Selection'.
      lw_object_hd_change-objsns = 'P'.
    Mail subject
      lw_object_hd_change-objdes = 'KRB SAP Inconsistency Report'.
    Mail body
      APPEND 'Consisteny report between KRB and SAP' TO l_message_content.
      CALL FUNCTION 'TABLE_COMPRESS'
        IMPORTING
          compressed_size = l_compressed_size
        TABLES
          in              = <fs_table>
          out             = l_compressed_attachment.
      DESCRIBE TABLE l_compressed_attachment.
      CLEAR l_packing_list.
      l_packing_list-transf_bin = 'X'.
      l_packing_list-head_start = 0.
      l_packing_list-head_num = 0.
      l_packing_list-body_start = 1.
      l_packing_list-body_num = sy-tfill.
      l_packing_list-objtp = 'ALI'.
      l_packing_list-objnam = 'Selection'.
      l_packing_list-objdes = 'SAP KRB Consistency Report'.
      l_packing_list-objlen = l_compressed_size.
      APPEND l_packing_list.
      CALL FUNCTION 'SO_OBJECT_SEND'
        EXPORTING
          object_hd_change = lw_object_hd_change
          object_type      = 'RAW'
          owner            = sy-uname
        TABLES
          objcont          = l_message_content
          receivers        = l_receiver_list
          packing_list     = l_packing_list
          att_cont         = l_compressed_attachment.
    I am getting the mail which i checked in SBWP but when i clicked on the attachment i am getting  dump with message CALL_FUNCTION_GET_NAME_FAILED.
    Short text
        Error when starting a Remote Function Call.
    What happened?
        "CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=223#CPIC program connection ended (read
         error) "
        An error occurred when executing a Remote Function Call.
    Error analysis
        An error occurred when executing a Remote Function Call.
        "CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=223#CPIC program connection ended (read
         error) "
        Status of connection.... "RFC DRV=??? ???"
        Internal error code.... "RFC_IO4"
        Internal error: Invalid RFC handle.
    Trigger Location of Runtime Error
        Program                                 SAPMSSY1
        Include                                 SAPMSSY1
        Row                                     266
        Module type                             (FORM)
        Module Name                             XAB_RUN_DRIVER
    Please help in this.
    <removed by moderator>
    Edited by: Thomas Zloch on Sep 14, 2011 11:57 AM

    Hi,
    Check your RFC Connection Configuration. Also, check the used username & password.
    Reward points if the asnwer is helpful.
    Regards,

  • Getting dump in my Z program

    hi,
    i am  getting dump in my below code in the delete statement line.actually previously it worked fine but now suddenly we r getting dump  in the second delete statement below.can some body tell me the reason.
    error analysis: You attempted to change, delete or create a line in the
    internal table "\PROG=YBDISEMAT\DATA=INT_MARC", but no valid cursor exists
    for the table.
    Possible reasons:
    1. The relevant ABAP/4 statement does not include the addition
       "...INDEX...", although the statement is not
       inside a "LOOP...ENDLOOP" loop processing this table.
    2. The relevant ABAP/4 statement was called from within a
       "LOOP...ENDLOOP" loop after a DELETE "\PROG=YBDISEMAT\DATA=INT_MARC".
    LOOP AT int_marc INTO wa_marc.
            IF wa_marc-werks IN ra_source.
              READ TABLE int_disgr WITH KEY zdisgr = wa_marc-disgr
                                            zwerks = wa_marc-werks.
              IF sy-subrc NE 0.
                DELETE int_marc.
              ENDIF.
            ENDIF.
            IF wa_marc-werks IN ra_zmdc.
              READ TABLE int_disgr WITH KEY zdisgr = wa_marc-disgr
                                            zwerks = wa_marc-werks.
              IF sy-subrc NE 0.
                DELETE int_marc. _______________________________________________ getting dump here
              ENDIF.
            ENDIF.
            CLEAR wa_marc.
          ENDLOOP.

    Hi.
    First of all deleting an internal table inside the loop is not a good practise ..You are deleting the same internal table that you are looping..
    Instead of that you can make a small modification to your code.
    LOOP AT int_marc INTO wa_marc.
    IF wa_marc-werks IN ra_source.
    READ TABLE int_disgr WITH KEY zdisgr = wa_marc-disgr
    zwerks = wa_marc-werks.
    IF sy-subrc NE 0.
    move 'X' to any field in the internal table.
    or you can have an additinal field in the end of the internal table like flag type char01.
    and move 'X' to wa_marc-flag.
    ENDIF.
    ENDIF.
    Now outside the loop you can delete
    delete int_marc where flag = 'X'.
    Regards
    Ansari

  • Getting Dump at the time of opening WF

    Hi,
    we had created workflow WS93600011 in our development server. Till Friday 10.07.2009 it was working fine. We did some small change and activated the workflow. Till that time we were able to open the workflow template. On 13.06.2009 when we tried to open the workflow then it was giving dump, so accordingly we checked is this the problem with only 1 workflow template or all the workflow templates and we found that this is the problem with only 1 workflow template not all. So accordingly we did some analysis and I tried to check whether any SAP OSS Notes needs to be implemented but all the notes are already in place.
    Please see below the what dump says...
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Except.                     CX_SY_REF_IS_INITIAL
    Date and Time          07/20/2009 13:30:44
    Short text                                                                               
    Access via 'NULL' object reference not possible.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_WFD_TASK_PROXY=============CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look at and manage termination messages, and you can also keep them for a long time.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in procedure "CONSTRUCTOR" "(METHOD)", nor was it propagated by a RAISING clause. Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated. The reason for the exception is: You attempted to use a 'NULL' object reference (points to 'nothing') access a component. An object reference must point to an object (an instance of a class) before it can be used to access components. Either the reference was never set or it was set to 'NULL' using the CLEAR statement.
    How to correct the error                                                                               
    Probably the only way to eliminate the error is to correct the program.
        If the error occures in a non-modified SAP program, you may be able to find an interim solution in an SAP Note. If you have access to SAP Notes, carry out a search with the following keywords:
        "OBJECTS_OBJREF_NOT_ASSIGNED_NO" "CX_SY_REF_IS_INITIAL"
        "CL_WFD_TASK_PROXY=============CP" or "CL_WFD_TASK_PROXY=============CM001"
        "CONSTRUCTOR"
        If you cannot solve the problem yourself and want to send an error notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21. Restrict the time interval to 10 minutes before and five minutes after the short dump. Then choose "System->List->Save->Local File (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP program: The source code of the program In the editor, choose "Utilities->More Utilities->Upload/Download->Download".
        4. Details about the conditions under which the error occurred or which actions and input led to the error.
        The exception must either be prevented, caught within proedure
        "CONSTRUCTOR" "(METHOD)", or its possible occurrence must be declared in the                  
        RAISING clause of the procedure.                                                              
        To prevent the exception, note the following:                                                 
    System environment                                                                               
    SAP-Release 701                                                                               
    Application server... "ydedb"                                                                 
        Network address...... "9.57.177.109"                                                          
        Operating system..... "AIX"                                                                   
        Release.............. "6.1"                                                                   
        Hardware type........ "00C15EAF4C00"                                                          
        Character length.... 16 Bits                                                                  
        Pointer length....... 64 Bits                                                                 
        Work process number.. 4                                                                       
        Shortdump setting.... "full"                                                                               
    Database server... "ydedb"                                                                    
        Database type..... "DB6"                                                                      
        Database name..... "YDE"                                                                      
        Database user ID.. "SAPYDE"                                                                               
    Terminal.......... "IBM-BE014934612"                                                                               
    Char.set.... "C"                                                                               
    SAP kernel....... 701                                                                         
        created (date)... "Mar 30 2009 21:48:51"                                                      
        create on........ "AIX 2 5 00CB5A5B4C00"                                                      
        Database version. "DB6_81 "                                                                               
    Patch level. 37                                                                               
    Patch text.. " "                                                                               
    Database............. "DB6 08.02.*, DB6 09.*"                                                 
        SAP database version. 701                                                                     
        Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"                                                                               
    Memory consumption                                                                               
    Roll.... 16192                                                                               
    EM...... 8379696                                                                               
    Heap.... 0                                                                               
    Page.... 73728                                                                               
    MM Used. 3730104                                                                               
    MM Free. 457144                                                                               
    User and Transaction                                                                               
    Client.............. 210                                                                      
        User................ 013319744                                                                
        Language key........ "E"                                                                      
        Transaction......... "PFTC "                                                                  
        Transactions ID..... "4A62BD9572AD004BE10080000939B16D"                                                                               
    Program............. "CL_WFD_TASK_PROXY=============CP"                                       
        Screen.............. "SAPLRHWS 1001"                                                          
        Screen line......... 19                                                                       
    Information on where terminated                                                                   
        Termination occurred in the ABAP program "CL_WFD_TASK_PROXY=============CP" -                 
         in "CONSTRUCTOR".                                                                               
    The main program was "SAPLRHW4 ".                                                                               
    In the source code you have the termination point in line 91                                  
        of the (Include) program "CL_WFD_TASK_PROXY=============CM001".                               
        The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in                
        procedure "CONSTRUCTOR" "(METHOD)", but it was neither handled locally nor                    
         declared                                                                               
    in the RAISING clause of its signature.                                                                               
    The procedure is in program "CL_WFD_TASK_PROXY=============CP "; its source                   
         code begins in line                                                                               
    1 of the (Include program "CL_WFD_TASK_PROXY=============CM001 ".                             
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    61       a_task = l_task.                                                                      
       62     ENDIF.                                                                               
    63 *-- load task                                                                               
    64     IF in_task IS NOT INITIAL.                                                              
       65       a_task = in_task.                                                                     
       66     ENDIF.                                                                               
    67     CALL METHOD deserialize                                                                 
       68       EXPORTING                                                                               
    69         in_display          = in_display                                                    
       70       EXCEPTIONS                                                                               
    71         task_not_exists     = 1                                                             
       72         task_already_locked = 2                                                             
       73         OTHERS              = 3.                                                            
       74     IF sy-subrc = 2.                                                                        
       75 *---- we couldn't lock in update mode -> create a proxy in display                          
       76 *---- mode                                                                               
    77       CALL METHOD deserialize                                                               
       78         EXPORTING                                                                               
    79           in_display          = 'X'                                                         
       80         EXCEPTIONS                                                                          
       81           task_not_exists     = 1                                                           
       82           task_already_locked = 2                                                           
       83           OTHERS              = 3.                                                          
       84     ENDIF.                                                                               
    85     IF sy-subrc <> 0.                                                                       
       86       RAISE task_not_found.                                                                 
       87     ENDIF.                                                                               
    88   ENDIF.                                                                               
    89 * create before image on the container                                                      
       90   TRY.                                                                               
    >>>>>       CALL METHOD a_container->create_before_image                                          
       92         EXPORTING                                                                               
    93           include_extensions = 'X'.                                                         
       94     CATCH cx_swf_cnt_container .                                                            
       95   ENDTRY.                                                                               
    96                                                                               
    97 ENDMETHOD.                    "constructor                                                  
    If any body is having any idea to resolve this issue then please let me know. We are into the last stage of the development.
    Thanks in advance for replying this issue.
    Best Regards,
    Prashant Raichurkar

    Hi Rick,
    The small change I did into the business object and added those parameter into the task and workflow through binding. And you are right the changed I did was on 10/07 and I am getting dump from 13/07.
    Also I already copied to copy the workflow template into another, in the new template everything is blank including workflow container and template. It is as like new template.
    Also one thing I want to tell you that I thought to activate previous version so the moment I click on choose version again I got the same dump.
    Please let me know if you have any idea to resolve this issue.
    Thanks & Regards,
    Prashant

  • Getting Dump from a select query

    Dear All,
    Am selecting records from KEKO  and storing into  E1KEKO  internal table. But am getting dump error. I need to send those E1KEKO records as idoc. Kindly help me out how to fix this dump.
      SELECT * INTO CORRESPONDING FIELDS OF e1keko
        FROM keko
        WHERE keko~matnr = p_matnr
          AND keko~werks = p_werks
          AND keko~bwtar = 'Z06'
          AND keko~bwvar = 'Z06'.
        CLEAR t_idoc_data.
        t_idoc_data-segnam = c_segnam_e1keko.
        t_idoc_data-mandt = sy-mandt.
        t_idoc_data-sdata  = e1keko.
        APPEND t_idoc_data.
        CLEAR e1keph.
    endselect
    Thanks in advance.
    Anandhan

    Hi,
    If i use the below select query in a test program,  that time also am getting the same dump.
    DATA: e1keph TYPE e1keph,
          e1keko TYPE e1keko.
       SELECT * INTO CORRESPONDING FIELDS OF e1keko
        FROM keko
        WHERE keko~matnr = '000000000010801071'.
      endselect.
    (code}
    The dump showing the below message
      The reason for the exception is:
      In a SELECT access, the read file could not be placed in the target
      field provided.
      Either the conversion is not supported for the type of the target field
      the target field is too small to include the value, or the data does no
      have the format required for the target field.
    Thanks in advance
    Anandhan

  • Getting dump in table maintainance generator

    hi friends ,
    in dev system and production iam able to maintain data in the table ,but in quality i am getting dump.
    my error is bellow,
    Runtime Errors         DYNPRO_FIELD_CONVERSION
    Date and Time          20.03.2009 14:11:59
    Short text
         Conversion error
    What happened?
         The current screen processing action was terminated since a situation
         occurred where the application could not continue.
         This is probably due to an error in the ABAP program or in the current
         screen.
    Error analysis
         The program has been interrupted and cannot resume.
         Program "SAPLY_J_2IRG1BAL" attempted to display fields on screen 0001.
         An error occurred during the conversion of this data.
    Trigger Location of Runtime Error
         Program                                 SAPLY_J_2IRG1BAL
         Include                                 LSVIMOXX
         Row                                     253
         Module type                             (MODULE PBO)
         Module Name                             LISTE_SHOW_LISTE

    Hi Sudheer,
    Did you add any FLTP field in table and generating table maintenance generator for the same? FLTP type of field can't be displayed on screen or in SM30, They need to be converted to CHAR before displaying. Please check for the same.
    Edited by: Gaurav Mishra on Mar 20, 2009 12:08 PM

  • Getting Dump in Production system

    Hi,
    we are getting dump in one customise program due to missing include program.
    how to transport this missing program.?
    regards,
    Ramesh

    Hi,
    run tcode SE10 in DEV system.
    click on create -> select workbench request -> enter description of request -> enter
    now double click on request -> click change end enter following
    In first row
    Program ID:    R3TR
    Object Type:  PROG
    Object Name: name of include. press enter
    in second row
    Program ID:    LIMU
    Object Type:  REPS
    Object Name: name of include. press enter
    then  click on release.
    import this request in PRD system.
    regards,
    kaushal

  • ZReport getting dump in Production but not in Quality and development

    Hi,
    There isa Zreport which displays daily stock  in PP module.
    It is getting dump in Production not in quality and development.
    Since four days it is getting dump. Before that it is fine.
    Please any one guide How to resolve.
    Advance Thanks.

    Runtime Error          SAPSQL_IN_ITAB_ILLEGAL_OPTION
           Occurred on     29.08.2007 at   08:50:13
    <u>Invalid value in OPTION field of value table for IN itab operator.</u>
    What happened?
    <b>Error in ABAP application program.</b>
    The current ABAP program "ZPPRDR417" had to be terminated because o
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and admin
    termination messages, especially those beyond their normal deletio
    date.
    <b>Error analysis</b>
    The current ABAP/4 program attempted to execute an ABAP/4 Open SQL
    statement in which the WHERE condition contains an IN itab operator
    The IN itab operator is used with internal tables which
    have the following structure:
       SIGN(1)   OPTION(2)   LOW LIKE db_field   HIGH LIKE db_field
    The OPTION column should contain only one of the following values:
       "EQ LE GE CP BT NE LT GT NP NB"
    The value " " is not allowed here.
    <b>How to correct the error</b>
    Use only one of the permitted values in the OPTION column.
    Information on where terminated
    The termination occurred in the ABAP program "ZPPRDR417" in "WIP_STOCK_REP
    The main program was "ZPPRDR417 ".
    The termination occurred in line 330 of the source code of the (Include)
    program "ZPPRDR417_FORM"
    of the source code of program "ZPPRDR417_FORM" (when calling the editor 33
    Source code extract
    Caution: Program has changed
    Caution: At time of termination,  Active source code no longer available
    003000 ?   r_bwart-low  =  '106'.
    003010 ?   append r_bwart.
    003020 ?
    003030 ?   r_bwart-low  =  '124'.
    003040 ?   append r_bwart.
    003050 ?
    003060 ?   r_bwart-low  =  '125'.
    003070 ?   append r_bwart.
    003080 ?
    003090 ?   select matnr
    003100 ?          werks
    003110 ?     into table i_marc
    003120 ?     from marc
    003130 ?    where ( matnr LIKE 'BILC%'
    003140 ?       OR   matnr LIKE 'LGN%'
    003150 ?       OR   matnr LIKE 'BRN%'
    003160 ?       OR   matnr LIKE 'EBB%' )
    003170 ?       AND  matnr NE 'BRN_DECLASSE'
    003180 ?       AND  matnr NE 'BRN_SAF'
    003190 ?       and  werks in r_werks.
    003200 ?
    003210 ?   r_material-sign = 'I'.
    003220 ?   r_material-option = 'EQ'.
    003230 ?
    003240 ?   loop at i_marc into wa_marc.
    003250 ?     r_material-low  = wa_marc-matnr.
    003260 ?     append r_material.
    003270 ?   endloop.
    003280 ?   clear r_material.
    003290 ?
         > ?   if not i_matdoc is initial.
    003310 ?    select MBLNR
    003320 ?           MJAHR
    003330 ?           ZEILE
    003340 ?           BWART
    003350 ?           MATNR
    003360 ?           WERKS
    003370 ?           SHKZG
    003380 ?           MENGE
    003390 ?           UMWRK
    003400 ?      into table i_mseg_qty
    003410 ?      from mseg
    003420 ?       for all entries in i_matdoc
    003430 ?     where MBLNR eq i_matdoc-MBLNR
    003440 ?       and MJAHR eq i_matdoc-MJAHR
    003450 ?       and BWART in r_bwart
    003460 ?       and matnr in r_material
    003470 ?       and werks in r_werks.
    003480 ?
    003490 ?    sort i_mseg_qty by matnr.

  • Getting dump on selecting the businessrole SALESPRO(CRM WEBUI)

    Hi,
    I am getting dump as soon as I click on CRM Business role: SALESPRO in CRM WEBUI. The dump says: 'Define component usage "Tag_clouds".
    Could you please let me know, how to solve this issue?
    Thanks,
    Sandeep

    Hello ,
    We are trying to create some tag clouds using the following classes :
    cl_wcf_tc_factory=>get_object_from_genil_id
    cl_wcf_tc_factory=>add_tag
    cl_wcf_tc_factory=>save
    The tag is created fine , bu unfortunatley , it generates the following dump  when a user cliks on it.
    Exception Class
    CX_SY_IMPORT_MISMATCH_ERROR
    Error Name
    CONNE_IMPORT_WRONG_FIELD_TYPE
    Program
    CL_CRM_GENIL_CONT_SIMPLE_OBJ==CP
    Include
    CL_CRM_GENIL_CONT_SIMPLE_OBJ==CM007
    ABAP Class
    CL_CRM_GENIL_CONT_SIMPLE_OBJ
    Method
    IF_GENIL_CONT_SIMPLE_OBJECT~GET_KEY
    Line
    18
    Long text
    During IMPORT it was ascertained that the object in the dataset has a different object type to the target object, or the structure of the complex object is not compatible with the structure of the target object. The target object has either a different length, a different number of decimal places or a different data type to the object that is to be imported.
    Can you please advise ?
    Thanks.

  • Phap_catalog tcode getting dumped on status flow tab

    Dear Friends,
    I am getting dumped in my system in tcode phap_catalog when we execute this tcode & double click on personal appraisals.there is two tabs. when we click on status flow tab, it getting dumped message type x.
    Plz suggest.
    Ankit

    For adding information, i am adding some part of dump..
    Runtime Error
    The current application triggered a termination with a short dump.
    What happened?
    The current application program detected a situation which really
    should not occur. Therefore, a termination with a short dump was
    triggered on purpose by the key word MESSAGE (type X).
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Error analysis
    Short text of error message:
    Control Framework : Error processing control
    Technical information about the message:
    Diagnosis
         An error occurred when the system tried to process the commands
         from the Automation Queue on the presentation server.
         There are several possible reasons for this:
         - The installation of the SAP GUI on the presentation server is
         faulty or obsolete.
         - There is an error in the application program
         - There is an error in the SAPGUI or an integrated control
    Procedure
         1. Make sure that you have imported the appropriate Support
         Package, the current kernel, and GUI patch for the release of your
         system
         2. Check whether the error occurs locally on one or a few PCs, or
         generally on all PCs. Note whether the error only occurs for some
         users, for example because of a specific Customizing setting.
         If it only occurs locally, this suggests an installation problem
         with the PC. Check the installation; if necessary, reinstall the
         software. In the dump, search for the SY-MSGLI field, since it may
         point to the cause of the error.
         3. Activate the Automation Trace (in accordance with SAP Note
         158985).
         4.Start the transaction and continue until the screen immediately
         before the dump.
         5. From the System -> Utilities menu, choose Autom. Queue,
         Synchronous Processing.
         The status bar of the GUI displays the text:
            "Automation synchron flush mode on"
         6. If you now proceed with the application, the short dump will
         display the ABAP call that caused the error; the Automation Trace
         will contain the error on the presentation server.
    System environment
    SAP Release.............. "620"
    Transaction......... "PHAP_CATALOG "
    Program............. "SAPLOLEA"
    Screen.............. "SAPLHRHAP_C_UI_CATALOG 1000"
    Screen line......... 0
    Information on where terminated
    The termination occurred in the ABAP program "SAPLOLEA" in "AC_SYSTEM_FLUSH".
    The main program was "RHHAP_APPRAISAL_CATALOG ".
    The termination occurred in line 29 of the source code of the (Include)
    program "LOLEAU02"
    of the source code of program "LOLEAU02" (when calling the editor 290).
    End of runtime analysis
    Edited by: Ankit on Aug 22, 2008 10:05 AM

  • CRM-BI when i create infopackage system gets dump

    Hi All,
    I was changed the source system with BDLS. And in the new system i want to get data from source system to BI system. When i try, system gets the dump.
    The dump details:
    Trigger Location of Runtime Error
        Program                                 SAPLRSSM
        Include                                 LRSSMU17
        Row                                     2.624
        Module type                             (FUNCTION)
        Module Name                             RSSM_CALL_RSAR_DATA_REQUEST_1
    Line                 SourceCde
    2601               if p_t_rsldpio-crt_package is initial.
    2602                 try.
    2603                     if l_s_dta_odsactreq-tlogo = rs_c_tlogo-ods_object and
    2604                    l_s_dta_odsactreq-odsotype = rsdod_c_type-write_optimized.
    2605                       call function 'RSS2_WRITEOPT_DSO_ACTREQ'
    2606                         exporting
    2607                           i_rnr = g_rnr
    2608                           i_sid = g_rnr_sid
    2609                           i_ods = l_upd_icube-infocube.
    2610                     endif.
    2611                     call method cl_rsodso_update_control=>begin_update
    2612                       exporting
    2613                         i_request_guid = g_rnr
    2614                         i_odsobject    = l_upd_icube-infocube.
    2615                   catch cx_rsodso_root.
    2616                     loop at l_upd_icube.
    2617                       call function 'DEQUEUE_ERSICCONT'
    2618                         exporting
    2619                           mode_rsiccont = 'E'
    2620                           icube         = l_upd_icube-infocube
    2621                           _scope        = '3'
    2622                           _synchron     = 'X'.
    2623                     endloop.
    >>>>>                     message x000.  // I GET DUMP HERE.
    2625                 endtry.
    2626               endif.
    2627             endif.
    2628           endif.
    thanks for help,
    David.

    Hi,
    Error code shows that you are trying to update DSO/cube.
    Are you able to create any other object in the system, I mean is object chagability allowed.
    Regards
    Rahul Bindroo

  • Getting dump when using do_sum in alv field cat in the output of the report

    Dear Freinds,
                 Iam getting the alv report when i click on the segma field (Sum) on my salary
    field iam getting dump. and also if i try to print my alv output iam getting dump , only
    happening to my custom report.
    i have used the following code pleae correct me .
    This perform is used for Layout settings
      perform st_layout_build  using gs_layout.
    form st_layout_build  using  st_ls_layout type slis_layout_alv.
       st_ls_layout-no_input          = 'X'.
      st_ls_layout-colwidth_optimize = 'X'.
    st_ls_layout-zebra             = 'X'.
    st_ls_layout-detail_popup      = 'X'.
    endform.                    " st_layout_build
    Field Catalog details
    perform st_fieldcat_init changing gt_fieldcat.
    form st_fieldcat_init  changing  fp_i_fieldcat type slis_t_fieldcat_alv.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 1.
      ls_fieldcat-fieldname    = 'ORGUNIT'.
      ls_fieldcat-seltext_l    = 'Orgunit'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 2.
      ls_fieldcat-fieldname    = 'ORGTEXT'.
      ls_fieldcat-seltext_l    = 'Orgdesc'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'SALARY'.
      ls_fieldcat-seltext_l    = 'Salary'.
      ls_fieldcat-col_pos      = 3.
      ls_fieldcat-outputlen   = 15.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-datatype     = 'CURR'.    "CURR
      append ls_fieldcat to fp_i_fieldcat.
    endform.
    Variant
      perform st_variant_init  using gs_variant g_repid.
    form st_variant_init   using  st_gs_variant type disvariant
                                 st_repid      like sy-repid.
      clear st_gs_variant.
      st_gs_variant-report = st_repid.
    endform.                    " st_variant_init
      g_repid = sy-repid.
      perform st_comment_build  using gt_list_top_of_page[].
    form st_comment_build  using   st_lt_top_of_page type slis_t_listheader.
      data: ls_line type slis_listheader.
    Listenüberschrift: Typ H
      clear ls_line.
      ls_line-typ  = 'H'.
    LS_LINE-KEY:  not used for this type
      ls_line-info = text-000.
      append ls_line to st_lt_top_of_page.
    endform.                    " st_comment_build
         call function 'REUSE_ALV_GRID_DISPLAY'
          exporting
             i_buffer_active        = 'X'
            i_callback_top_of_page = 'TOP_OF_PAGE'
            i_callback_program     = g_repid
            is_layout              = gs_layout
            it_fieldcat            = gt_fieldcat[]
           i_structure_name       = 'i_final'   "c_i_final "'objec'
           i_save                 = g_save
            is_variant             = gs_variant
          tables
            t_outtab               = fp_i_pyrol_final
          exceptions
            program_error          = 1
            others                 = 2.
        if sy-subrc ne 0.
          message e018. " Displaying the ALV GRID has failed
        endif.
    Please could any  one let me know why iam getting dump when iam clicking for total
    on my salary field.
    Regards
    latha

    Dear Chandu,
    my code iam giving in details
    types : begin of ty_output_data,
            staffno     type pernr_d,
            staffname   type emnam,
            grade       type stell,
            orgunit     type orgeh,
            orgtext     type hr_mcstext,
            psgroup     type trfgr,      " Pay Scale Group
            salary      type maxbt,       "PAD_AMT7S,
            rrefunded   type pad_amt7s,
            leavepay    type pad_amt7s,
            mshortfal   type pad_amt7s,   " Medical Shortfall
            echkshfal   type pad_amt7s,   " Execute checkup shortfall
            ofindeduc   type pad_amt7s,   " Other Finance Deduction
            mtyprem     type pad_amt7s,   " maternity premium
            vpbonus     type pad_amt7s,   " VP/Bonus
            gratuity    type pad_amt7s,   " Gratuity
            vpay        type pad_amt7s,   " Variable pay
            mallowance  type pad_amt7s,   " Meal Allowance
            overtime    type pad_amt7s,   " overtime
            other       type  pad_amt7s,  "  OTHER
            pfundeecon  type pad_amt7s,   " PFund Employee's Contribution
            banktrnsfer type pad_amt7s,   " Bank Transfer
            count       type i,
            end of ty_output_data.
    data : i_final         type standard table of ty_output_data.
    iam getting all my data in the internal table  I_FINAL.
    perform get_final_alv  using  i_final.
    form get_final_alv  using   fp_i_pyrol_final type ty_t_output_data.
    *local variable declarations
      data : l_v_idx      type sy-tabix.
    *local work areas
      data : l_wa_final type ty_output_data.
      g_save = 'A'.
    This perform is used for Layout settings
      perform st_layout_build  using gs_layout.
    Field Catalog details
      perform st_fieldcat_init changing gt_fieldcat.
    Variant
      perform st_variant_init  using gs_variant g_repid.
      g_repid = sy-repid.
      perform st_comment_build  using gt_list_top_of_page[].
      if not fp_i_pyrol_final is initial.
        delete adjacent duplicates from fp_i_pyrol_final comparing all fields.
        call function 'REUSE_ALV_GRID_DISPLAY'
          exporting
             i_buffer_active        = 'X'
            i_callback_top_of_page = 'TOP_OF_PAGE'
            i_callback_program     = g_repid
            is_layout              = gs_layout
            it_fieldcat            = gt_fieldcat[]
           i_structure_name       = 'i_final'   "c_i_final "'objec'
           i_save                 = g_save
            is_variant             = gs_variant
          tables
            t_outtab               = fp_i_pyrol_final
          exceptions
            program_error          = 1
            others                 = 2.
        if sy-subrc ne 0.
          message e018. " Displaying the ALV GRID has failed
        endif.
      endif.
    endform.                    " get_final_alv
    form st_layout_build  using  st_ls_layout type slis_layout_alv.
       st_ls_layout-no_input          = 'X'.
      st_ls_layout-colwidth_optimize = 'X'.
    st_ls_layout-zebra             = 'X'.
    st_ls_layout-detail_popup      = 'X'.
    endform.                    " st_layout_build
    form st_fieldcat_init  changing  fp_i_fieldcat type slis_t_fieldcat_alv.
      data: ls_fieldcat type slis_fieldcat_alv.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 1.
      ls_fieldcat-fieldname    = 'ORGUNIT'.
      ls_fieldcat-seltext_l    = 'Orgunit'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 2.
      ls_fieldcat-fieldname    = 'ORGTEXT'.
      ls_fieldcat-seltext_l    = 'Orgdesc'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 5.
      ls_fieldcat-fieldname    = 'STAFFNAME'.
    ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = 'StaffName'.
      append ls_fieldcat to fp_i_fieldcat.
       clear ls_fieldcat.
      ls_fieldcat-col_pos      = 4.
      ls_fieldcat-fieldname    = 'STAFFNO'.
    ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = 'StaffNo.'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 6.
      ls_fieldcat-fieldname    = 'GRADE'.
      ls_fieldcat-seltext_l    = 'Grade'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 3.
      ls_fieldcat-fieldname    = 'COUNT'.
      ls_fieldcat-seltext_l    = 'Headcount'.
      append ls_fieldcat to fp_i_fieldcat.
    if the field name is 'Salary' then do a sum on this field.
    IF  fp_fname = c_betrg.
        l_wa_fieldcat-do_sum    = c_x.
    ENDIF.
    NOTE : IAM GETTING PROBLEM IN THE BELOW SALARY.
    IAM JUST CHECKING ITSELF NOT ALLOWING ME TO EXECUTE
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'SALARY'.
      ls_fieldcat-seltext_l    = 'Salary'.
      ls_fieldcat-col_pos      = 7.
      ls_fieldcat-outputlen   = 20.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-datatype     = 'CURR'.    "CURR
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 9.
      ls_fieldcat-fieldname    = 'LEAVEPAY'.
      ls_fieldcat-seltext_l    = 'Leave Pay'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 10.
      ls_fieldcat-fieldname    = 'MSHORTFAL'.
      ls_fieldcat-seltext_l    = 'Med.Sfall'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 11.
      ls_fieldcat-fieldname    = 'ECHKSHFAL'.
      ls_fieldcat-seltext_l    = 'EX.Chckup.Sfall'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 12.
      ls_fieldcat-fieldname    = 'OFINDEDUC'.
      ls_fieldcat-seltext_l    = 'Oth.Fin.Deduction'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 13.
      ls_fieldcat-fieldname    = 'MTYPREM'.
      ls_fieldcat-seltext_l    = 'Mat.Premium'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 14.
      ls_fieldcat-fieldname    = 'VPBONUS'.
      ls_fieldcat-seltext_l    = 'VP/Bonus'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 15.
      ls_fieldcat-fieldname    = 'GRATUITY'.
      ls_fieldcat-seltext_l    = 'Gratuity'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 16.
      ls_fieldcat-fieldname    = 'VPAY'.
      ls_fieldcat-seltext_l    = 'Variable Pay'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 17.
      ls_fieldcat-fieldname    = 'MALLOWANCE'.
      ls_fieldcat-seltext_l    = 'Meal.Allowance'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 18.
      ls_fieldcat-fieldname    = 'OVERTIME'.
      ls_fieldcat-seltext_l    = 'Overtime'.
      append ls_fieldcat to fp_i_fieldcat.
        clear ls_fieldcat.
      ls_fieldcat-col_pos      = 19.
      ls_fieldcat-fieldname    = 'OTHER'.
      ls_fieldcat-seltext_l    = 'Other'.
      append ls_fieldcat to fp_i_fieldcat.
    pfundeecon
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 20.
      ls_fieldcat-fieldname    = 'P FUND EMPLOYEES CONTRIBUTION'.
      ls_fieldcat-seltext_l    = 'P.Fund.Emp.Contrib'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 21.
      ls_fieldcat-fieldname    = 'BANKTRNSFER'.
      ls_fieldcat-seltext_l    = 'Payment'.
      append ls_fieldcat to fp_i_fieldcat.
    endform.                    " st_fieldcat_init
    form st_variant_init   using  st_gs_variant type disvariant
                                 st_repid      like sy-repid.
      clear st_gs_variant.
      st_gs_variant-report = st_repid.
    endform.                    " st_variant_init
    form st_comment_build  using   st_lt_top_of_page type slis_t_listheader.
      data: ls_line type slis_listheader.
    Listenüberschrift: Typ H
      clear ls_line.
      ls_line-typ  = 'H'.
    LS_LINE-KEY:  not used for this type
      ls_line-info = text-000.
      append ls_line to st_lt_top_of_page.
    endform.                    " st_comment_build
          FORM TOP_OF_PAGE                                              *
    form top_of_page.
      data: l_i_detailheader type slis_t_listheader.
    To get the header for ALV
      perform detail_header changing l_i_detailheader.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = l_i_detailheader.
    endform.                    "top_of_page
    form detail_header  changing fp_i_detailheader type slis_t_listheader.
      data: l_wa_header       type slis_listheader,
            l_v_time         type slis_edit_mask,
            l_v_date         type slis_edit_mask,
            l_v_abkrs        type char5,
            l_v_pabrj        type char8,
            l_v_pagno        type char10.
    Local Constants
      constants: l_c_h type char1 value 'H',
                 l_c_1  type i     value '1',
                 l_c_edit type char10 value '__.__.____',
                 l_c_slash  type c value '/'. " constant for slash
    To display the report Header
      l_wa_header-typ = l_c_h.
    WRITE sy-repid TO l_wa_header-info LEFT-JUSTIFIED.
      write text-014  to l_wa_header-info left-justified.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To display the Page no
      l_v_pagno =   sy-pagno + l_c_1.
      l_wa_header-typ = c_s.
      l_wa_header-key = text-008. " Page No:
      l_wa_header-info =  l_v_pagno.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To Display the User ID
      l_wa_header-typ = c_s.
      l_wa_header-key = text-009. " User ID
      l_wa_header-info = sy-uname.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To Display the Date/Time
      l_wa_header-typ = c_s.
      l_wa_header-key = text-010. " Date/Time:
      l_v_time = sy-uzeit.
      l_v_date = sy-datum.
      write: sy-uzeit to l_v_time.
      write sy-datum to l_v_date using edit mask l_c_edit.
      concatenate l_v_date
                  l_c_slash
                  l_v_time into l_wa_header-info+0(25) separated by space.
      append l_wa_header to fp_i_detailheader.
      clear: l_wa_header, l_v_date.
    To Display the Report Description
      l_wa_header-typ = c_s.
      l_wa_header-key = text-011.                " Report Description
      l_wa_header-info = text-012.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
      append l_wa_header to fp_i_detailheader.
    endform.                    " detail_header
    I will be greatful if any one can please help me in removing me the dump.
    REGARDS
    LATHA.

  • I am getting regular safari crashes including the Web Content crashes as in the title... Plus iMac running slower than usual! Help?

    I am getting regular safari crashes including the Web Content crashes as in the title.  I've looked around and haven't been able to find a definitive answer.  Has anybody discovered what is causing this?
    I've also noticed generally my iMac seems to be running far slower recently....
    here's the EtrreCheck Report
    Problem description:
    I am getting regular safari crashes including the Web Content crashes as in the title.  I've looked around and haven't been able to find a definitive answer.  Has anybody discovered what is causing this?
    EtreCheck version: 2.1.8 (121)
    Report generated 11 February 2015 15:53:18 GMT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2012) (Technical Specifications)
        iMac - model: iMac13,1
        1 2.7 GHz Intel Core i5 CPU: 4-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce GT 640M - VRAM: 512 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 23:55:51
    Disk Information: ℹ️
        APPLE HDD ST1000LM024 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 999.35 GB (425.61 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
        Seagate Expansion Desk 4 TB
            EFI (disk3s1) <not mounted> : 315 MB
            Seagate Backup Plus Drive (disk3s2) /Volumes/Seagate Backup Plus Drive : 4.00 TB (1.85 TB free)
        Focusrite A.E. Ltd Impulse
        SanDisk Cruzer Facet 8 GB
            NO NAME (disk1s1) /Volumes/NO NAME : 8.00 GB (6.21 GB free)
        Apple Inc. FaceTime HD Camera (Built-in)
        Western Digital External HDD 1 TB
            Elements (disk2s1) /Volumes/Elements : 1.00 TB (169.22 GB free)
        Logitech USB Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
    Firewire Information: ℹ️
        Focusrite SAFFIRE_PRO_24 400mbit - 400mbit max
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
            Apple Inc. Thunderbolt to FireWire Adapter
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Click for support]
        [loaded]    com.Greatdy.driver.SystemAudioCapture (1.0.0 - SDK 10.8) [Click for support]
        [not loaded]    com.caiaq.driver.NIUSBGuitarRigMobileDriver (2.6.0 - SDK 10.7) [Click for support]
        [not loaded]    com.caiaq.driver.NIUSBHardwareDriver (2.6.0 - SDK 10.7) [Click for support]
        [not loaded]    com.nike.sportwatch (1.0.0) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.master (5.9.1 - SDK 10.6) [Click for support]
        [not loaded]    com.seagate.driver.PowSecDriverCore (5.2.6 - SDK 10.4) [Click for support]
        [not loaded]    com.tomtom.driver.UsbEthernetGadget (1.0.0d1) [Click for support]
        [loaded]    tc.tctechnologies.driver.PaeFireStudio (4.0.0 14255 - SDK 10.0) [Click for support]
        [loaded]    tc.tctechnologies.driver.Saffire (4.1.4 18735 - SDK 10.6) [Click for support]
            /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns
        [not loaded]    com.paceap.kext.pacesupport.leopard (5.9.1 - SDK 10.4) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.panther (5.9.1 - SDK 10.-1) [Click for support]
        [loaded]    com.paceap.kext.pacesupport.snowleopard (5.9.1 - SDK 10.6) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.tiger (5.9.1 - SDK 10.4) [Click for support]
            /System/Library/Extensions/Seagate Storage Driver.kext/Contents/PlugIns
        [not loaded]    com.seagate.driver.PowSecLeafDriver_10_4 (5.2.6 - SDK 10.4) [Click for support]
        [not loaded]    com.seagate.driver.PowSecLeafDriver_10_5 (5.2.6 - SDK 10.5) [Click for support]
        [not loaded]    com.seagate.driver.SeagateDriveIcons (5.2.6 - SDK 10.4) [Click for support]
    Problem System Launch Daemons: ℹ️
        [running]    com.seagate.TBDecorator.plist [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.nike.nikeplusconnect.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.paceap.eden.licensed.plist [Click for support]
        [loaded]    PACESupport.plist [Click for support]
        [loaded]    tc.tctechnologies.PaeFireStudio.plist [Click for support]
        [loaded]    tc.tctechnologies.Saffire.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        NIHardwareAgent    Application Hidden (/Library/Application Support/Native Instruments/Hardware/NIHardwareAgent.app)
    Internet Plug-ins: ℹ️
        SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        Default Browser: Version: 600 - SDK 10.10
    User internet Plug-ins: ℹ️
        Aspera Web 3.1.0.67054: Version: Unknown - SDK 10.6 [Click for support]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        Native Instruments USB Audio  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 999.35 GB Disk used: 573.74 GB
        Destinations:
            Seagate Backup Plus Drive [Local]
            Total size: 4.00 TB
            Total number of backups: 2
            Oldest backup: 2014-08-25 08:56:21 +0000
            Last backup: 2014-11-16 15:26:36 +0000
            Size of backup disk: Excellent
                Backup size 4.00 TB > (Disk size 999.35 GB X 3)
    Top Processes by CPU: ℹ️
            10%    TweetDeck
             3%    WindowServer
             1%    Sound Forge Pro
             0%    com.apple.WebKit.Networking
             0%    Dropbox
    Top Processes by Memory: ℹ️
        618 MB    TweetDeck
        524 MB    com.apple.WebKit.WebContent
        429 MB    softwareupdated
        215 MB    Safari
        215 MB    Finder
    Virtual Memory Information: ℹ️
        54 MB    Free RAM
        3.14 GB    Active RAM
        3.17 GB    Inactive RAM
        1.43 GB    Wired RAM
        8.58 GB    Page-ins
        423 MB    Page-outs
    Diagnostics Information: ℹ️
        Feb 11, 2015, 10:56:10 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-11-105610_[ redacted].hang
        Feb 10, 2015, 05:35:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Networking_20 15-02-10-173505_[redacted].crash
        Feb 10, 2015, 04:01:03 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Finder_2015-02-10-160103_[reda cted].crash
        Feb 10, 2015, 03:54:44 PM    Self test - passed
        Feb 10, 2015, 09:28:18 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-10-092818_[ redacted].hang
        Feb 10, 2015, 07:35:00 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-10-073500_[ redacted].hang
        Feb 9, 2015, 08:07:10 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-09-200710_[ redacted].hang
        Feb 9, 2015, 08:07:08 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-09-200708_[ redacted].hang
        Feb 9, 2015, 07:27:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AIM_2015-02-09-192742_[redacte d].crash
        Feb 9, 2015, 06:49:47 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-02-09-184947_[reda cted].crash
        Feb 9, 2015, 06:15:19 PM    /Library/Logs/DiagnosticReports/iTunes_2015-02-09-181519_[redacted].hang
        Feb 9, 2015, 05:55:36 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AIM_2015-02-09-175536_[redacte d].crash
        Feb 9, 2015, 12:51:30 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AIM_2015-02-09-125130_[redacte d].crash
        Feb 9, 2015, 12:35:59 PM    /Library/Logs/DiagnosticReports/Sound Forge Pro_2015-02-09-123559_[redacted].cpu_resource.diag [Click for details]
        Feb 9, 2015, 12:26:46 PM    /Library/Logs/DiagnosticReports/iTunes_2015-02-09-122646_[redacted].hang

    I think this is a Crash report
    Date/Time:       2015-02-12 16:32:19 +0000
    OS Version:      10.10.2 (Build 14C109)
    Architecture:    x86_64
    Report Version:  21
    Command:         com.apple.WebKit.WebContent
    Path:            /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.We bKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Version:         10600 (10600.3.18)
    Build Version:   3
    Project Name:    WebKit2
    Source Version:  7600003018000000
    Parent:          launchd [1]
    Responsible:     Safari [3240]
    PID:             4112
    Event:           hang
    Duration:        3.97s (process was unresponsive for 1260 seconds before sampling)
    Steps:           41 (100ms sampling interval)
    Hardware model:  iMac13,1
    Active cpus:     4
    Fan speed:       1399 rpm
    Timeline format: stacks are sorted chronologically
    Use -i and -heavy to re-report with count sorting
    Heaviest stack for the main thread of the target process:
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9]
      41  ??? (com.apple.WebKit.WebContent + 2880) [0x10d1edb40]
      41  xpc_main + 490 (libxpc.dylib + 88733) [0x7fff83cd9a9d]
      41  _xpc_objc_main + 793 (libxpc.dylib + 81650) [0x7fff83cd7ef2]
      41  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff86d3da14]
      41  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff86d52593]
      41  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff86d5e730]
      41  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff86d5ef81]
      41  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8ac6b6ab]
      41  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8ac6b86a]
      41  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8ac6baef]
      41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858]
      41  __CFRunLoopRun + 927 (CoreFoundation + 466495) [0x7fff82747e3f]
      41  __CFRunLoopDoSources0 + 269 (CoreFoundation + 469005) [0x7fff8274880d]
      41  __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (CoreFoundation + 525953) [0x7fff82756681]
      41  ***::RunLoop::performWork(void*) + 34 (JavaScriptCore + 4979298) [0x7fff859e0a62]
      41  ***::RunLoop::performWork() + 423 (JavaScriptCore + 4977559) [0x7fff859e0397]
      41  IPC::Connection::dispatchOneMessage() + 114 (WebKit + 696628) [0x7fff893fe134]
      41  IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::MessageDecoder, std::__1::default_delete<IPC::MessageDecoder> >) + 94 (WebKit + 688060) [0x7fff893fbfbc]
      41  WebKit::WebProcess::didReceiveWebProcessMessage(IPC::Connection*, IPC::MessageDecoder&) + 85 (WebKit + 2077885) [0x7fff8954f4bd]
      41  void IPC::handleMessageVariadic<Messages::WebProcess::InitializeWebProcess, WebKit::WebProcess, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)>(IPC::MessageDecoder&, WebKit::WebProcess*, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)) + 96 (WebKit + 2080768) [0x7fff89550000]
      41  WebKit::WebProcess::initializeWebProcess(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&) + 951 (WebKit + 2029261) [0x7fff895436cd]
      41  WebKit::WebProcess::ensureNetworkProcessConnection() + 93 (WebKit + 105701) [0x7fff8936dce5]
      41  bool IPC::Connection::sendSync<Messages::WebProcessProxy::GetNetworkProcessConnectio n>(Messages::WebProcessProxy::GetNetworkProcessConnection&&, Messages::WebProcessProxy::GetNetworkProcessConnection::Reply&&, unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 127 (WebKit + 2037397) [0x7fff89545695]
      41  IPC::Connection::sendSyncMessage(unsigned long long, std::__1::unique_ptr<IPC::MessageEncoder, std::__1::default_delete<IPC::MessageEncoder> >, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 432 (WebKit + 692242) [0x7fff893fd012]
      41  IPC::Connection::waitForSyncReply(unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 230 (WebKit + 693010) [0x7fff893fd312]
      41  ***::BinarySemaphore::wait(double) + 69 (JavaScriptCore + 1517925) [0x7fff85693965]
      41  ***::ThreadCondition::timedWait(***::Mutex&, double) + 63 (JavaScriptCore + 84783) [0x7fff85535b2f]
      41  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff87fbe136]
    *41  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80f6491c]
    Process:         com.apple.WebKit.WebContent [4112]
    Path:            /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.We bKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Architecture:    x86_64
    Parent:          launchd [1]
    Responsible:     Safari [3240]
    UID:             501
    Sudden Term:     Dirty (allows idle exit)
    Task size:       4527 pages (+6)
    Note:            Unresponsive for 1260 seconds before sampling
    Note:            2 idle work queue threads omitted
      Thread 0xeb94e      DispatchQueue 1     41 samples (1-41)   priority 37
      <thread QoS user initiated, boosted, received importance donation from Safari [3240], received importance donation from WindowServer [146], IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (com.apple.WebKit.WebContent + 2880) [0x10d1edb40] 1-41
          41  xpc_main + 490 (libxpc.dylib + 88733) [0x7fff83cd9a9d] 1-41
            41  _xpc_objc_main + 793 (libxpc.dylib + 81650) [0x7fff83cd7ef2] 1-41
              41  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff86d3da14] 1-41
                41  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff86d52593] 1-41
                  41  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff86d5e730] 1-41
                    41  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff86d5ef81] 1-41
                      41  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8ac6b6ab] 1-41
                        41  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8ac6b86a] 1-41
                          41  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8ac6baef] 1-41
                            41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                              41  __CFRunLoopRun + 927 (CoreFoundation + 466495) [0x7fff82747e3f] 1-41
                                41  __CFRunLoopDoSources0 + 269 (CoreFoundation + 469005) [0x7fff8274880d] 1-41
                                  41  __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 (CoreFoundation + 525953) [0x7fff82756681] 1-41
                                    41  ***::RunLoop::performWork(void*) + 34 (JavaScriptCore + 4979298) [0x7fff859e0a62] 1-41
                                      41  ***::RunLoop::performWork() + 423 (JavaScriptCore + 4977559) [0x7fff859e0397] 1-41
                                        41  IPC::Connection::dispatchOneMessage() + 114 (WebKit + 696628) [0x7fff893fe134] 1-41
                                          41  IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::MessageDecoder, std::__1::default_delete<IPC::MessageDecoder> >) + 94 (WebKit + 688060) [0x7fff893fbfbc] 1-41
                                            41  WebKit::WebProcess::didReceiveWebProcessMessage(IPC::Connection*, IPC::MessageDecoder&) + 85 (WebKit + 2077885) [0x7fff8954f4bd] 1-41
                                              41  void IPC::handleMessageVariadic<Messages::WebProcess::InitializeWebProcess, WebKit::WebProcess, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)>(IPC::MessageDecoder&, WebKit::WebProcess*, void (WebKit::WebProcess::*)(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&)) + 96 (WebKit + 2080768) [0x7fff89550000] 1-41
                                                41  WebKit::WebProcess::initializeWebProcess(WebKit::WebProcessCreationParameters const&, IPC::MessageDecoder&) + 951 (WebKit + 2029261) [0x7fff895436cd] 1-41
                                                  41  WebKit::WebProcess::ensureNetworkProcessConnection() + 93 (WebKit + 105701) [0x7fff8936dce5] 1-41
                                                    41  bool IPC::Connection::sendSync<Messages::WebProcessProxy::GetNetworkProcessConnectio n>(Messages::WebProcessProxy::GetNetworkProcessConnection&&, Messages::WebProcessProxy::GetNetworkProcessConnection::Reply&&, unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 127 (WebKit + 2037397) [0x7fff89545695] 1-41
                                                      41  IPC::Connection::sendSyncMessage(unsigned long long, std::__1::unique_ptr<IPC::MessageEncoder, std::__1::default_delete<IPC::MessageEncoder> >, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 432 (WebKit + 692242) [0x7fff893fd012] 1-41
                                                        41  IPC::Connection::waitForSyncReply(unsigned long long, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >, unsigned int) + 230 (WebKit + 693010) [0x7fff893fd312] 1-41
                                                          41  ***::BinarySemaphore::wait(double) + 69 (JavaScriptCore + 1517925) [0x7fff85693965] 1-41
                                                            41  ***::ThreadCondition::timedWait(***::Mutex&, double) + 63 (JavaScriptCore + 84783) [0x7fff85535b2f] 1-41
                                                              41  __psynch_cvwait + 10 (libsystem_kernel.dylib + 90422) [0x7fff87fbe136] 1-41
                                                               *41  psynch_cvcontinue + 0 (pthread + 26908) [0xffffff7f80f6491c] 1-41
      Thread 0xeb954      DispatchQueue 2     41 samples (1-41)   priority 46
      <thread QoS user interactive, boosted, received importance donation from Safari [3240], received importance donation from WindowServer [146], IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xeb99f      41 samples (1-41)   priority 46
      <thread QoS user interactive, boosted, received importance donation from Safari [3240], received importance donation from WindowServer [146], IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  _NSEventThread + 137 (AppKit + 1602363) [0x7fff86ec233b] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Binary Images:
             0x10d1ed000 -        0x10d1edfff  com.apple.WebKit.WebContent 10600 (10600.3.18) <1049A240-EC53-3714-8209-F5019FC19A02>  /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.We bKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)             <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)            <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff83cc4000 -     0x7fff83cecfff  libxpc.dylib (559.10.3)                        <876216DC-D5D3-381E-8AF9-49AE464E5107>  /usr/lib/system/libxpc.dylib
          0x7fff85521000 -     0x7fff85a34fff  com.apple.JavaScriptCore 10600 (10600.3.13)    <C0C3246C-D26F-3440-AC75-81CFFA4F9C91>  /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
          0x7fff86d3b000 -     0x7fff87885fff  com.apple.AppKit 6.9 (1344.72)                 <44EF7DEB-3072-3515-9F34-2857D557E828>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)            <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff89354000 -     0x7fff8961afff  com.apple.WebKit 10600 (10600.3.18)            <F8E36318-4F4C-348B-B1DE-D4BE035036AD>  /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)                        <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8ac3d000 -     0x7fff8af41fff  com.apple.HIToolbox 2.1.1 (757.3)              <D827FC03-5668-3AA4-AF0E-46EEF7358EEA>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)                    <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff7f80f5e000 - 0xffffff7f80f66fff  com.apple.kec.pthread 1.0 (1)                  <8365956C-8613-3ED4-BC64-0D8570D2089F>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                            <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         accountsd [294]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1881 pages
      Thread 0xd6a        DispatchQueue 1     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (accountsd + 2741) [0x10535cab5] 1-41
          41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
            41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
              41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                 *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0xd6f        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xf16ab      41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
    *41  wq_unsuspend_continue + 0 (pthread + 18452) [0xffffff7f80f62814] (suspended) 1-41
      Binary Images:
             0x10535c000 -        0x10535cfff  accountsd (504.7)                   <FE573A9B-A4D9-3E08-9F08-D98F65D9E14D>  /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff7f80f5e000 - 0xffffff7f80f66fff  com.apple.kec.pthread 1.0 (1)       <8365956C-8613-3ED4-BC64-0D8570D2089F>  /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AirPlayUIAgent [1061]
    Path:            /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       2043 pages
      Thread 0x1abf5      DispatchQueue 1     41 samples (1-41)   priority 46
      <thread QoS user interactive, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  NSApplicationMain + 1832 (AppKit + 10772) [0x7fff86d3da14] 1-41
          41  -[NSApplication run] + 594 (AppKit + 95635) [0x7fff86d52593] 1-41
            41  -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194 (AppKit + 145200) [0x7fff86d5e730] 1-41
              41  _DPSNextEvent + 964 (AppKit + 147329) [0x7fff86d5ef81] 1-41
                41  _BlockUntilNextEventMatchingListInModeWithFilter + 71 (HIToolbox + 190123) [0x7fff8ac6b6ab] 1-41
                  41  ReceiveNextEventCommon + 431 (HIToolbox + 190570) [0x7fff8ac6b86a] 1-41
                    41  RunCurrentEventLoopInMode + 235 (HIToolbox + 191215) [0x7fff8ac6baef] 1-41
                      41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                        41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                          41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                            41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                             *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x1ac6b      DispatchQueue 2     41 samples (1-41)   priority 46
      <thread QoS user interactive, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x1acb3      41 samples (1-41)   priority 46
      <thread QoS user interactive, IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  _NSEventThread + 137 (AppKit + 1602363) [0x7fff86ec233b] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Binary Images:
             0x10ae97000 -        0x10ae9cfff  com.apple.AirPlayUIAgent 2.0 (215.15) <24B86EE0-207E-3D74-9DE9-3338EA4163B0>  /System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)    <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)   <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff86d3b000 -     0x7fff87885fff  com.apple.AppKit 6.9 (1344.72)        <44EF7DEB-3072-3515-9F34-2857D557E828>  /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)   <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)               <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8ac3d000 -     0x7fff8af41fff  com.apple.HIToolbox 2.1.1 (757.3)     <D827FC03-5668-3AA4-AF0E-46EEF7358EEA>  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)           <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                   <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         airportd [30]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       1840 pages
      Thread 0x1eb        DispatchQueue 1     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (airportd + 235530) [0x10abe180a] 1-41
          41  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1466959) [0x7fff88b1d24f] 1-41
            41  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436297) [0x7fff88a21849] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x433        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  _dispatch_mgr_invoke + 176 (libdispatch.dylib + 19786) [0x7fff8f0e5d4a] 1-41
          41  __select_nocancel + 10 (libsystem_kernel.dylib + 91154) [0x7fff87fbe412] 1-41
           *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Thread 0x5f2        41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x10aba8000 -        0x10ac87fff  airportd (1010.64)                  <19F41714-1140-363A-A12F-D0CAE963A4CD>  /usr/libexec/airportd
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         amfid [291]
    Path:            /usr/libexec/amfid
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean (allows idle exit)
    Task size:       1221 pages
      Thread 0xd53        DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xd54        DispatchQueue 11    41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91970) [0x7fff87fbe742] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x10cbc9000 -        0x10cbcafff  amfid (133.1.1)                     <6DFB17C8-CB07-3730-83A8-391C498C7EB6>  /usr/libexec/amfid
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         appleeventsd [24]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             55
    Task size:       1237 pages (-9)
    Note:            3 idle work queue threads omitted
      Thread 0x41b        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x41c        DispatchQueue 11    41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91970) [0x7fff87fbe742] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x100a9e000 -        0x100a9efff  appleeventsd (681)                  <FB31726D-933F-32CD-BE6B-F8598AA15431>  /System/Library/CoreServices/appleeventsd
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleIDAuthAgent [320]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       2264 pages
      Thread 0xfa2        DispatchQueue 2     41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x10dc       DispatchQueue 19    41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  start_wqthread + 13 (libsystem_pthread.dylib + 5133) [0x7fff819ec40d] 1-41
        41  _pthread_wqthread + 729 (libsystem_pthread.dylib + 13879) [0x7fff819ee637] 1-41
          41  _dispatch_worker_thread3 + 91 (libdispatch.dylib + 77796) [0x7fff8f0f3fe4] 1-41
            41  _dispatch_root_queue_drain + 463 (libdispatch.dylib + 18103) [0x7fff8f0e56b7] 1-41
              41  _dispatch_queue_invoke + 202 (libdispatch.dylib + 28364) [0x7fff8f0e7ecc] 1-41
                41  _dispatch_queue_drain + 571 (libdispatch.dylib + 20820) [0x7fff8f0e6154] 1-41
                  41  _dispatch_source_invoke + 412 (libdispatch.dylib + 22059) [0x7fff8f0e662b] 1-41
                    41  _dispatch_source_latch_and_call + 721 (libdispatch.dylib + 51326) [0x7fff8f0ed87e] 1-41
                      41  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff8f0e2c13] 1-41
                        41  _dispatch_after_timer_callback + 77 (libdispatch.dylib + 58744) [0x7fff8f0ef578] 1-41
                          41  _dispatch_client_callout + 8 (libdispatch.dylib + 7187) [0x7fff8f0e2c13] 1-41
                            41  _dispatch_call_block_and_release + 12 (libdispatch.dylib + 25379) [0x7fff8f0e7323] 1-41
                              41  ??? (AppleIDAuthAgent + 13366) [0x1091de436] 1-41
                                41  semaphore_timedwait_trap + 10 (libsystem_kernel.dylib + 70962) [0x7fff87fb9532] 1-41
                                 *41  semaphore_wait_continue + 0 (kernel + 1373536) [0xffffff800034f560] 1-41
      Thread 0xfa5        41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __sigsuspend_nocancel + 10 (libsystem_kernel.dylib + 91970) [0x7fff87fbe742] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Thread 0x1137       41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
        41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
          41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
           *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x1146       41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  __NSThread__main__ + 1345 (Foundation + 428298) [0x7fff88a1f90a] 1-41
              41  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658560) [0x7fff88f7dc80] 1-41
                41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                  41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                    41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                      41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                       *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x1257       41 samples (1-41)   priority 4
      <thread QoS background, darwinbg, timers coalesced, IO policy utility>
      41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x1091db000 -        0x109216fff  AppleIDAuthAgent (640.3)              <45629774-D804-35A2-B251-D430871E2FA8>  /System/Library/CoreServices/AppleIDAuthAgent
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)    <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)   <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)   <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)    <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff88edd000 -     0x7fff890e0fff  com.apple.CFNetwork 720.2.4 (720.2.4) <E550C671-930F-3B12-8798-23898473E179>  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)           <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                   <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleMobileDeviceHelper [3343]
    Path:            /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/Apple MobileDeviceHelper.app/Contents/MacOS/AppleMobileDeviceHelper
    Architecture:    x86_64
    Parent:          iTunes [3338]
    Responsible:     iTunes [3338]
    UID:             501
    Task size:       1578 pages
      Thread 0xb8048      DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, IO policy important>
      41  ??? [0x100001e64] 1-41
        41  ??? [0x100002c22] 1-41
          41  ??? [0x10000b95a] 1-41
            41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
             *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Thread 0xb804b      DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0xb8058      41 samples (1-41)   priority 31
      <thread QoS legacy, IO policy important>
      41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
       *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleSpell [458]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       5105 pages
      Thread 0x200a       DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (AppleSpell + 7362) [0x10c42fcc2] 1-41
          41  -[NSSpellServer run] + 73 (Foundation + 1671256) [0x7fff88b4f058] 1-41
            41  CFRunLoopRun + 97 (CoreFoundation + 1212145) [0x7fff827fdef1] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x200e       DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Binary Images:
             0x10c42e000 -        0x10c511fff  com.apple.AppleSpell 2.2.2 (274.2)  <B6BE2085-9EC6-3CCC-B8EC-C96DD7A182DA>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleSpell [2021]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       679 pages
      Thread 0x6a8ca      DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (AppleSpell + 7362) [0x10c5f3cc2] 1-41
          41  -[NSSpellServer run] + 73 (Foundation + 1671256) [0x7fff88b4f058] 1-41
            41  CFRunLoopRun + 97 (CoreFoundation + 1212145) [0x7fff827fdef1] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x6a8e6      DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Binary Images:
             0x10c5f2000 -        0x10c6d5fff  com.apple.AppleSpell 2.2.2 (274.2)  <B6BE2085-9EC6-3CCC-B8EC-C96DD7A182DA>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         AppleSpell [2616]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             501
    Sudden Term:     Clean
    Task size:       675 pages
      Thread 0x7ad1c      DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (AppleSpell + 7362) [0x108067cc2] 1-41
          41  -[NSSpellServer run] + 73 (Foundation + 1671256) [0x7fff88b4f058] 1-41
            41  CFRunLoopRun + 97 (CoreFoundation + 1212145) [0x7fff827fdef1] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x7ad55      DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Binary Images:
             0x108066000 -        0x108149fff  com.apple.AppleSpell 2.2.2 (274.2)  <B6BE2085-9EC6-3CCC-B8EC-C96DD7A182DA>  /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152) <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib
          0x7fff889b7000 -     0x7fff88ce5fff  com.apple.Foundation 6.9 (1152.14)  <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA>  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ab00000 -     0x7fff8ab03fff  libdyld.dylib (353.2.1)             <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6>  /usr/lib/system/libdyld.dylib
          0x7fff8f0e1000 -     0x7fff8f10bfff  libdispatch.dylib (442.1.4)         <502CF32B-669B-3709-8862-08188225E4F0>  /usr/lib/system/libdispatch.dylib
    *0xffffff8000200000 - 0xffffff80009fffff  kernel (2782.10.72)                 <DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5>  /System/Library/Kernels/kernel
    Process:         apsd [52]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2477 pages
      Thread 0x201        DispatchQueue 1     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  start + 1 (libdyld.dylib + 13769) [0x7fff8ab035c9] 1-41
        41  ??? (apsd + 372691) [0x1099effd3] 1-41
          41  -[NSRunLoop(NSRunLoop) run] + 74 (Foundation + 1466959) [0x7fff88b1d24f] 1-41
            41  -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 (Foundation + 436297) [0x7fff88a21849] 1-41
              41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                  41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                    41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                     *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x4b4        DispatchQueue 2     41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  _dispatch_mgr_thread + 52 (libdispatch.dylib + 19050) [0x7fff8f0e5a6a] 1-41
        41  kevent64 + 10 (libsystem_kernel.dylib + 94770) [0x7fff87fbf232] 1-41
         *41  ??? (kernel + 5988368) [0xffffff80007b6010] 1-41
      Thread 0x4f5        41 samples (1-41)   priority 63
      <timers coalesced, IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  __NSThread__main__ + 1345 (Foundation + 428298) [0x7fff88a1f90a] 1-41
              41  +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 (CFNetwork + 658560) [0x7fff88f7dc80] 1-41
                41  CFRunLoopRunSpecific + 296 (CoreFoundation + 464984) [0x7fff82747858] 1-41
                  41  __CFRunLoopRun + 1371 (CoreFoundation + 466939) [0x7fff82747ffb] 1-41
                    41  __CFRunLoopServiceMachPort + 212 (CoreFoundation + 469812) [0x7fff82748b34] 1-41
                      41  mach_msg_trap + 10 (libsystem_kernel.dylib + 70878) [0x7fff87fb94de] 1-41
                       *41  ipc_mqueue_receive_continue + 0 (kernel + 1165472) [0xffffff800031c8a0] 1-41
      Thread 0x9d7        41 samples (1-41)   priority 31
      <thread QoS legacy, timers coalesced, IO policy important>
      41  thread_start + 13 (libsystem_pthread.dylib + 5149) [0x7fff819ec41d] 1-41
        41  _pthread_start + 176 (libsystem_pthread.dylib + 12773) [0x7fff819ee1e5] 1-41
          41  _pthread_body + 131 (libsystem_pthread.dylib + 12904) [0x7fff819ee268] 1-41
            41  __select + 10 (libsystem_kernel.dylib + 91130) [0x7fff87fbe3fa] 1-41
             *41  ??? (kernel + 6142240) [0xffffff80007db920] 1-41
      Binary Images:
             0x109995000 -        0x109a5bfff  apsd (275.4)                          <045087F6-4CA3-3CC8-9ADE-F3BFED10F03E>  /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff819eb000 -     0x7fff819f4fff  libsystem_pthread.dylib (105.10.1)    <3103AA7F-3BAE-3673-9649-47FFD7E15C97>  /usr/lib/system/libsystem_pthread.dylib
          0x7fff826d6000 -     0x7fff82a6cfff  com.apple.CoreFoundation 6.9 (1152)   <CBD1591C-405E-376E-87E9-B264610EBF49>  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff87fa8000 -     0x7fff87fc5fff  libsystem_kernel.dylib (2782.10.72)   <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73>  /usr/lib/system/libsystem_kernel.dylib

  • Getting dump while posting goods receipt through TCode migo

    Hi,
    I am getting dump after I click on post button in TCode 'MIGO'.
    Short text
        The current application triggered a termination with a short dump.
    Short text of error message:
    Document number 9 5000000000 2010 was already assigned
    Long text of error message:
      Diagnosis
          Document number 5000000000 in company code 9 and fiscal year 2010
          has already been assigned.
      System Response
          Termination of processing.
      Procedure
          Check document number range 50 in company code 9 and fiscal year
          2010 and correct the number range status if necessary.
    Technical information about the message:
    Message class....... "F5"
    Number.............. 152
    Variable 1.......... 9
    Variable 2.......... 5000000000
    Variable 3.......... 2010
    Variable 4.......... 50
    So please help me what I can do?
    Thanks,
    Moderator Message: The short dump is self-explanatory.
    Edited by: kishan P on Nov 18, 2010 11:17 AM

    Hi,
    plx try to chane the status in IE02
    Go to edit ,manual options , in that delete the HU assignemtn
    and then save it and come out of it ..
    Hope that helps

  • Getting dump after pressing save button in web interface

    Hi all!
    When i press save button in my web interface. i'm getting dump:
    The following error text was processed in the system EDW : Syntax error in program GP1ARALDY6TX0M51YNJ5FNELBCI .
    The error occurred on the application server kurmutau_EDW_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Form: VALUE_TO_SID_CONVERT1 of program SAPLRRSI
    Form: VALUE_TO_SID_CONVERT1 of program SAPLRRSI
    Form: VALUE_TO_SID_CONVERT of program SAPLRRSI
    Function: RRSI_VAL_SID_SINGLE_CONVERT of program SAPLRRSI
    Form: GET_SID of program GP5VHI3S252BZAWN36WKBAS71QH
    Form: GET_DIMID_DA of program GP5VHI3S252BZAWN36WKBAS71QH
    Form: WRITEIC of program GP5VHI3S252BZAWN36WKBAS71QH
    Form: WRITEIC of program GPEP1KAM5Q04J9717R7T5PDWE0W
    Form: APO_WRITEIC of program GPEP1KAM5Q04J9717R7T5PDWE0W
    Method: _WRITE_TO_CUBE of program CL_RSDRI_INFOCUBE=============CP
    Infocube and web interface were imported from BW3.5 system...
    How can i solve this problem?
    Thanks in advance...

    Go in ST22 and post the short dump to better ubderstand.
    Regards

Maybe you are looking for

  • Pages Documents created on my iPad won't open on my MBP

    My daughter has a MBP running 10.8.3 with Pages '09 v4.3. and an iPad 2 running 6.1.3 with Pages  1.7.2 that she takes to Uni. Pages documents that she creates on her MBP and saves to iCloud will open on both her MBP and her iPad but Pages documents

  • Encoder crashes and will not open anymore

    I have worked on encoder, trying out some new codecs (cineform) - I had a crash and since then, encoder will not open anymore. Is there a way to trash the prefs? I can only find the plist, is there anything else? Thanks!

  • Ipod does not play anymore

    My ipod recently stopped playing music. The icon will be on as if it was playing but it is not outputting any sound. I tried my car speakers and my computer speakers. I tried resetting it as well but to no avail. Any suggestions on what i can do? Tha

  • Re installation of print head

    Problem re installing printhead after cleaning

  • Sequence passfail status

    The TS code I need to modify needs to have a subsequence and the subsequence will have about 5 or 6 verify steps. What is the standard method for rolling up the results of all these Verify statements to give an overall pass/fail value for the subSequ