Help on assets (FI-AA) reporting fit/gap

Hello,
I've a few reporting requirements on which I would appreciate your help to assess if is there any r/3 standard report or BI business content that can fit (or can be enhanced to fit) and deliver the info needed.
The reporting requirements are the following:
1- Costs of Sale assets Report: A report showing the costs incurred in selling an asset vs the asset costs and the sale proceeds.
2- Assets transferred into stock Report: Periodic report showing asset details & values having moved them from Fixed Assets into an inventory/stock environment.
3- Intercompany asset sale/purchase: Report showing asset that have been sold/purchased from one company to another company.
4- Asset status report: Report to show where the asset is and its status (ie AuC, in stock, capitalised, not depreciating etc).
5- Asset tracking report: Need a report that can list assets and all the tracking attributes eg serial number, location etc
I will appreciate all the help that you can provide (sap r/3 transaction or BI content technical name).
Kind regards,
Nuno

Hi
3) The standard reports under Day-to-Day Activities cover this. Just set the parameters to limit it to Intercompany Transaction types.
Kind regards

Similar Messages

  • Help for asset aqusition report

    hi,
    here i am sending my code for asset aqusition report but not getting right output ie i am not able to get all the line items for particular asset no.
    bcoz an asset has different line items with different doc no.
    REPORT  XXXXXX                            .
    TABLES : sflight.
    TYPE-POOLS: slis.
    DATA : w_repid LIKE sy-repid.
    w_repid = sy-repid.
    DATA : BEGIN OF it_sflight OCCURS 0,
           checkbox(1),
           carrid LIKE sflight-carrid,
           END OF it_sflight.
    *layout
    DATA: wa_layout           TYPE slis_layout_alv.
    *field catalog
    DATA: it_fieldcatalog TYPE slis_t_fieldcat_alv,
          wa_fieldcatalog TYPE slis_fieldcat_alv.
    START-OF-SELECTION.
      SELECT carrid FROM sflight INTO CORRESPONDING FIELDS OF TABLE
    it_sflight.
    END-OF-SELECTION.
      CLEAR it_fieldcatalog.
      REFRESH it_fieldcatalog.
      wa_fieldcatalog-fieldname = 'CHECKBOX'.
      wa_fieldcatalog-outputlen = '3'.
      wa_fieldcatalog-col_pos = '1'.
      wa_fieldcatalog-seltext_m   = 'Chk'.
      wa_fieldcatalog-checkbox = 'X'.
      wa_fieldcatalog-edit = 'X'.
      APPEND  wa_fieldcatalog TO it_fieldcatalog.
      CLEAR  wa_fieldcatalog.
      wa_fieldcatalog-fieldname = 'CARRID'.
      wa_fieldcatalog-outputlen = '10'.
      wa_fieldcatalog-col_pos = '2'.
      wa_fieldcatalog-seltext_m   = 'Carrid'.
      APPEND  wa_fieldcatalog TO it_fieldcatalog.
      CLEAR  wa_fieldcatalog.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program      = w_repid
          is_layout               = wa_layout
          i_callback_user_command = 'USER_COMMAND'
          it_fieldcat           = it_fieldcatalog
        TABLES
          t_outtab                = it_sflight
        EXCEPTIONS
          program_error           = 1
          OTHERS                  = 2.
    *&      Form  USER_COMMAND
    FORM user_command USING p_ucomm TYPE sy-ucomm
                          p_selfld TYPE slis_selfield.
      CASE p_ucomm.
        WHEN '&DATA_SAVE'.
          DATA ref1 TYPE REF TO cl_gui_alv_grid.
          CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
            IMPORTING
              e_grid = ref1.
          CALL METHOD ref1->check_changed_data.
          LOOP AT it_sflight WHERE checkbox = 'X'.
            DELETE it_sflight INDEX sy-tabix.
          ENDLOOP.
          p_selfld-refresh = 'X'.
      ENDCASE.
    ENDFORM.                    "user_command
    Check the following code...
    DATA: BEGIN OF itab OCCURS 0,
    check,
    value(20),
    END OF itab.
    SET PF-STATUS 'TEST1'.
    itab-value = 'ETSAT'.
    APPEND itab.
    itab-value = 'ETSATADSF'.
    APPEND itab.
    itab-value = 'ETSAT'.
    APPEND itab.
    LOOP AT itab.
    WRITE: / itab-check AS CHECKBOX,
    itab-value.
    ENDLOOP.
    AT USER-COMMAND.
    DATA: wa LIKE itab.
    DATA: itab_download LIKE itab OCCURS 0 WITH HEADER LINE.
    IF sy-ucomm = 'DOWNLOAD'.
    DESCRIBE TABLE itab.
    DO sy-tfill TIMES.
    READ LINE sy-index FIELD VALUE itab-check.
    IF sy-subrc <> 0.
    EXIT.
    ENDIF.
    CHECK itab-check = 'X'.
    itab_download-value = itab-value.
    APPEND itab_download.
    ENDDO.
    DOWNLOAD
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    filename = 'C:\TEST.XLS '
    TABLES
    data_tab = itab_download.
    ENDIF.
    Thanks
    Shobi

    Hi,
      One the guy has same report as problem,  ok, my friend Eswar as given the code for that, i will send you that, hope it is helpful
    <b>Please check with this code now:
    TYPE-POOLS : SLIS.
    TABLES : ANLA,                     "ASSET MASTER RECORD-SEGMENT
            ANLZ.                     "time dependent asset allocations
    DATA : BEGIN OF T_ANLA OCCURS 0,
          BUKRS LIKE ANLA-BUKRS,
          ANLN1 LIKE ANLA-ANLN1,
          ANLN2 LIKE ANLA-ANLN2,
          AKTIV LIKE ANLA-AKTIV,
          TXT50 LIKE ANLA-TXT50,
          ZUGDT LIKE ANLA-ZUGDT,
          MENGE LIKE ANLA-MENGE,
          MEINS LIKE ANLA-MEINS,
          END OF T_ANLA.
    DATA : BEGIN OF T_ANLZ OCCURS 0,
          BUKRS LIKE ANLZ-BUKRS,
          ANLN1 LIKE ANLZ-ANLN1,
          ANLN2 LIKE ANLZ-ANLN2,
          GSBER LIKE ANLZ-GSBER,
          KOSTL LIKE ANLZ-KOSTL,
          STORT LIKE ANLZ-STORT,
          RAUMN LIKE ANLZ-RAUMN,
          KFZKZ LIKE ANLZ-KFZKZ,
          END OF T_ANLZ.
    DATA : BEGIN OF T_ANEK OCCURS 0,
          BUKRS LIKE ANEK-BUKRS,
          ANLN1 LIKE ANEK-ANLN1,
          ANLN2 LIKE ANEK-ANLN2,
          BELNR LIKE ANEK-BELNR,
          BUDAT LIKE ANEK-BUDAT,
          XBLNR LIKE ANEK-XBLNR,
          SGTXT LIKE ANEK-SGTXT,
          END OF T_ANEK.
    DATA : BEGIN OF T_ANLC OCCURS 0,
          BUKRS LIKE ANLC-BUKRS,
          ANLN1 LIKE ANLC-ANLN1,
          ANLN2 LIKE ANLC-ANLN2,
          KANSW LIKE ANLC-KANSW,
          KNAFA LIKE ANLC-KNAFA,
          AAFAP LIKE ANLC-AAFAP,
          AFABE LIKE ANLC-AFABE,
          GJAHR LIKE ANLC-GJAHR,
          END OF T_ANLC.
    DATA : BEGIN OF IT_FINAL OCCURS 0,
           ANLN1 LIKE ANLA-ANLN1,
           ANLN2 LIKE ANLA-ANLN2,
           AKTIV LIKE ANLA-AKTIV,
           TXT50 LIKE ANLA-TXT50,
           ZUGDT LIKE ANLA-ZUGDT,
           MENGE LIKE ANLA-MENGE,
           MEINS LIKE ANLA-MEINS,
           GSBER LIKE ANLZ-GSBER,
           KOSTL LIKE ANLZ-KOSTL,
           STORT LIKE ANLZ-STORT,
           RAUMN LIKE ANLZ-RAUMN,
           KFZKZ LIKE ANLZ-KFZKZ,
           BELNR LIKE ANEK-BELNR,
           BUDAT LIKE ANEK-BUDAT,
           XBLNR LIKE ANEK-XBLNR,
           SGTXT LIKE ANEK-SGTXT,
           KANSW LIKE ANLC-KANSW,
           KNAFA LIKE ANLC-KNAFA,
           AAFAP LIKE ANLC-AAFAP,
           GJAHR LIKE ANEK-GJAHR,
           END OF IT_FINAL.
    DATA : LINE_COLOR(4) TYPE C.
    DATA : FIELDCATALOG TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_LAYOUT TYPE SLIS_LAYOUT_ALV.
    SELECTION-SCREEN : BEGIN OF BLOCK B_FA WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_BUKRS FOR ANLA-BUKRS DEFAULT 'ML',
                    S_ANLN1 FOR ANLA-ANLN1,
                    S_ANLN2 FOR ANLA-ANLN2.
                    s_gjahr FOR anlc-gjahr.
    SELECTION-SCREEN : END OF BLOCK B_FA.
    *SELECT-OPTIONS : s_belnr FOR anek-belnr.
    SELECT BUKRS ANLN1 ANLN2 AKTIV TXT50 ZUGDT MENGE MEINS
          FROM ANLA
          INTO CORRESPONDING FIELDS OF TABLE T_ANLA
          WHERE ANLN1 IN S_ANLN1
          AND   ANLN2 IN S_ANLN2
          AND   BUKRS IN S_BUKRS.
    CHECK: NOT T_ANLA[] IS INITIAL.
    SELECT BUKRS ANLN1 ANLN2 GSBER KOSTL STORT RAUMN KFZKZ
          FROM ANLZ
          INTO CORRESPONDING FIELDS OF TABLE T_ANLZ
          FOR ALL ENTRIES IN T_ANLA
          WHERE ANLN1 = T_ANLA-ANLN1
          AND   ANLN2 = T_ANLA-ANLN2
          AND   BUKRS = T_ANLA-BUKRS.
    *IF sy-subrc EQ 0.
    SELECT BUKRS ANLN1 ANLN2 BELNR BUDAT XBLNR SGTXT GJAHR
          FROM ANEK
          INTO CORRESPONDING FIELDS OF TABLE T_ANEK
          FOR ALL ENTRIES IN T_ANLA
          WHERE ANLN1 = T_ANLA-ANLN1
          AND   ANLN2 = T_ANLA-ANLN2
          AND   BUKRS = T_ANLA-BUKRS.
          AND   gjahr = t_anek-gjahr.
    *ENDIF.
    SELECT BUKRS ANLN1 ANLN2 KANSW KNAFA AAFAP AFABE GJAHR
          FROM ANLC
          INTO CORRESPONDING FIELDS OF TABLE T_ANLC
          FOR ALL ENTRIES IN T_ANLA
          WHERE ANLN1 = T_ANLA-ANLN1
          AND   ANLN2 = T_ANLA-ANLN2
          AND   BUKRS = T_ANLA-BUKRS
          AND   GJAHR = T_ANLC-GJAHR.
          AND   afabe = '01'.
    LOOP AT T_ANLA.
      MOVE : T_ANLA-ANLN1 TO IT_FINAL-ANLN1,
             T_ANLA-ANLN2 TO IT_FINAL-ANLN2,
             T_ANLA-AKTIV TO IT_FINAL-AKTIV,
             T_ANLA-TXT50 TO IT_FINAL-TXT50,
             T_ANLA-ZUGDT TO IT_FINAL-ZUGDT,
             T_ANLA-MENGE TO IT_FINAL-MENGE,
             T_ANLA-MEINS TO IT_FINAL-MEINS.
      READ TABLE T_ANLZ WITH KEY BUKRS = T_ANLA-BUKRS
                                ANLN1 = T_ANLA-ANLN1
                                ANLN2 = T_ANLA-ANLN2 BINARY SEARCH.
      IF SY-SUBRC EQ 0.
        MOVE : T_ANLZ-GSBER TO IT_FINAL-GSBER,
               T_ANLZ-KOSTL TO IT_FINAL-KOSTL,
               T_ANLZ-STORT TO IT_FINAL-STORT,
               T_ANLZ-RAUMN TO IT_FINAL-RAUMN,
               T_ANLZ-KFZKZ TO IT_FINAL-KFZKZ.
      ENDIF.
      READ TABLE T_ANLC WITH KEY BUKRS = T_ANLA-BUKRS
                                ANLN1 = T_ANLA-ANLN1
                                ANLN2 = T_ANLA-ANLN2 BINARY SEARCH.
      IF SY-SUBRC EQ 0.
        MOVE : T_ANLC-KANSW TO IT_FINAL-KANSW,
               T_ANLC-KNAFA TO IT_FINAL-KNAFA,
               T_ANLC-AAFAP TO IT_FINAL-AAFAP.
      ENDIF.
    *SORT t_anla.
    *READ TABLE T_ANEK WITH KEY BUKRS = T_ANLA-BUKRS
                             ANLN1 = T_ANLA-ANLN1
                             ANLN2 = T_ANLA-ANLN2 BINARY SEARCH.
    *IF SY-SUBRC EQ 0.
    LOOP AT T_ANEK WHERE BUKRS = T_ANLA-BUKRS AND ANLN1 = T_ANLA-ANLN1 AND
    ANLN2 = T_ANLA-ANLN2.
        MOVE : T_ANEK-BELNR TO IT_FINAL-BELNR,
               T_ANEK-BUDAT TO IT_FINAL-BUDAT,
               T_ANEK-XBLNR TO IT_FINAL-XBLNR,
               T_ANEK-SGTXT TO IT_FINAL-SGTXT.
    *ENDIF.
        APPEND IT_FINAL.
      ENDLOOP.
    ENDLOOP.
    *ENDIF.
    PERFORM BUILD_FIELDCATALOG.
    PERFORM DISPLAY_ALV_REPORT.
    PERFORM BUILD_LAYOUT.
          FORM BUILD_FIELDCATALOG                                       *
    FORM BUILD_FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'ANLN1'.
      FIELDCATALOG-SELTEXT_M = 'ASSET MAIN NO'.
      FIELDCATALOG-COL_POS   = 0.
      FIELDCATALOG-OUTPUTLEN = 14.
      FIELDCATALOG-EMPHASIZE = 'X'.
      FIELDCATALOG-KEY       = 'X'.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'ANLN2'.
      FIELDCATALOG-SELTEXT_M = 'SUB NO'.
      FIELDCATALOG-COL_POS   = 1.
      FIELDCATALOG-OUTPUTLEN = 7.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'AKTIV'.
      FIELDCATALOG-SELTEXT_M = 'CAP.DATE'.
      FIELDCATALOG-COL_POS   = 2.
      FIELDCATALOG-OUTPUTLEN = 10.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'TXT50'.
      FIELDCATALOG-SELTEXT_M = 'NAME'.
      FIELDCATALOG-COL_POS   = 3.
      FIELDCATALOG-OUTPUTLEN = 50.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'ZUGDT'.
      FIELDCATALOG-SELTEXT_M = 'POSTING DATE'.
      FIELDCATALOG-COL_POS   = 4.
      FIELDCATALOG-OUTPUTLEN = 10.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'MENGE'.
      FIELDCATALOG-SELTEXT_M = 'QTY'.
      FIELDCATALOG-COL_POS   = 5.
      FIELDCATALOG-OUTPUTLEN = 13.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'MEINS'.
      FIELDCATALOG-SELTEXT_M = 'UNITS'.
      FIELDCATALOG-COL_POS   = 6.
      FIELDCATALOG-OUTPUTLEN = 3.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'GSBER'.
      FIELDCATALOG-SELTEXT_M = 'BA'.
      FIELDCATALOG-COL_POS   = 7.
      FIELDCATALOG-OUTPUTLEN = 4.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'KOSTL'.
      FIELDCATALOG-SELTEXT_M = 'COST CENTER'.
      FIELDCATALOG-COL_POS   = 8.
      FIELDCATALOG-OUTPUTLEN = 13.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'STORT'.
      FIELDCATALOG-SELTEXT_M = 'LOCATION'.
      FIELDCATALOG-COL_POS   = 9.
      FIELDCATALOG-OUTPUTLEN = 10.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'RAUMN'.
      FIELDCATALOG-SELTEXT_M = 'ROOM'.
      FIELDCATALOG-COL_POS   = 10.
      FIELDCATALOG-OUTPUTLEN = 10.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'KFZKZ'.
      FIELDCATALOG-SELTEXT_M = 'LICENSE PLATE NO'.
      FIELDCATALOG-COL_POS   = 11.
      FIELDCATALOG-OUTPUTLEN = 20.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'BELNR'.
      FIELDCATALOG-SELTEXT_M = 'DOC NO'.
      FIELDCATALOG-COL_POS   = 12.
      FIELDCATALOG-OUTPUTLEN = 13.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'BUDAT'.
      FIELDCATALOG-SELTEXT_M = 'POSTING DATE'.
      FIELDCATALOG-COL_POS   = 13.
      FIELDCATALOG-OUTPUTLEN = 15.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'XBLNR'.
      FIELDCATALOG-SELTEXT_M = 'REF NO'.
      FIELDCATALOG-COL_POS   = 14.
      FIELDCATALOG-OUTPUTLEN = 25.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'SGTXT'.
      FIELDCATALOG-SELTEXT_M = 'TEXT'.
      FIELDCATALOG-COL_POS   = 15.
      FIELDCATALOG-OUTPUTLEN = 50.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
    ENDFORM.                    "BUILD_FIELDCATALOG
          FORM BUILD_LAYOUT                                             *
    FORM BUILD_LAYOUT.
      GD_LAYOUT-ZEBRA = 'X'.
      GD_LAYOUT-INFO_FIELDNAME = 'LINE_COLOR'.
    ENDFORM.                    "BUILD_LAYOUT
          FORM DISPLAY_ALV_REPORT                                       *
    FORM DISPLAY_ALV_REPORT.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            I_INTERFACE_CHECK        = ' '
            I_CALLBACK_PROGRAM       = ' '
            I_CALLBACK_PF_STATUS_SET = ' '
            I_CALLBACK_USER_COMMAND  = ' '
            I_STRUCTURE_NAME         =
             IS_LAYOUT                = GD_LAYOUT
               IT_FIELDCAT              = FIELDCATALOG[]
            IT_EXCLUDING             =
            IT_SPECIAL_GROUPS        =
            IT_SORT                  =
            IT_FILTER                =
            IS_SEL_HIDE              =
            I_DEFAULT                = 'X'
            I_SAVE                   = ' '
            IS_VARIANT               = ' '
            IT_EVENTS                =
            IT_EVENT_EXIT            =
            IS_PRINT                 =
            I_SCREEN_START_COLUMN    = 0
            I_SCREEN_START_LINE      = 0
            I_SCREEN_END_COLUMN      = 0
            I_SCREEN_END_LINE        = 0
       IMPORTING
            E_EXIT_CAUSED_BY_CALLER  =
            ES_EXIT_CAUSED_BY_USER   =
           TABLES
                T_OUTTAB                 = IT_FINAL
           EXCEPTIONS
                PROGRAM_ERROR            = 1
                OTHERS                   = 2.
    ENDFORM.                    "DISPLAY_ALV_REPORT
    Thanks & Regards
    Eswar. B
    Tel: +65 6544 7449
    mailto: [email protected]
    From: [email protected] [mailto:[email protected]]
    Sent: Tuesday, November 28, 2006 7:36 PM
    To: Boddeti, Eswar Rao
    Subject: Re: need ur help for asset aqusition report
    Hai,
       Sorry sorry this is the right Code.
    Z_FA_ACQ  NO STANDARD PAGE HEADING
                    LINE-SIZE 400
                    LINE-COUNT 65(3).
    TYPE-POOLS : SLIS.
    TABLES : ANLA,                     "ASSET MASTER RECORD-SEGMENT
            ANLZ.                     "time dependent asset allocations
    DATA : BEGIN OF T_ANLA OCCURS 0,
          BUKRS LIKE ANLA-BUKRS,
          ANLN1 LIKE ANLA-ANLN1,
          ANLN2 LIKE ANLA-ANLN2,
          AKTIV LIKE ANLA-AKTIV,
          TXT50 LIKE ANLA-TXT50,
          ZUGDT LIKE ANLA-ZUGDT,
          MENGE LIKE ANLA-MENGE,
          MEINS LIKE ANLA-MEINS,
          END OF T_ANLA.
    DATA : BEGIN OF T_ANLZ OCCURS 0,
          BUKRS LIKE ANLZ-BUKRS,
          ANLN1 LIKE ANLZ-ANLN1,
          ANLN2 LIKE ANLZ-ANLN2,
          GSBER LIKE ANLZ-GSBER,
          KOSTL LIKE ANLZ-KOSTL,
          STORT LIKE ANLZ-STORT,
          RAUMN LIKE ANLZ-RAUMN,
          KFZKZ LIKE ANLZ-KFZKZ,
          END OF T_ANLZ.
    DATA : BEGIN OF T_ANEK OCCURS 0,
          BUKRS LIKE ANEK-BUKRS,
          ANLN1 LIKE ANEK-ANLN1,
          ANLN2 LIKE ANEK-ANLN2,
          BELNR LIKE ANEK-BELNR,
          BUDAT LIKE ANEK-BUDAT,
          XBLNR LIKE ANEK-XBLNR,
          SGTXT LIKE ANEK-SGTXT,
          END OF T_ANEK.
    DATA : BEGIN OF T_ANLC OCCURS 0,
          BUKRS LIKE ANLC-BUKRS,
          ANLN1 LIKE ANLC-ANLN1,
          ANLN2 LIKE ANLC-ANLN2,
          KANSW LIKE ANLC-KANSW,
          KNAFA LIKE ANLC-KNAFA,
          AAFAP LIKE ANLC-AAFAP,
          AFABE LIKE ANLC-AFABE,
          GJAHR LIKE ANLC-GJAHR,
          END OF T_ANLC.
    DATA : BEGIN OF IT_FINAL OCCURS 0,
           ANLN1 LIKE ANLA-ANLN1,
           ANLN2 LIKE ANLA-ANLN2,
           AKTIV LIKE ANLA-AKTIV,
           TXT50 LIKE ANLA-TXT50,
           ZUGDT LIKE ANLA-ZUGDT,
           MENGE LIKE ANLA-MENGE,
           MEINS LIKE ANLA-MEINS,
           GSBER LIKE ANLZ-GSBER,
           KOSTL LIKE ANLZ-KOSTL,
           STORT LIKE ANLZ-STORT,
           RAUMN LIKE ANLZ-RAUMN,
           KFZKZ LIKE ANLZ-KFZKZ,
           BELNR LIKE ANEK-BELNR,
           BUDAT LIKE ANEK-BUDAT,
           XBLNR LIKE ANEK-XBLNR,
           SGTXT LIKE ANEK-SGTXT,
           KANSW LIKE ANLC-KANSW,
           KNAFA LIKE ANLC-KNAFA,
           AAFAP LIKE ANLC-AAFAP,
           GJAHR LIKE ANEK-GJAHR,
           END OF IT_FINAL.
    DATA : LINE_COLOR(4) TYPE C.
    DATA : FIELDCATALOG TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_LAYOUT TYPE SLIS_LAYOUT_ALV.
    SELECTION-SCREEN : BEGIN OF BLOCK B_FA WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_BUKRS FOR ANLA-BUKRS DEFAULT 'ML',
                    S_ANLN1 FOR ANLA-ANLN1,
                    S_ANLN2 FOR ANLA-ANLN2.
                    s_gjahr FOR anlc-gjahr.
    SELECTION-SCREEN : END OF BLOCK B_FA.
    *SELECT-OPTIONS : s_belnr FOR anek-belnr.
    SELECT BUKRS ANLN1 ANLN2 AKTIV TXT50 ZUGDT MENGE MEINS
          FROM ANLA
          INTO CORRESPONDING FIELDS OF TABLE T_ANLA
          WHERE ANLN1 IN S_ANLN1
          AND   ANLN2 IN S_ANLN2
          AND   BUKRS IN S_BUKRS.
    SELECT BUKRS ANLN1 ANLN2 GSBER KOSTL STORT RAUMN KFZKZ
          FROM ANLZ
          INTO CORRESPONDING FIELDS OF TABLE T_ANLZ
          FOR ALL ENTRIES IN T_ANLA
          WHERE ANLN1 = T_ANLA-ANLN1
          AND   ANLN2 = T_ANLA-ANLN2
          AND   BUKRS = T_ANLA-BUKRS.
    *IF sy-subrc EQ 0.
    SELECT BUKRS ANLN1 ANLN2 BELNR BUDAT XBLNR SGTXT GJAHR
          FROM ANEK
          INTO CORRESPONDING FIELDS OF TABLE T_ANEK
          FOR ALL ENTRIES IN T_ANLA
          WHERE ANLN1 = T_ANLA-ANLN1
          AND   ANLN2 = T_ANLA-ANLN2
          AND   BUKRS = T_ANLA-BUKRS.
          AND   gjahr = t_anek-gjahr.
    *ENDIF.
    SELECT BUKRS ANLN1 ANLN2 KANSW KNAFA AAFAP AFABE GJAHR
          FROM ANLC
          INTO CORRESPONDING FIELDS OF TABLE T_ANLC
          FOR ALL ENTRIES IN T_ANLA
          WHERE ANLN1 = T_ANLA-ANLN1
          AND   ANLN2 = T_ANLA-ANLN2
          AND   BUKRS = T_ANLA-BUKRS
          AND   GJAHR = T_ANLC-GJAHR.
          AND   afabe = '01'.
    LOOP AT T_ANLA.
    MOVE : T_ANLA-ANLN1 TO IT_FINAL-ANLN1,
            T_ANLA-ANLN2 TO IT_FINAL-ANLN2,
            T_ANLA-AKTIV TO IT_FINAL-AKTIV,
            T_ANLA-TXT50 TO IT_FINAL-TXT50,
            T_ANLA-ZUGDT TO IT_FINAL-ZUGDT,
            T_ANLA-MENGE TO IT_FINAL-MENGE,
            T_ANLA-MEINS TO IT_FINAL-MEINS.
    READ TABLE T_ANLZ WITH KEY BUKRS = T_ANLA-BUKRS
                              ANLN1 = T_ANLA-ANLN1
                              ANLN2 = T_ANLA-ANLN2 BINARY SEARCH.
    IF SY-SUBRC EQ 0.
    MOVE : T_ANLZ-GSBER TO IT_FINAL-GSBER,
           T_ANLZ-KOSTL TO IT_FINAL-KOSTL,
           T_ANLZ-STORT TO IT_FINAL-STORT,
           T_ANLZ-RAUMN TO IT_FINAL-RAUMN,
           T_ANLZ-KFZKZ TO IT_FINAL-KFZKZ.
    ENDIF.
    READ TABLE T_ANLC WITH KEY BUKRS = T_ANLA-BUKRS
                              ANLN1 = T_ANLA-ANLN1
                              ANLN2 = T_ANLA-ANLN2 BINARY SEARCH.
    IF SY-SUBRC EQ 0.
    MOVE : T_ANLC-KANSW TO IT_FINAL-KANSW,
           T_ANLC-KNAFA TO IT_FINAL-KNAFA,
           T_ANLC-AAFAP TO IT_FINAL-AAFAP.
    ENDIF.
    *SORT t_anla.
    READ TABLE T_ANEK WITH KEY BUKRS = T_ANLA-BUKRS
                              ANLN1 = T_ANLA-ANLN1
                              ANLN2 = T_ANLA-ANLN2 BINARY SEARCH.
    IF SY-SUBRC EQ 0.
    MOVE : T_ANEK-BELNR TO IT_FINAL-BELNR,
           T_ANEK-BUDAT TO IT_FINAL-BUDAT,
           T_ANEK-XBLNR TO IT_FINAL-XBLNR,
           T_ANEK-SGTXT TO IT_FINAL-SGTXT.
    ENDIF.
    APPEND IT_FINAL.
    *ENDLOOP.
    ENDLOOP.
    *ENDIF.
    PERFORM BUILD_FIELDCATALOG.
    PERFORM DISPLAY_ALV_REPORT.
    PERFORM BUILD_LAYOUT.
          FORM BUILD_FIELDCATALOG                                       *
    FORM BUILD_FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'ANLN1'.
    FIELDCATALOG-SELTEXT_M = 'ASSET MAIN NO'.
    FIELDCATALOG-COL_POS   = 0.
    FIELDCATALOG-OUTPUTLEN = 14.
    FIELDCATALOG-EMPHASIZE = 'X'.
    FIELDCATALOG-KEY       = 'X'.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'ANLN2'.
    FIELDCATALOG-SELTEXT_M = 'SUB NO'.
    FIELDCATALOG-COL_POS   = 1.
    FIELDCATALOG-OUTPUTLEN = 7.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'AKTIV'.
    FIELDCATALOG-SELTEXT_M = 'CAP.DATE'.
    FIELDCATALOG-COL_POS   = 2.
    FIELDCATALOG-OUTPUTLEN = 10.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'TXT50'.
    FIELDCATALOG-SELTEXT_M = 'NAME'.
    FIELDCATALOG-COL_POS   = 3.
    FIELDCATALOG-OUTPUTLEN = 50.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'ZUGDT'.
    FIELDCATALOG-SELTEXT_M = 'POSTING DATE'.
    FIELDCATALOG-COL_POS   = 4.
    FIELDCATALOG-OUTPUTLEN = 10.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'MENGE'.
    FIELDCATALOG-SELTEXT_M = 'QTY'.
    FIELDCATALOG-COL_POS   = 5.
    FIELDCATALOG-OUTPUTLEN = 13.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'MEINS'.
    FIELDCATALOG-SELTEXT_M = 'UNITS'.
    FIELDCATALOG-COL_POS   = 6.
    FIELDCATALOG-OUTPUTLEN = 3.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'GSBER'.
    FIELDCATALOG-SELTEXT_M = 'BA'.
    FIELDCATALOG-COL_POS   = 7.
    FIELDCATALOG-OUTPUTLEN = 4.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'KOSTL'.
    FIELDCATALOG-SELTEXT_M = 'COST CENTER'.
    FIELDCATALOG-COL_POS   = 8.
    FIELDCATALOG-OUTPUTLEN = 13.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'STORT'.
    FIELDCATALOG-SELTEXT_M = 'LOCATION'.
    FIELDCATALOG-COL_POS   = 9.
    FIELDCATALOG-OUTPUTLEN = 10.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'RAUMN'.
    FIELDCATALOG-SELTEXT_M = 'ROOM'.
    FIELDCATALOG-COL_POS   = 10.
    FIELDCATALOG-OUTPUTLEN = 10.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'KFZKZ'.
    FIELDCATALOG-SELTEXT_M = 'LICENSE PLATE NO'.
    FIELDCATALOG-COL_POS   = 11.
    FIELDCATALOG-OUTPUTLEN = 20.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'BELNR'.
    FIELDCATALOG-SELTEXT_M = 'DOC NO'.
    FIELDCATALOG-COL_POS   = 12.
    FIELDCATALOG-OUTPUTLEN = 13.
    APPEND FIELDCATALOG TO FIELDCATALOG.
    CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'BUDAT'.
      FIELDCATALOG-SELTEXT_M = 'POSTING DATE'.
      FIELDCATALOG-COL_POS   = 13.
      FIELDCATALOG-OUTPUTLEN = 15.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'XBLNR'.
      FIELDCATALOG-SELTEXT_M = 'REF NO'.
      FIELDCATALOG-COL_POS   = 14.
      FIELDCATALOG-OUTPUTLEN = 25.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME = 'SGTXT'.
      FIELDCATALOG-SELTEXT_M = 'TEXT'.
      FIELDCATALOG-COL_POS   = 15.
      FIELDCATALOG-OUTPUTLEN = 50.
      APPEND FIELDCATALOG TO FIELDCATALOG.
      CLEAR FIELDCATALOG.
    ENDFORM.
          FORM BUILD_LAYOUT                                             *
    FORM BUILD_LAYOUT.
    GD_LAYOUT-ZEBRA = 'X'.
    GD_LAYOUT-INFO_FIELDNAME = 'LINE_COLOR'.
    ENDFORM.
          FORM DISPLAY_ALV_REPORT                                       *
    FORM DISPLAY_ALV_REPORT.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
         EXPORTING
            I_INTERFACE_CHECK        = ' '
            I_CALLBACK_PROGRAM       = ' '
            I_CALLBACK_PF_STATUS_SET = ' '
            I_CALLBACK_USER_COMMAND  = ' '
            I_STRUCTURE_NAME         =
            IS_LAYOUT                = GD_LAYOUT
              IT_FIELDCAT              = FIELDCATALOG[]
            IT_EXCLUDING             =
            IT_SPECIAL_GROUPS        =
            IT_SORT                  =
            IT_FILTER                =
            IS_SEL_HIDE              =
            I_DEFAULT                = 'X'
            I_SAVE                   = ' '
            IS_VARIANT               = ' '
            IT_EVENTS                =
            IT_EVENT_EXIT            =
            IS_PRINT                 =
            I_SCREEN_START_COLUMN    = 0
            I_SCREEN_START_LINE      = 0
            I_SCREEN_END_COLUMN      = 0
            I_SCREEN_END_LINE        = 0
       IMPORTING
            E_EXIT_CAUSED_BY_CALLER  =
            ES_EXIT_CAUSED_BY_USER   =
          TABLES
               T_OUTTAB                 = IT_FINAL
          EXCEPTIONS
               PROGRAM_ERROR            = 1
               OTHERS                   = 2.
    ENDFORM.
    Thanks
    manju

  • Need help on S_ALR_87011990 asset history sheet report

    Hi Experts,
    Could you please let me know the equivalent column in this report, when you compare to asset explorer AS03 ( APC transactions *change) record. I would like to get this APC transactions --> change value on this report.
    Please let me know if you  have any thoughts on this.
    Thanks in Advance..
    Best Regards,
    Chandra.

    Hi Chandra,
    You have to look functional to it and not as a programmer.  Tabels like anlc are not relevant for the asset history sheet report. Talk with your functional consultant / key user what he need.
    Every transaction in asset accounting is based on a transaction types. The field that is filled in in ANLC is based on the transaction type. Your key user should give you the transaction types they use.
    With the transaction OA81 you can see all the transaction type's that are available.
    When you look to tty 100 you see that it is assigned to gr 10.   The 10 is the bases if and where show it on the report

  • Fit- gap anlysis, as- is stusy, to- be process

    hi,
    can any one explain fit- gap anlysis, as- is stusy, to- be process with a business scenario
    u can mail any info regarding this to [email protected]
    regards
    amulya

    Hi Shinas,
    You may refer to SAP EAF tutorials for this and also you may find this link helpful:
    http://www.archives.gov/records-mgmt/initiatives/bpd-checklist.pdf
    Hope this helps!!
    Cheers,
    Arafat

  • What is fit gap analysis?

    Hi
    What is meant by FIT  GAP  analysis ? any example ,documents?
    What is cut short methodology ?
    Pls full points will be rewarded.
    Send details at :[email protected]
    Message was edited by:
            chandrakanth nammi

    HI , refer below reward if helps, sent the mail
    Fit gap analysis as the name says it is not a complete upgrade doc. to fit in the gap between the new and existing system from which we are going to migrate to the new system we run an compare and document in the changes that need to be preformed in then new system.

  • Can you provide some real time example of Fit Gap analysis .

    Hi all,
    Can you provide some real time example of Fit Gap analysis related to Functional.
    Regards
    Reddy

    hi,
    In my opinion and experience both functional and technical staff playkey roles in the fit-gap meetings and in the subsequent review of thefit-gap deliverable (which lists business requirements, fits, gaps, andalternatives to fill the gaps). Ideally the technical staff possessessignificant functional / business experience at least with that moduleso that he/she can help determine the cost/effort/technical scope if acustomization or interface is the preferred way to fill a particulargap. The fit-gap goes a long way in determining the overall scope ofthe implementation or upgrade project and is a critical success factor.It also needs to be completed very early in the project so thatresulting customizations and interfaces can be designed, created, andunit tested before the system test phase.
    Thx,
    waseem

  • Assets transaction history Report

    Hi,
    I Need to Change in the Assets Transcation History Report ,
    I store Two Extra Field Information in Reclassfication,Transfer, Mass Changes
    i need That Information in Assets Transcation History Report but The Transcation
    id of Reclassfication,Transfer, Mass Changes in not Find from Assets Transcation
    Report or Form ,Can Any Body Help me to Find the Transaction id of Reclassfication,Transfer, Mass Changes in Assets History Report
    Thanks

    hi
    use T.code OARP  you can get the some reports, if it's not suitable then you can devalop your own reports through Report painter or Query.
    satish

  • Help needed  while exporting crystal reports to HTML file format using java

    Help needed  while exporting crystal reports to HTML file format using java api(not using crystalviewer).i want to download the
    html file of the report
    thanks

    the ReportExportFormat class does not have HTML format, it has got to be XML. Export to HTML is available from CR Designer only.
    Edited by: Aasavari Bhave on Jan 24, 2012 11:37 AM

  • Help me in  'AR Details ' report shows total open invoices by customer

    hi friends,
    please  help me in  'AR Details ' report shows total open invoices by customer and PO number over selected time range.
    any thing related to open invoices please send me as early as possible.
    Thanks,
    Regards,
    Yogesh

    Hi,
    Find the T.code VF05. You will get the list of open billing docs. Its SIS report. Please find whether the SIS is active or not in your system
    Regards,

  • Please help to get onhand stock report with last purchase and billed date warehouse and item wise

    please help to get onhand stock report with last purchase and billed date warehouse and item wise

    Hi Rajeesh Ambadi...
    Try This
    SELECT distinct T0.ITEMCODE , t1.ItemName, T0.ONHAND as 'Total Qty',  
      T1.LASTPURDAT ,t1.LastPurPrc
    FROM OITW T0 INNER JOIN OITM T1 ON T0.ITEMCODE = T1.ITEMCODE
    INNER JOIN OITB T2 ON T1.ITMSGRPCOD=T2.ITMSGRPCOD left join ibt1 t3 on t3.itemcode = t0.itemcode and t3.whscode = t0.whscode
    WHERE
    T0.ONHAND>0
    AND T0.WhsCode ='[%0]'
    Hope Helpful
    Regards
    Kennedy

  • Help needed with Safari Crash Report Please

    I cannot visit the Apple Store site along with some other sites (My Amazon Login Page ) without Safari 4 crashing. This is happening on two computers and I have tried the following with no success.....
    Repairing permissions
    Removing plist file
    Running 10.5.7 Combo update
    Emptied Cache
    Deleting Safari and reinstalling
    Restored Safari 4 beta from Time Machine (still crashes)
    Ensuring Assisted Devices etc are off under Universal Access preferences
    Creating new user account
    Removing all internet plugins from HD/Library/InternetPlugins and UserName/Library/InternetPlugins
    Removed items from HD /Library/Inputmanagers
    Disabling Javascript is the only method I have found that will stop these crashes.
    If somebody could look at my crash report below I would be grateful as I am not sure what I am looking for.
    I am quite "happy" for the problem to be some 3rd party software that I am using - however I can see no sign of them in my crash report and it seems strange that my only workaround is to disable Javascript.
    Anyway if anybody could help here is my crash report (with all the plugins installed) - many thanks
    Adam
    Process: Safari 200
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0 (5530.17)
    Build Info: WebBrowser-55301700~2
    Code Type: X86 (Native)
    Parent Process: launchd 81
    Interval Since Last Report: 1855 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 1773 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-06-13 17:32:14.954 +0100
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 60DC4115-DF92-42FC-9590-F3F2EB277286
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000024
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x9199390c WebCore::RenderBlock::layoutBlock(bool) + 2892
    1 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    2 com.apple.WebCore 0x919964fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    3 com.apple.WebCore 0x91992ff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    4 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    5 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    6 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    7 com.apple.WebCore 0x919ab3d6 WebCore::RenderTextControlSingleLine::layout() + 550
    8 com.apple.WebCore 0x919964fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    9 com.apple.WebCore 0x91992ff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    10 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    11 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    12 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    13 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    14 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    15 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    16 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    17 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    18 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    19 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    20 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    21 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    22 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    23 com.apple.WebCore 0x919964fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    24 com.apple.WebCore 0x91992ff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    25 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    26 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    27 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    28 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    29 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    30 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    31 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    32 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    33 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    34 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    35 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    36 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    37 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    38 com.apple.WebCore 0x91992c0a WebCore::RenderView::layout() + 250
    39 com.apple.WebCore 0x91ba37d5 -AccessibilityObjectWrapper accessibilityIsIgnored + 37
    40 com.apple.AppKit 0x9450d5c9 NSAccessibilityPostNotificationForObservedElement + 92
    41 com.apple.AppKit 0x9450d56b NSAccessibilityPostNotification + 28
    42 com.apple.WebCore 0x91b96029 WebCore::AXObjectCache::postNotification(WebCore::RenderObject*, WebCore::String const&) + 105
    43 com.apple.WebCore 0x91986b4c WebCore::RenderTextControl::setInnerTextValue(WebCore::String const&) + 764
    44 com.apple.WebCore 0x91983a0f WebCore::RenderTextControlSingleLine::updateFromElement() + 159
    45 com.apple.WebCore 0x9196c8e2 WebCore::HTMLFormControlElement::attach() + 50
    46 com.apple.WebCore 0x9196e973 WebCore::HTMLInputElement::attach() + 51
    47 com.apple.WebCore 0x9196dfde WebCore::HTMLInputElement::setInputType(WebCore::String const&) + 1518
    48 com.apple.WebCore 0x9196d362 WebCore::HTMLInputElement::parseMappedAttribute(WebCore::MappedAttribute*) + 450
    49 com.apple.WebCore 0x91944d0a WebCore::StyledElement::attributeChanged(WebCore::Attribute*, bool) + 234
    50 com.apple.WebCore 0x91a6468f WebCore::Element::setAttribute(WebCore::AtomicString const&, WebCore::AtomicString const&, int&) + 287
    51 com.apple.WebCore 0x91a643bd WebCore::JSElement::setAttribute(JSC::ExecState*, JSC::ArgList const&) + 301
    52 com.apple.WebCore 0x91a64263 WebCore::jsElementPrototypeFunctionSetAttribute(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 115
    53 ??? 0x01c3920f 0 + 29594127
    54 com.apple.JavaScriptCore 0x92bd7729 JSC::Interpreter::execute(JSC::ProgramNode*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*, JSC::JSValue*) + 537
    55 com.apple.JavaScriptCore 0x92bc36f9 JSC::evaluate(JSC::ExecState*, JSC::ScopeChain&, JSC::SourceCode const&, JSC::JSValue) + 377
    56 com.apple.WebCore 0x9195d794 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 260
    57 com.apple.WebCore 0x9195d601 WebCore::FrameLoader::executeScript(WebCore::ScriptSourceCode const&) + 161
    58 com.apple.WebCore 0x9195d24c WebCore::HTMLTokenizer::scriptExecution(WebCore::ScriptSourceCode const&, WebCore::HTMLTokenizer::State) + 204
    59 com.apple.WebCore 0x9195be41 WebCore::HTMLTokenizer::scriptHandler(WebCore::HTMLTokenizer::State) + 4353
    60 com.apple.WebCore 0x9194dc9b WebCore::HTMLTokenizer::parseSpecial(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 2267
    61 com.apple.WebCore 0x9193b6df WebCore::HTMLTokenizer::parseTag(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 9103
    62 com.apple.WebCore 0x91938c9b WebCore::HTMLTokenizer::write(WebCore::SegmentedString const&, bool) + 2907
    63 com.apple.WebCore 0x919fb2c6 WebCore::HTMLTokenizer::notifyFinished(WebCore::CachedResource*) + 1174
    64 com.apple.WebCore 0x919faddc WebCore::CachedScript::checkNotify() + 60
    65 com.apple.WebCore 0x91978af8 WebCore::Loader::Host::didFinishLoading(WebCore::SubresourceLoader*) + 360
    66 com.apple.WebCore 0x919788fd WebCore::SubresourceLoader::didFinishLoading() + 45
    67 com.apple.Foundation 0x966ba4a7 -NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading + 87
    68 com.apple.Foundation 0x966ba413 _NSURLConnectionDidFinishLoading + 147
    69 com.apple.CFNetwork 0x906fbb96 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    70 com.apple.CFNetwork 0x906fc8e0 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    71 com.apple.CFNetwork 0x906fb36c URLConnectionClient::processEvents() + 104
    72 com.apple.CFNetwork 0x906a8dbf MultiplexerSource::perform() + 189
    73 com.apple.CoreFoundation 0x901de595 CFRunLoopRunSpecific + 3141
    74 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    75 com.apple.HIToolbox 0x9077c28c RunCurrentEventLoopInMode + 283
    76 com.apple.HIToolbox 0x9077c0a5 ReceiveNextEventCommon + 374
    77 com.apple.HIToolbox 0x9077bf19 BlockUntilNextEventMatchingListInMode + 106
    78 com.apple.AppKit 0x94437d0d _DPSNextEvent + 657
    79 com.apple.AppKit 0x944375c0 -NSApplication nextEventMatchingMask:untilDate:inMode:dequeue: + 128
    80 com.apple.Safari 0x0000cac3 0x1000 + 47811
    81 com.apple.AppKit 0x944305fb -NSApplication run + 795
    82 com.apple.AppKit 0x943fd834 NSApplicationMain + 574
    83 com.apple.Safari 0x000032a2 0x1000 + 8866
    Thread 1:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x918a4584 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x918a0409 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x92239155 pthreadstart + 321
    5 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x9067c298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x92239155 pthreadstart + 321
    6 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92b9d741 **::ThreadCondition::timedWait(**::Mutex&, double) + 81
    3 com.apple.WebCore 0x9190cbd5 WebCore::LocalStorageThread::localStorageThread() + 325
    4 libSystem.B.dylib 0x92239155 pthreadstart + 321
    5 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00026b55 0x1000 + 154453
    5 com.apple.Safari 0x00026870 0x1000 + 153712
    6 com.apple.Safari 0x000267fb 0x1000 + 153595
    7 libSystem.B.dylib 0x92239155 pthreadstart + 321
    8 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x928eba09 fefragmentthread + 54
    3 libSystem.B.dylib 0x92239155 pthreadstart + 321
    4 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x922576fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x92239155 pthreadstart + 321
    2 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x966b8530 +NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop: + 320
    5 com.apple.Foundation 0x96654e0d -NSThread main + 45
    6 com.apple.Foundation 0x966549b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x92239155 pthreadstart + 321
    8 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92b9d741 **::ThreadCondition::timedWait(**::Mutex&, double) + 81
    3 com.apple.Safari 0x0011de33 0x1000 + 1166899
    4 com.apple.Safari 0x0011df21 0x1000 + 1167137
    5 com.apple.Safari 0x00042753 0x1000 + 268115
    6 com.apple.Safari 0x000426cb 0x1000 + 267979
    7 libSystem.B.dylib 0x92239155 pthreadstart + 321
    8 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x922082e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9223a2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x9223bb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9669adcc -NSCondition waitUntilDate: + 236
    4 com.apple.Foundation 0x9669abe0 -NSConditionLock lockWhenCondition:beforeDate: + 144
    5 com.apple.Foundation 0x9669ab45 -NSConditionLock lockWhenCondition: + 69
    6 com.apple.AppKit 0x9449dd20 -NSUIHeartBeat _heartBeatThread: + 753
    7 com.apple.Foundation 0x96654e0d -NSThread main + 45
    8 com.apple.Foundation 0x966549b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x92239155 pthreadstart + 321
    10 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x966893e5 -NSRunLoop(NSRunLoop) runMode:beforeDate: + 213
    5 com.apple.Foundation 0x96695504 -NSRunLoop(NSRunLoop) run + 84
    6 com.apple.Safari 0x00034bc6 0x1000 + 211910
    7 com.apple.Foundation 0x96654e0d -NSThread main + 45
    8 com.apple.Foundation 0x966549b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x92239155 pthreadstart + 321
    10 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x01cf1000 ebx: 0x91992dd1 ecx: 0x00000000 edx: 0x00000000
    edi: 0x196a3010 esi: 0x00000000 ebp: 0xbfffb718 esp: 0xbfffb5a0
    ss: 0x0000001f efl: 0x00010246 eip: 0x9199390c cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000024
    Binary Images:
    0x1000 - 0x271ff2 com.apple.Safari 4.0 (5530.17) <f2a6090eab89fe9620270fc7f32156b9> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d0000 - 0x2dfffc SyndicationUI ??? (???) <4bfd6fbc102be03e5fb08374be0ca362> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x2ef000 - 0x3f5ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x1af5000 - 0x1afafff +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 18) (1.1.2) <271b940259dab4f545540356099bd7bb> /Users/adam/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x1b03000 - 0x1b05ffe com.apple.AutomatorCMM 1.1 (161) <dd4f219df5f726e3fea63790235f92dc> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1b0b000 - 0x1b0cffd com.apple.BluetoothMenu 2.1.6 (2.1.6f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1b11000 - 0x1b85ff7 com.apple.Bluetooth 2.1.6 (2.1.6f8) <2efdc5543023a1c9b534269d1153d8d8> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x1bd3000 - 0x1bd5fff com.apple.BezelServicesFW 1.4.929 (1.4.929) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1bdc000 - 0x1be1fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9305ccde37dcf5329fd9faea1db1f153> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x11ebd000 - 0x120c4fef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1576d000 - 0x157abfe7 +com.adobe.vcmenu ??? (4.0.1.095) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/MacOS/ADFSMenu
    0x15808000 - 0x15822fff +AdobeBIB ??? (???) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBI B
    0x15c2d000 - 0x15c5fffc +com.stuffit.StuffItCM 13.0.3 (13.0.3) <836627efb5c9eb791c76265bd5b222a2> /Library/Contextual Menu Items/StuffItCM.plugin/Contents/MacOS/StuffItCM
    0x15c79000 - 0x15cc1fe3 +com.stuffit.sdk 13.0.3 (13.0.3) <eea4f8830679cddcb99bf6d49a28459a> /Library/Frameworks/StuffIt.framework/Versions/B/StuffIt
    0x1646f000 - 0x16474ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16b33000 - 0x16b33ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x16b39000 - 0x16b3fffd com.apple.JavaVM 12.2.2 (12.2.2) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17800000 - 0x1788eff1 +com.stuffit.stuffitcore 13.0.3 (13.0.3) <0e82d419e0e4b50cf3490754d30b6bc3> /Library/Frameworks/StuffItCore.framework/Versions/A/StuffItCore
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <b0ea42e222a36a182e4ea30c3d71ce68> /usr/lib/dyld
    0x90003000 - 0x90007fff libGIF.dylib ??? (???) <713b902cb8f54365b1c78ff3507494a7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90008000 - 0x90092fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90093000 - 0x9014dfe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9014e000 - 0x9014eff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9014f000 - 0x9016affb libPng.dylib ??? (???) <e92ab921713f1c28bc639d68683b8ee3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9016b000 - 0x9029efef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9029f000 - 0x902e0fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x902e6000 - 0x902edff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9033d000 - 0x90377fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90378000 - 0x90386ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x90387000 - 0x903c5fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x903c6000 - 0x90443fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90444000 - 0x90484fff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x904ca000 - 0x905aafff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x905ab000 - 0x90676fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90677000 - 0x90677ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90678000 - 0x90678fff com.apple.Carbon 136 (136) <4177916bbf70e0ddc446f94001d54c95> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90679000 - 0x9071dfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9071e000 - 0x9074bfeb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9074c000 - 0x90a54fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90a55000 - 0x90a6bfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90a6c000 - 0x90ba5ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x90ba6000 - 0x90bc3ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90c16000 - 0x90c16ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90c17000 - 0x90c17ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90c18000 - 0x90c19ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x90c1a000 - 0x90c29ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90c39000 - 0x90c88fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90c89000 - 0x90cadfeb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x90cae000 - 0x90d08ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90d09000 - 0x90e4fff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <c0d51a3b27fe6977d8db45c84c7ff46b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90e50000 - 0x90e5bfe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90e61000 - 0x90f49ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90fbd000 - 0x90fbdffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90fbe000 - 0x90ff0fff com.apple.LDAPFramework 1.4.5 (110) <9ece7a1930b00f7b20ae9ef0759270cf> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x910e6000 - 0x910eafff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x910eb000 - 0x910f7ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x910f8000 - 0x9112efef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x9112f000 - 0x912aefff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x912af000 - 0x912b8fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x912b9000 - 0x912bcfff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x912bd000 - 0x912bdffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x912be000 - 0x912dcfff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x912dd000 - 0x91306fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x91307000 - 0x91338ffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91339000 - 0x91362fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x91363000 - 0x9139dffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9139e000 - 0x9139effd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91489000 - 0x9148efff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <b42b339d6b18d416b81c2d0eaa4f36b9> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9148f000 - 0x91496ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x91497000 - 0x91499fff com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9149a000 - 0x914dcfef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x914dd000 - 0x914f5ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x914f6000 - 0x91540fe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91541000 - 0x915befeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915d7000 - 0x915dcfff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91822000 - 0x9189cff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9189d000 - 0x9212dfff com.apple.WebCore 5530 (5530.17) <9868576f7495c85d5f4513dd4e0f9b95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9212e000 - 0x9213aff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9213b000 - 0x9215affa libJPEG.dylib ??? (???) <348a77547e3646c80704ddfd88f6e008> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9215b000 - 0x92162fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x92207000 - 0x9236eff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x9238c000 - 0x924c4fe7 com.apple.imageKit 1.0.2 (1.0) <f36b085e6878145ea194d53fad37a8e8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x924c5000 - 0x92696ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92697000 - 0x92723ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92724000 - 0x927d6ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x927d7000 - 0x927e4fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x927f7000 - 0x92b94fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92b95000 - 0x92d1cfeb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92d1d000 - 0x92d2dfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92d2e000 - 0x92e07ff7 com.apple.WebKit 5530 (5530.17) <a7127d7d7f22d74df35aaa16b776912c> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93071000 - 0x93152ff7 libxml2.2.dylib ??? (???) <068cab13eb4608a7c6a5fad807ee0e33> /usr/lib/libxml2.2.dylib
    0x93158000 - 0x93208fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9320f000 - 0x93237ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93238000 - 0x93277fef libTIFF.dylib ??? (???) <1b5ab7f4bb5251ce1488dd0b1e21ad39> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93278000 - 0x9330bff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9338e000 - 0x9341aff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9341b000 - 0x93420fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93421000 - 0x9342bfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9349c000 - 0x93776ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93777000 - 0x9378ffff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93790000 - 0x937aeff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x937af000 - 0x9380bff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9380c000 - 0x9389ffff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x938a0000 - 0x939f2ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93a23000 - 0x93adaff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93adb000 - 0x93facfbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93fad000 - 0x93fbcfff libsasl2.2.dylib ??? (???) <c0bb658cd951bbe8882244fc5db4617b> /usr/lib/libsasl2.2.dylib
    0x93fbd000 - 0x9401affb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x9401b000 - 0x94064fef com.apple.Metadata 10.5.2 (398.25) <bf7f665f6ad79df3a8355b41fa1ed207> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94065000 - 0x94067ffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94068000 - 0x9438efe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9438f000 - 0x943f5ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x943f6000 - 0x943f6ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x943f7000 - 0x94bf5fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94bf6000 - 0x94c25fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94c26000 - 0x94c5dfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94c5e000 - 0x94cafff7 com.apple.HIServices 1.7.0 (???) <74c3d19e3981d6999630ec516681f079> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94cb0000 - 0x94cd4fff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x94cd5000 - 0x95375fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95506000 - 0x95508ff5 libRadiance.dylib ??? (???) <6d980a95dd5a8448e2846568cc1458cd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95509000 - 0x95509ffe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9550a000 - 0x95510fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95511000 - 0x9553cfe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x9553d000 - 0x955affff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x955b0000 - 0x9562fff5 com.apple.SearchKit 1.2.1 (1.2.1) <4ebff1a287bd6686107fa50d5a21b000> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9660c000 - 0x96614fff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9664a000 - 0x968c6fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x968c7000 - 0x9696efeb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9696f000 - 0x969f6ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x969f7000 - 0x96abeff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96abf000 - 0x96ecffef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96ed0000 - 0x96ed0ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96ed1000 - 0x96ee1ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <5c122260176a6bcd9da8c7f8bb567b34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96ee2000 - 0x9709eff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9709f000 - 0x9745dfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9745e000 - 0x974b7ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x974b8000 - 0x974cdffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Many thanks for taking the time to help.
    I have removed the items you suggested but unfortunately Safari still crashes.
    Below is another crash report with the items removed.
    If anybody can help I would be most grateful.
    Also I do not have LazyMouse installed and I have unchecked Enable access for assistive devices in System preferences>Universal Access.
    Many thanks
    Adam
    Crash report.............
    Process: Safari [410]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0 (5530.17)
    Build Info: WebBrowser-55301700~2
    Code Type: X86 (Native)
    Parent Process: launchd [132]
    Interval Since Last Report: 3686 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 3276 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-06-15 19:43:22.310 +0100
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 60DC4115-DF92-42FC-9590-F3F2EB277286
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x000000000000000c
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x9501ac5c WebCore::InlineFlowBox::deleteLine(WebCore::RenderArena*) + 44
    1 com.apple.WebCore 0x9562be31 WebCore::RenderBlock::determineStartPosition(bool&, bool&, WebCore::BidiResolver<WebCore::InlineIterator, WebCore::BidiRun>&, ***::Vector<WebCore::RenderBlock::FloatWithRect, 0ul>&, unsigned int&) + 1137
    2 com.apple.WebCore 0x94f9279c WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 1468
    3 com.apple.WebCore 0x94f8eff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    4 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    5 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    6 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    7 com.apple.WebCore 0x94fa73d6 WebCore::RenderTextControlSingleLine::layout() + 550
    8 com.apple.WebCore 0x94f924fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    9 com.apple.WebCore 0x94f8eff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    10 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    11 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    12 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    13 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    14 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    15 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    16 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    17 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    18 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    19 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    20 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    21 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    22 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    23 com.apple.WebCore 0x94f924fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    24 com.apple.WebCore 0x94f8eff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    25 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    26 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    27 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    28 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    29 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    30 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    31 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    32 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    33 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    34 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    35 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    36 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    37 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    38 com.apple.WebCore 0x94f8ec0a WebCore::RenderView::layout() + 250
    39 com.apple.WebCore 0x9519f7d5 -[AccessibilityObjectWrapper accessibilityIsIgnored] + 37
    40 com.apple.AppKit 0x943d35c9 NSAccessibilityPostNotificationForObservedElement + 92
    41 com.apple.AppKit 0x943d356b NSAccessibilityPostNotification + 28
    42 com.apple.WebCore 0x95192029 WebCore::AXObjectCache::postNotification(WebCore::RenderObject*, WebCore::String const&) + 105
    43 com.apple.WebCore 0x94f82b4c WebCore::RenderTextControl::setInnerTextValue(WebCore::String const&) + 764
    44 com.apple.WebCore 0x94f7fa0f WebCore::RenderTextControlSingleLine::updateFromElement() + 159
    45 com.apple.WebCore 0x94f688e2 WebCore::HTMLFormControlElement::attach() + 50
    46 com.apple.WebCore 0x94f6a973 WebCore::HTMLInputElement::attach() + 51
    47 com.apple.WebCore 0x94f69fde WebCore::HTMLInputElement::setInputType(WebCore::String const&) + 1518
    48 com.apple.WebCore 0x94f69362 WebCore::HTMLInputElement::parseMappedAttribute(WebCore::MappedAttribute*) + 450
    49 com.apple.WebCore 0x94f40d0a WebCore::StyledElement::attributeChanged(WebCore::Attribute*, bool) + 234
    50 com.apple.WebCore 0x9506068f WebCore::Element::setAttribute(WebCore::AtomicString const&, WebCore::AtomicString const&, int&) + 287
    51 com.apple.WebCore 0x950603bd WebCore::JSElement::setAttribute(JSC::ExecState*, JSC::ArgList const&) + 301
    52 com.apple.WebCore 0x95060263 WebCore::jsElementPrototypeFunctionSetAttribute(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 115
    53 ??? 0x1649a20f 0 + 373924367
    54 com.apple.JavaScriptCore 0x92db3729 JSC::Interpreter::execute(JSC::ProgramNode*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*, JSC::JSValue*) + 537
    55 com.apple.JavaScriptCore 0x92d9f6f9 JSC::evaluate(JSC::ExecState*, JSC::ScopeChain&, JSC::SourceCode const&, JSC::JSValue) + 377
    56 com.apple.WebCore 0x94f59794 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 260
    57 com.apple.WebCore 0x94f59601 WebCore::FrameLoader::executeScript(WebCore::ScriptSourceCode const&) + 161
    58 com.apple.WebCore 0x94f5924c WebCore::HTMLTokenizer::scriptExecution(WebCore::ScriptSourceCode const&, WebCore::HTMLTokenizer::State) + 204
    59 com.apple.WebCore 0x94f57e41 WebCore::HTMLTokenizer::scriptHandler(WebCore::HTMLTokenizer::State) + 4353
    60 com.apple.WebCore 0x94f49c9b WebCore::HTMLTokenizer::parseSpecial(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 2267
    61 com.apple.WebCore 0x94f376df WebCore::HTMLTokenizer::parseTag(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 9103
    62 com.apple.WebCore 0x94f34c9b WebCore::HTMLTokenizer::write(WebCore::SegmentedString const&, bool) + 2907
    63 com.apple.WebCore 0x94ff72c6 WebCore::HTMLTokenizer::notifyFinished(WebCore::CachedResource*) + 1174
    64 com.apple.WebCore 0x94ff6ddc WebCore::CachedScript::checkNotify() + 60
    65 com.apple.WebCore 0x94f74af8 WebCore::Loader::Host::didFinishLoading(WebCore::SubresourceLoader*) + 360
    66 com.apple.WebCore 0x94f748fd WebCore::SubresourceLoader::didFinishLoading() + 45
    67 com.apple.Foundation 0x95b8c4a7 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 87
    68 com.apple.Foundation 0x95b8c413 _NSURLConnectionDidFinishLoading + 147
    69 com.apple.CFNetwork 0x95e2ab96 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    70 com.apple.CFNetwork 0x95e2b8e0 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    71 com.apple.CFNetwork 0x95e2a36c URLConnectionClient::processEvents() + 104
    72 com.apple.CFNetwork 0x95dd7dbf MultiplexerSource::perform() + 189
    73 com.apple.CoreFoundation 0x91267595 CFRunLoopRunSpecific + 3141
    74 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    75 com.apple.HIToolbox 0x9005228c RunCurrentEventLoopInMode + 283
    76 com.apple.HIToolbox 0x900520a5 ReceiveNextEventCommon + 374
    77 com.apple.HIToolbox 0x90051f19 BlockUntilNextEventMatchingListInMode + 106
    78 com.apple.AppKit 0x942fdd0d _DPSNextEvent + 657
    79 com.apple.AppKit 0x942fd5c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    80 com.apple.Safari 0x0000cac3 0x1000 + 47811
    81 com.apple.AppKit 0x942f65fb -[NSApplication run] + 795
    82 com.apple.AppKit 0x942c3834 NSApplicationMain + 574
    83 com.apple.Safari 0x000032a2 0x1000 + 8866
    Thread 1:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x94ea0584 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x94e9c409 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    5 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95dab298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    6 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92d79741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x94f08bd5 WebCore::LocalStorageThread::localStorageThread() + 325
    4 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    5 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00026b55 0x1000 + 154453
    5 com.apple.Safari 0x00026870 0x1000 + 153712
    6 com.apple.Safari 0x000267fb 0x1000 + 153595
    7 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    8 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x907fda09 fefragmentthread + 54
    3 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    4 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x95b8a530 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x95b26e0d -[NSThread main] + 45
    6 com.apple.Foundation 0x95b269b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    8 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x91e946fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    2 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92d79741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.Safari 0x0011de33 0x1000 + 1166899
    4 com.apple.Safari 0x0011df21 0x1000 + 1167137
    5 com.apple.Safari 0x00042753 0x1000 + 268115
    6 com.apple.Safari 0x000426cb 0x1000 + 267979
    7 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    8 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x95ee945c pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x95efbd8e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    5 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x95b5b3e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x95b67504 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.Safari 0x00034bc6 0x1000 + 211910
    7 com.apple.Foundation 0x95b26e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x95b269b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    10 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9562b9d1 ecx: 0x1756fa80 edx: 0x17087618
    edi: 0x1756fa80 esi: 0x1708763c ebp: 0xbfffb688 esp: 0xbfffb660
    ss: 0x0000001f efl: 0x00010206 eip: 0x9501ac5c cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0000000c
    Binary Images:
    0x1000 - 0x271ff2 com.apple.Safari 4.0 (5530.17) <f2a6090eab89fe9620270fc7f32156b9> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d0000 - 0x2dfffc SyndicationUI ??? (???) <4bfd6fbc102be03e5fb08374be0ca362> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x2ef000 - 0x3f5ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x11ebd000 - 0x120c4fef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1647f000 - 0x16484ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x166c4000 - 0x166c4ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x16a7d000 - 0x16a83ffd com.apple.JavaVM 12.2.2 (12.2.2) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x178d7000 - 0x178dafef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17957000 - 0x1795a02f +Motion ??? (???) <b5e862eee0ff4f86a78998e3e601a18c> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x17e80000 - 0x17e8efeb libSimplifiedChineseConverter.dylib ??? (???) <baa9dea57e3b49ca537934ab76645bea> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x17e93000 - 0x17ea5fff libTraditionalChineseConverter.dylib ??? (???) <35982309fdf5ddada718fd6fc36dbe96> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1868f000 - 0x186aefed com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x196e2000 - 0x19d05fef +com.macromedia.Flash Player.plugin 10.0.22.87 (1.0.4f872) <860692a215f054b7b9474b410abeb530> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1ae45000 - 0x1aeaafde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x1aeca000 - 0x1af3cfff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1af4a000 - 0x1af90fc3 com.apple.motion.component 1.0 (1.0) <77973a134e79426f853f2318e52a2207> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <b0ea42e222a36a182e4ea30c3d71ce68> /usr/lib/dyld
    0x90003000 - 0x90021fff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x90022000 - 0x9032afff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9032b000 - 0x9037afff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9037b000 - 0x903d8ffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x903d9000 - 0x903f4ffb libPng.dylib ??? (???) <e92ab921713f1c28bc639d68683b8ee3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x903f5000 - 0x903f7ffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x903f8000 - 0x90408fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90409000 - 0x905c5ff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x905d3000 - 0x905fcfff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x905fd000 - 0x90615ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90616000 - 0x90622ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90623000 - 0x9062cfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90662000 - 0x906dcff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x906dd000 - 0x90708fe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x90709000 - 0x90aa6fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90aa7000 - 0x90aa7ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90aa8000 - 0x90b25feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90b26000 - 0x90b4ffff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x90b50000 - 0x90f60fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90f61000 - 0x910e0fff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x910e1000 - 0x91105fff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x91106000 - 0x91106ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9116e000 - 0x9116effd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9116f000 - 0x911affff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x911b0000 - 0x911f2fef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x911f3000 - 0x911f3ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x911f4000 - 0x91327fef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91328000 - 0x91461ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x91462000 - 0x914f5ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x914f6000 - 0x915d6fff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x915d7000 - 0x918b1ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x918b2000 - 0x918c2ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <5c122260176a6bcd9da8c7f8bb567b34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918c3000 - 0x9194fff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91950000 - 0x91a29ff7 com.apple.WebKit 5530 (5530.17) <a7127d7d7f22d74df35aaa16b776912c> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91a2a000 - 0x91d50fe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91d51000 - 0x91d9bfe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91d9c000 - 0x91e43feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91e44000 - 0x91fabff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x91fac000 - 0x92036fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x920af000 - 0x920b1ff5 libRadiance.dylib ??? (???) <6d980a95dd5a8448e2846568cc1458cd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x920b2000 - 0x920b5fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92124000 - 0x92143ffa libJPEG.dylib ??? (???) <348a77547e3646c80704ddfd88f6e008> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92144000 - 0x927e4fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x927f1000 - 0x92937ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <c0d51a3b27fe6977d8db45c84c7ff46b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92ba1000 - 0x92ba8fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x92ba9000 - 0x92c59fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92c5a000 - 0x92c5affe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92c65000 - 0x92c92feb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92d71000 - 0x92ef8feb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92f36000 - 0x92f5afeb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x92f5b000 - 0x92facff7 com.apple.HIServices 1.7.0 (???) <74c3d19e3981d6999630ec516681f079> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92fad000 - 0x930ffff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93100000 - 0x93136fef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x93137000 - 0x931e9ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x931ea000 - 0x931f6ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x931f7000 - 0x932b1fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x932b2000 - 0x932b2ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x933d8000 - 0x933dffff com.apple.agl 3.0.9 (AGL-3.0.9) <2526a28a2fc087c09f9238dd03684513> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x933e0000 - 0x933e5fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <b42b339d6b18d416b81c2d0eaa4f36b9> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x933e6000 - 0x933e6ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x933e7000 - 0x933f6fff libsasl2.2.dylib ??? (???) <c0bb658cd951bbe8882244fc5db4617b> /usr/lib/libsasl2.2.dylib
    0x933f7000 - 0x93436fef libTIFF.dylib ??? (???) <1b5ab7f4bb5251ce1488dd0b1e21ad39> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93437000 - 0x934c3ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x934c4000 - 0x934f6fff com.apple.LDAPFramework 1.4.5 (110) <9ece7a1930b00f7b20ae9ef0759270cf> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x934f7000 - 0x934f8ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x934f9000 - 0x936caffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x936ee000 - 0x9371fffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93723000 - 0x93723ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93724000 - 0x937a3ff5 com.apple.SearchKit 1.2.1 (1.2.1) <4ebff1a287bd6686107fa50d5a21b000> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x937a4000 - 0x93837fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93838000 - 0x93879fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9387a000 - 0x938b1fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x938b2000 - 0x938e1fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x938e2000 - 0x93a71fe7 com.apple.CoreAUC 3.07.3 (3.07.3) <f98585dd6479989bf85beae472aa3656> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x93a72000 - 0x93a76fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93a77000 - 0x93a7effe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x93a7f000 - 0x93a97fff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93a98000 - 0x93aa2feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93aa3000 - 0x93f74fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93f75000 - 0x93f7afff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93f7b000 - 0x94063ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94064000 - 0x94068fff libGIF.dylib ??? (???) <713b902cb8f54365b1c78ff3507494a7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94069000 - 0x94078ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x941e7000 - 0x942aeff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x942af000 - 0x942bcfe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x942bd000 - 0x94abbfef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94bb0000 - 0x94c0cff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94c0d000 - 0x94cb0ff7 com.apple.QuickTimeImporters.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x94cb1000 - 0x94cb6fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94cb7000 - 0x94d98ff7 libxml2.2.dylib ??? (???) <2f6b294896866822330a8888b7f53b75> /usr/lib/libxml2.2.dylib
    0x94d99000 - 0x94d9bfff com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94d9c000 - 0x94da7fe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94da8000 - 0x94da8ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94da9000 - 0x94de7fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94de8000 - 0x94e6fff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x94e70000 - 0x94e98ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94e99000 - 0x95729fff com.apple.WebCore 5530 (5530.17) <9868576f7495c85d5f4513dd4e0f9b95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9572a000 - 0x9579cfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9579d000 - 0x958d5fe7 com.apple.imageKit 1.0.2 (1.0) <f36b085e6878145ea194d53fad37a8e8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x958d6000 - 0x95910ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95911000 - 0x959c8ff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x959c9000 - 0x959deffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x959df000 - 0x959e7fff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x959e8000 - 0x959eefff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x959ef000 - 0x95a55ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95aa8000 - 0x95aa8ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95b1c000 - 0x95d98fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95d99000 - 0x95da7ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x95da8000 - 0x95e4cfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95e4d000 - 0x95e6bff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95e6c000 - 0x95eb5fef com.apple.Metadata 10.5.2 (398.25) <bf7f665f6ad79df3a8355b41fa1ed207> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95eb6000 - 0x95f81fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95f82000 - 0x95fdcff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95fdd000 - 0x95fddfff com.apple.Carbon 136 (136) <4177916bbf70e0ddc446f94001d54c95> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95fde000 - 0x9605bfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96061000 - 0x9607eff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9607f000 - 0x9705aff6 com.apple.QuickTimeComponents.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9705b000 - 0x97062ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x97063000 - 0x97421fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x97422000 - 0x9745cfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9745d000 - 0x974b6ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x974b7000 - 0x974cdfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <8467dfa15de3658db2bd72670166ca93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <1de8124131adeee8e96c4d92413024e1> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Need help in creating custom crosstab reports

    Hello
    I need some help in creating custom crosstab reports.
    My current report shows the number of events that have occured over the time in a day
    The events and the eventdetails are read from the database before being printed on the crosstab
    i.e something like this.
    Note : there are no events between 3:00-3:59,5:00-5:59;6:00-6:59,7:00-7:59  (not present in the database)
    hence not displayed in the reports
    *08/07/2009*         01:00        02:00         04:00          08:00          10:00*
    Event X                    1               1                 4                 1                  3
    Event Y                   3               3                 2                 2                  1
    Total                        4                4                 6                 3                  4
    So far so good...
    Now i have to enhance my reporting application to include the event details which have not happened i.e to include the time details in the crosstab reports where no events have happened
    08/07/2009             01:00        02:00         03:00          04:00          05:00         6:00         07:00         8:00     9:00     10:00
    Event X                     1               1                0                 4                  0             4             0                1            0           3
    Event Y                     3               3                0                 2                  0             2             0                2            0           1
    Total                         4                4                0                 6                  0             6             0                3            0           4
    I have fell short of ideas this time around to implement such a thing
    Any help in this direction is deeply appreciated
    Regards
    Srivatsa
    Edited by: Srivatsa HG on Jul 8, 2009 10:56 AM

    Hi,
    It seems that you are having issue with Crystal Report Design.
    Post your question in [Crystal Report Design Forum|SAP Crystal Reports;
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all Design queries remain in one place and thus can be easily searched in one place.
    Regards,
    Shweta

  • Help me with the following reports

    Hello Experts,
    I need help in designing the following reports.
    Please let me know the logic, tables, any examples to be used while developing the following reports.
    1. report that lists plants and volumes from deliveries.
    2. report to display the Pending Purchase orders for a given period
    3. find the Daily Funds Position
    4. Vendor balances business area wise
    my email address is : [email protected]
    regards,
    sareen
                                      **Useful answers will be rewarded**

    Hi,
    You can try one of the following for Vendor Balances :-
    Transaction Codes of Standard SAP Vendor Balances report.
    <b>S_ALR_87012077
    S_ALR_87012082
    S_ALR_87012093
    S_ALR_87012079
    S_ALR_87012080
    S_ALR_87012081</b>
    Enjoy SAP.
    Pankaj Singh.

  • Difference between Asset Intelligence 09A report and reports in the Software Metering folder

    Dear all,
    I can not seem to grasp the difference between Asset Intelligence 09x reports and reports in the Software Metering folder. Do they extract conclusions based on the same data and which data are those? I also have come to notice that there are occasional dicrepancies
    between them. Why would this be?

    Hi,
    1. Software metering allows you to create a rule and meter application usage very granular, when it is started, how many times , how long it has been used e.t.c, Asset intellegence doesn't require you to create any rules it will only inventory start/stop
    so you can get reports like "all computers that hasn't started a application in x days".
    2.It depends on the license agreement for that application, but yes you can get how many has started a specific application within a timeframe.
    3.No
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • CrashReporter - Could you please help to understand this crash report?

    Could you please help to understand this crash report below?
    If I'm not wrong it started after update the Mac OS X to version 10.5.6 - every startup.
    Note: First update by regular update then after by combo.
    Thanks in advance!
    _ CrashReporter
    Process: aslmanager [218]
    Path: /usr/sbin/aslmanager
    Identifier: aslmanager
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: launchd [1]
    Date/Time: 2009-04-05 08:29:52.069 -0300
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000200000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libSystem.B.dylib 0x952a8a85 asl_get64 + 11
    1 libSystem.B.dylib 0x952aa034 aslfile_fetchpos + 939
    2 libSystem.B.dylib 0x952aa2f6 aslfilematch + 339
    3 aslmanager 0x00002409 0x1000 + 5129
    4 aslmanager 0x00002b3e 0x1000 + 6974
    5 aslmanager 0x0000211a 0x1000 + 4378
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x001ffffc ebx: 0x952a9ca1 ecx: 0x00000000 edx: 0x00000000
    edi: 0x0000ff3d esi: 0x00100b30 ebp: 0xbffffbc8 esp: 0xbffffba0
    ss: 0x0000001f efl: 0x00010286 eip: 0x952a8a85 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00200000
    Binary Images:
    0x1000 - 0x2ffd +aslmanager ??? (???) <201b2dea48b8d80ac1432ff85244ed31> /usr/sbin/aslmanager
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x9444a000 - 0x9444efff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x951a4000 - 0x951abfe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x951ba000 - 0x95321ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    _ Log
    05/04/09 8:25:58 com.apple.loginwindow[35] Shutdown NOW!
    05/04/09 8:25:58 com.apple.loginwindow[35] System shutdown time has arrived
    05/04/09 8:25:58 com.apple.SystemStarter[30] Stopping Missing Sync Listener
    05/04/09 8:25:58 com.apple.SystemStarter[30] Stopping HP Trap Monitor
    05/04/09 8:25:58 com.apple.SystemStarter[30] Stopping HP IO Monitor
    05/04/09 8:25:59 com.apple.SystemStarter[30] kextunload: unload kext /System/Library/Extensions/Pvsnet.kext succeeded
    05/04/09 8:25:59 com.apple.SystemStarter[30] kextunload: unload kext /System/Library/Extensions/ConnectUSB.kext succeeded
    05/04/09 8:26:02 com.apple.SystemStarter[30] kextunload: unload kext /System/Library/Extensions/vmmain.kext succeeded
    05/04/09 8:26:02 com.apple.SystemStarter[30] kextunload: unload kext /System/Library/Extensions/hypervisor.kext succeeded
    05/04/09 8:26:35 com.apple.launchctl.System[2] BootCacheControl: could not open /var/db/BootCache.playlist: No such file or directory
    05/04/09 8:26:35 com.apple.launchctl.System[2] BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    05/04/09 8:26:37 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    05/04/09 8:26:37 com.apple.launchd[1] (com.apple.blued) Unknown key for boolean: EnableTransactions
    05/04/09 8:26:37 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    05/04/09 8:26:37 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    05/04/09 8:26:49 org.ntp.ntpd[27] Error : nodename nor servname provided, or not known
    05/04/09 8:26:57 com.apple.SystemStarter[30] Starting up Missing Sync Listener
    05/04/09 8:26:57 com.apple.SystemStarter[30] Starting HP IO Monitor
    05/04/09 8:26:58 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/hypervisor.kext is already loaded
    05/04/09 8:26:58 com.apple.SystemStarter[30] Starting HP Trap Monitor
    05/04/09 8:26:58 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/vmmain.kext is already loaded
    05/04/09 8:26:59 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/ConnectUSB.kext is already loaded
    05/04/09 8:27:00 com.apple.SystemStarter[30] kextload: extension /System/Library/Extensions/Pvsnet.kext is already loaded
    05/04/09 8:27:00 com.apple.SystemStarter[30] kextload: /Library/StartupItems/Parallels/Pvsvnic.kext loaded successfully
    05/04/09 8:27:06 com.apple.SystemStarter[30] Sun Apr 5 08:27:06 wslys-Mac.local Missing Sync Listener[77] <Warning>: 3891612: (CGSLookupServerRootPort) Untrusted apps are not allowed to connect to or launch Window Server before login.
    05/04/09 8:27:06 com.apple.SystemStarter[30] Sun Apr 5 08:27:06 wslys-Mac.local Missing Sync Listener[77] <Error>: kCGErrorRangeCheck : On-demand launch of the Window Server is allowed for root user only.
    05/04/09 8:27:06 com.apple.SystemStarter[30] Sun Apr 5 08:27:06 wslys-Mac.local Missing Sync Listener[77] <Error>: kCGErrorRangeCheck : Set a breakpoint at CGErrorBreakpoint() to catch errors as they are returned
    05/04/09 8:27:08 com.apple.SystemStarter[30] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    05/04/09 8:27:20 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[123]) Exited: Terminated
    05/04/09 8:27:20 com.apple.launchctl.Aqua[129] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    05/04/09 8:27:20 com.apple.launchd[116] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    05/04/09 8:27:21 com.apple.FolderActions.enabled[130] launchctl: Error unloading: com.apple.FolderActions.folders
    05/04/09 8:27:42 quicklookd[146] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Users/wsly/Downloads/m090374535329zdwg_650ref.mov>'
    05/04/09 8:27:42 Dock[138] [QL ERROR] quicklookd crashed while thumbnailing /Users/wsly/Downloads/m090374535329zdwg_hdref.mov
    05/04/09 8:29:52 com.apple.launchd[1] (com.apple.aslmanager[218]) Exited abnormally: Segmentation fault

    Try repairing the disk through the Mac OS X install disk.

Maybe you are looking for