Is this below code is correct ?

Hi Experts ,
Plz check the below , is this code will work or not ?
*&      Form  job_logic
FORM job_logic .
  SELECT * FROM zt68 INTO TABLE v_zt68_tab.
  LOOP AT v_final_tab.
    IF v_zt68_tab-jobname(2) EQ 'SA' AND v_zt68_tab-jobname+8(4) NE '-CA7'.
      IF v_zt68_tab-jobtype EQ 'LGY'.
        IF v_zt68_tab-jobid NE 'D O N E'.
          SELECT jobname jobtype jobid sdlstrtdt sdlstrttm
                 msg1 msg2 msg3 msg4 msg5 msg6 FROM zt68
                 INTO CORRESPONDING FIELDS OF TABLE l_zt68_tab
                                    WHERE jobname EQ v_zt68_tab-jobname
                                      AND jobtype EQ v_zt68_tab-jobtype
                                      AND jobid   NE v_zt68_tab-jobid
                                      AND msg1    EQ zt68-msg1
                                      AND msg2    EQ zt68-msg2
                                      AND msg3    EQ zt68-msg3
                                      AND msg4    EQ zt68-msg4
                                      AND msg5    EQ zt68-msg5
                                      AND msg6    EQ zt68-msg6.
          IF sy-subrc EQ 0.
            CONCATENATE zt68-msg1 zt68-msg2 zt68-msg3 zt68-msg4
                                 zt68-msg5 zt68-msg6 INTO msg.
            MOVE msg TO l_zt68_tab-i_msg.
          ELSE.
            MESSAGE i001(z001).
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    IF l_zt68_tab[] IS NOT INITIAL.
      SELECT jobname jobtype owner text expected_day FROM
           zt67 INTO CORRESPONDING FIELDS OF TABLE l_zt67_tab
                                WHERE jobname EQ l_zt68_tab-jobname
                                  AND jobtype EQ l_zt68_tab-jobtype.
Aging
      IF sy-subrc EQ 0.
        i_cmpdate = sy-datum+6(2) - l_zt67_tab-expected_day.
        CONCATENATE sy-datum l_zt67_tab-expected_day
                            INTO i_cmpdate.
        MOVE i_cmpdate TO v_final_tab-datum.
      ENDIF.
      IF l_zt67_tab[] IS NOT INITIAL.
        SELECT contact_name FROM zt107 INTO TABLE l_zt107_tab WHERE
                                          owner EQ l_zt67_tab-owner.
      ENDIF.
    ENDIF.
    MOVE-CORRESPONDING l_zt68_tab TO v_final_tab.
    MOVE-CORRESPONDING l_zt67_tab TO v_final_tab.
    MOVE-CORRESPONDING l_zt107_tab TO v_final_tab.
    APPEND v_final_tab.
  ENDLOOP.
ENDFORM.                    " logic
v_final_tab is final internal table using for output display through ALV Grid.
Thnx.

Hi,
Follow the below code it may be useful for you.
*& Report  ZRJ_SPEC_BUDGET_ACTUAL_COMMIT
REPORT  ZRJ_SPEC_BUDGET_ACTUAL_COMMIT.
INITIALIZATION.
TYPE-POOLS : SLIS.
PARAMETERS: P_COAREA TYPE COAS-KOKRS DEFAULT 1000,
            P_INTORD TYPE COAS-AUFNR DEFAULT 000000900043,
            P_FISCAL TYPE BPJA-GJAHR DEFAULT 2007.
* DATA TYPE DECLARATION
TYPES : BEGIN OF TY_COAS,
          IONO TYPE COAS-AUFNR,
          ORTYP TYPE COAS-AUART,
          AMT3 TYPE EKBZ-DMBTR,
        END OF TY_COAS,
        BEGIN OF TY_EKKN,
          PONO TYPE EKKN-EBELN,
          ITNO TYPE EKKN-EBELP,
          IONO TYPE EKKN-AUFNR,
*EKKO FIELD
          POTYP TYPE EKKO-BSART,
          POCUR TYPE EKKO-WAERS,
          EXCRT TYPE EKKO-WKURS,
*EKET FIELD
          DELDT TYPE EKET-EINDT,
*EKPO FIELD
          QTY1 TYPE EKPO-MENGE,
          AMT1 TYPE EKKO-WKURS,
*EKBE FIELD
          QTY2 TYPE EKBE-MENGE,
          AMT21 TYPE EKBE-DMBTR,
*EKBZ FIELD
          AMT22 TYPE EKBZ-DMBTR,
          QTY3 TYPE EKBZ-MENGE,
          AMT33 TYPE EKBZ-DMBTR,
* BPJA FIELD OR  BPGE FIELD ''' DEPENDS ON CONDITION
          AMT4 TYPE BPJA-WTJHR,
       END OF TY_EKKN,
        BEGIN OF TY_EKKO,
          PONO TYPE EKKO-EBELN,
          POTYP TYPE EKKO-BSART,
          POCUR TYPE EKKO-WAERS,
          EXCRT TYPE EKKO-WKURS,
       END OF TY_EKKO,
       BEGIN OF TY_EKET,
         PONO TYPE EKET-EBELN,
         ITNO TYPE EKKN-EBELP,
         DELDT TYPE EKET-EINDT,
       END OF TY_EKET,
       BEGIN OF TY_EKPO,
         PONO TYPE EKET-EBELN,
         ITNO TYPE EKKN-EBELP,
         QTY1 TYPE EKPO-MENGE,
      END OF TY_EKPO,
      BEGIN OF TY_EKBE,
         PONO TYPE EKET-EBELN,
         ITNO TYPE EKKN-EBELP,
         QTY2 TYPE EKBE-MENGE,
         AMT21 TYPE EKBE-DMBTR,
         SHKZG TYPE EKBE-SHKZG,
         BUDAT TYPE EKBE-BUDAT,
      END OF TY_EKBE,
      BEGIN OF TY_EKBZ,
         PONO TYPE EKBZ-EBELN,
         ITNO TYPE EKBZ-EBELP,
         AMT22 TYPE EKBZ-DMBTR,
         SHKZG TYPE EKBZ-SHKZG,
         BUDAT TYPE EKBZ-BUDAT,
      END OF TY_EKBZ,
      BEGIN OF TY_EBKN,
        IONO TYPE EBKN-AUFNR,
        PRNO TYPE EBKN-BANFN,
        ITNO TYPE EBKN-BNFPO,
        AMT6 TYPE EBAN-MENGE,
      END OF TY_EBKN,
      BEGIN OF TY_EBAN,
        PRNO TYPE EBAN-BANFN,
        ITNO TYPE EBAN-BNFPO,
        STATU TYPE EBAN-STATU,
        LOEKZ TYPE EBAN-LOEKZ,
        MENGE TYPE EBAN-MENGE,
        PREIS TYPE EBAN-PREIS,
      END OF TY_EBAN,
      BEGIN OF TY_BPJA,
        OBJNR TYPE BPJA-OBJNR,
        WRTTP TYPE BPJA-WRTTP,
        GJAHR TYPE BPJA-GJAHR,
        WTJHR TYPE BPJA-WTJHR,
      END OF TY_BPJA,
        BEGIN OF TY_BPGE,
        OBJNR TYPE BPGE-OBJNR,
        WRTTP TYPE BPGE-WRTTP,
        WTGES TYPE BPGE-WTGES,
      END OF TY_BPGE.
* DATA OBJECT DECLARATION FOR REPORT
DATA: IT_COAS TYPE STANDARD TABLE OF TY_COAS,
      WA_COAS TYPE TY_COAS,
      IT_EKKN TYPE STANDARD TABLE OF TY_EKKN,
      WA_EKKN TYPE TY_EKKN,
      IT_EKKO TYPE STANDARD TABLE OF TY_EKKO,
      WA_EKKO TYPE TY_EKKO,
      IT_EKET TYPE STANDARD TABLE OF TY_EKET,
      WA_EKET TYPE TY_EKET,
      IT_EKPO TYPE STANDARD TABLE OF TY_EKPO,
      WA_EKPO TYPE TY_EKPO,
      IT_EKBE TYPE STANDARD TABLE OF TY_EKBE,
      WA_EKBE TYPE TY_EKBE,
      IT_EKBZ TYPE STANDARD TABLE OF TY_EKBZ,
      WA_EKBZ TYPE TY_EKBZ,
      IT_EBKN TYPE STANDARD TABLE OF TY_EBKN,
      WA_EBKN TYPE TY_EBKN,
      IT_EBAN TYPE STANDARD TABLE OF TY_EBAN,
      WA_EBAN TYPE TY_EBAN,
       IT_BPJA TYPE STANDARD TABLE OF TY_BPJA,
      WA_BPJA TYPE TY_BPJA,
      IT_BPGE TYPE STANDARD TABLE OF TY_BPGE,
      WA_BPGE TYPE TY_BPGE,
      SUM_S_ME TYPE EKBE-MENGE,
      SUM_H_ME TYPE EKBE-MENGE,
      SUM_TOTME TYPE EKBE-MENGE,
      SUM_S_DMBTR TYPE EKBE-MENGE,
      SUM_H_DMBTR TYPE EKBE-MENGE,
      SUM_TOTDMBTR TYPE EKBE-MENGE,
      FLAG TYPE I,
      SUM_AMT4 TYPE BPJA-WTJHR.
*  "DATA OBJECT DECLARATION for ALV
DATA: IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,    " FOR PASSING FIELDCAT VALUE
       G_REPID LIKE SY-REPID,  " FOR PASSING REPORT ID
       IT_HEADER TYPE SLIS_T_LISTHEADER,   " FOR PASSING HEADER'
       IT_SORT TYPE SLIS_T_SORTINFO_ALV.
* START OF SELECTION
START-OF-SELECTION.
G_REPID = SY-REPID.
SELECT AUFNR AUART FROM COAS INTO TABLE IT_COAS
        WHERE AUFNR = P_INTORD AND KOKRS = P_COAREA .
CHECK IT_COAS IS NOT INITIAL.
    SELECT EBELN EBELP AUFNR FROM EKKN INTO TABLE IT_EKKN
      FOR ALL ENTRIES IN IT_COAS
          WHERE AUFNR = IT_COAS-IONO AND KOKRS = P_COAREA .
CHECK IT_EKKN IS NOT INITIAL.
    SELECT EBELN BSART WAERS WKURS FROM EKKO INTO TABLE IT_EKKO
      FOR ALL ENTRIES IN IT_EKKN WHERE EBELN = IT_EKKN-PONO.
    SELECT EBELN EBELP EINDT FROM EKET INTO TABLE IT_EKET
      FOR ALL ENTRIES IN IT_EKKN WHERE EBELN = IT_EKKN-PONO AND EBELP = IT_EKKN-ITNO AND EINDT <= P_FISCAL.
    SELECT EBELN EBELP MENGE FROM EKPO INTO TABLE IT_EKPO
      FOR ALL ENTRIES IN IT_EKKN WHERE EBELN  = IT_EKKN-PONO AND EBELP = IT_EKKN-ITNO .
    SELECT EBELN EBELP MENGE DMBTR SHKZG BUDAT FROM EKBE INTO TABLE IT_EKBE
      FOR ALL ENTRIES IN IT_EKKN
      WHERE EBELN  = IT_EKKN-PONO AND EBELP = IT_EKKN-ITNO AND VGABE = 1 AND BUDAT <= P_FISCAL .
     SELECT EBELN EBELP DMBTR SHKZG BUDAT FROM EKBZ INTO TABLE IT_EKBZ
      FOR ALL ENTRIES IN IT_EKKN
      WHERE EBELN  = IT_EKKN-PONO AND EBELP = IT_EKKN-ITNO AND VGABE = 1 AND BUDAT <= P_FISCAL .
    LOOP AT IT_EKBE INTO WA_EKBE.
        IF WA_EKBE-SHKZG = 'S'.
         SUM_S_ME = SUM_S_ME + WA_EKBE-QTY2.
         SUM_S_DMBTR = SUM_S_DMBTR + WA_EKBE-AMT21 .
        ELSEIF WA_EKBE-SHKZG = 'H'.
          SUM_H_ME = SUM_H_ME +  WA_EKBE-QTY2.
          SUM_H_DMBTR = SUM_H_DMBTR + WA_EKBE-AMT21 .
       ENDIF.
         SUM_TOTME = SUM_TOTME + ( SUM_S_ME - SUM_H_ME ).
         SUM_TOTDMBTR = SUM_TOTDMBTR + ( SUM_S_DMBTR - SUM_H_DMBTR ).
         WA_EKBE-QTY2 = SUM_TOTME.
         WA_EKBE-AMT21 = SUM_TOTDMBTR.
          CLEAR SUM_TOTME.
          CLEAR SUM_TOTDMBTR.
         MODIFY IT_EKBE FROM WA_EKBE TRANSPORTING QTY2 AMT21.
    ENDLOOP.
    CLEAR :  SUM_S_ME ,
            SUM_H_ME ,
            SUM_TOTME ,
            SUM_S_DMBTR ,
            SUM_H_DMBTR ,
            SUM_TOTDMBTR .
    LOOP AT IT_EKBZ INTO WA_EKBZ.
        IF WA_EKBZ-SHKZG = 'S'.
                   SUM_S_DMBTR = SUM_S_DMBTR + WA_EKBZ-AMT22 .
        ELSEIF WA_EKBZ-SHKZG = 'H'.
                  SUM_H_DMBTR = SUM_H_DMBTR + WA_EKBZ-AMT22 .
       ENDIF.
                SUM_TOTDMBTR = SUM_TOTDMBTR + ( SUM_S_DMBTR - SUM_H_DMBTR ).
         WA_EKBZ-AMT22 = SUM_TOTDMBTR.
          CLEAR SUM_TOTDMBTR.
          MODIFY IT_EKBZ FROM WA_EKBZ TRANSPORTING AMT22.
    ENDLOOP.
CHECK IT_COAS IS NOT INITIAL.
    SELECT AUFNR BANFN BNFPO FROM EBKN INTO TABLE IT_EBKN
      FOR ALL ENTRIES IN IT_COAS
      WHERE AUFNR = IT_COAS-IONO AND KOKRS = P_COAREA.
CHECK IT_EBKN IS NOT INITIAL.
    SELECT BANFN BNFPO STATU LOEKZ MENGE PREIS FROM EBAN INTO TABLE IT_EBAN
      FOR ALL ENTRIES IN IT_EBKN
      WHERE BANFN =  IT_EBKN-PRNO AND BNFPO = IT_EBKN-ITNO AND STATU IN ('B','L','S').
  LOOP AT IT_EBKN INTO WA_EBKN.
      READ TABLE IT_EBAN INTO WA_EBAN WITH KEY PRNO = WA_EBKN-PRNO
                                               ITNO = WA_EBKN-ITNO.
      WA_EBKN-AMT6 = WA_EBAN-MENGE * WA_EBAN-PREIS .
    MODIFY IT_EBKN FROM WA_EBKN TRANSPORTING AMT6.
    READ TABLE IT_COAS INTO WA_COAS WITH KEY IONO  = WA_EBKN-IONO.
*        MESSAGE 'RR' TYPE 'I'.
  ENDLOOP.
  LOOP AT IT_COAS INTO WA_COAS.
  CONCATENATE 'OR' WA_COAS-IONO INTO WA_COAS-IONO.
    IF WA_COAS-ORTYP+0(3) = 'HOP' OR WA_COAS-ORTYP = 'CAPX' OR WA_COAS-ORTYP = 'ONOF'.
        SELECT OBJNR WRTTP GJAHR WTJHR FROM BPJA INTO TABLE IT_BPJA
          WHERE  OBJNR = WA_COAS-IONO AND WRTTP = 41 AND GJAHR <= P_FISCAL .
            FLAG = 0.
    ELSE.
         SELECT OBJNR WRTTP WTGES FROM BPGE INTO TABLE IT_BPGE
           WHERE OBJNR = WA_COAS-IONO AND WRTTP = 41.
            FLAG = 1.
    ENDIF.
  ENDLOOP.
LOOP AT IT_EKKN INTO WA_EKKN.
  READ TABLE IT_EKKO INTO WA_EKKO WITH KEY PONO = WA_EKKN-PONO.
      IF SY-SUBRC = 0.
      WA_EKKN-POTYP = WA_EKKO-POTYP.
      WA_EKKN-POCUR = WA_EKKO-POCUR.
      WA_EKKN-EXCRT = WA_EKKO-EXCRT.
      ENDIF.
   READ TABLE IT_EKET INTO WA_EKET WITH KEY PONO = WA_EKKN-PONO
                                            ITNO = WA_EKKN-ITNO.
      IF SY-SUBRC = 0.
        WA_EKKN-DELDT = WA_EKET-DELDT.
      ENDIF.
   READ TABLE IT_EKBE INTO WA_EKBE WITH KEY  PONO = WA_EKKN-PONO
                                            ITNO = WA_EKKN-ITNO.
        IF SY-SUBRC = 0.
          WA_EKKN-QTY2 = WA_EKBE-QTY2.
          WA_EKKN-AMT21 = WA_EKBE-AMT21.
        ENDIF.
   READ TABLE IT_EKBZ INTO WA_EKBZ WITH KEY  PONO = WA_EKKN-PONO
                                            ITNO = WA_EKKN-ITNO.
        IF SY-SUBRC = 0.
          WA_EKKN-AMT22 = WA_EKBZ-AMT22.
        ENDIF.
    IF FLAG = 0.
      READ TABLE IT_BPJA INTO WA_BPJA INDEX 1.
      IF SY-SUBRC = 0.
        SUM_AMT4 = SUM_AMT4 + WA_BPJA-WTJHR.
        WA_EKKN-AMT4 = WA_EKKN-AMT4 + SUM_AMT4.
     ENDIF.
      ELSEIF FLAG = 1.
      READ TABLE IT_BPGE INTO WA_BPGE INDEX 1.
      IF SY-SUBRC = 0.
        SUM_AMT4 = SUM_AMT4 + WA_BPGE-WTGES.
        WA_EKKN-AMT4 = WA_EKKN-AMT4 + SUM_AMT4.
     ENDIF.
   ENDIF.
    MODIFY IT_EKKN FROM WA_EKKN TRANSPORTING POTYP POCUR EXCRT DELDT QTY2 AMT21 AMT22 AMT4.
      READ TABLE IT_EKPO INTO WA_EKPO WITH KEY PONO = WA_EKKN-PONO
                                            ITNO = WA_EKKN-ITNO.
            IF SY-SUBRC = 0 AND WA_EKKN-POCUR <> 'INR'  .
                WA_EKKN-QTY1 = WA_EKPO-QTY1.
                WA_EKKN-AMT1 = WA_EKKN-EXCRT * WA_EKKN-AMT1.
            ENDIF.
    MODIFY IT_EKKN FROM WA_EKKN TRANSPORTING QTY1 AMT1.
    WA_EKKN-QTY3 = WA_EKKN-QTY1 - WA_EKKN-QTY2.
    WA_EKKN-AMT33 = ( ( WA_EKKN-AMT1 / WA_EKKN-QTY1 )  * WA_EKKN-QTY3 ).
    MODIFY IT_EKKN FROM WA_EKKN TRANSPORTING QTY3 AMT33.
    READ TABLE IT_COAS INTO WA_COAS with KEY IONO = WA_EKKN-IONO.
*      *    MESSAGE 'RA' TYPE 'I'.
ENDLOOP.
PERFORM BUILD_HEADER USING IT_HEADER[].
PERFORM TOP_OF_PAGE.
PERFORM FIELD_CAT USING IT_FIELDCAT[].
PERFORM it_sort_functionality using it_sort[].
PERFORM ALV_GRID_DISPLAY.
  FORM BUILD_HEADER  USING  P_IT_HEADER TYPE SLIS_T_LISTHEADER..
    DATA: WA_LISTHEADER TYPE SLIS_LISTHEADER.
    DATA: TEXT(50) TYPE C,
          DT(10),
          DT1(10).
    WA_LISTHEADER-TYP = 'H'.
    WA_LISTHEADER-INFO = 'ITC LIMITED – BUDGET ACTUAL COMMIT'.
    APPEND WA_LISTHEADER TO P_IT_HEADER.
    CLEAR WA_LISTHEADER.
    WRITE SY-DATUM TO DT DD/MM/YYYY.
    CONCATENATE 'DATE :' DT INTO TEXT.
    WA_LISTHEADER-TYP = 'S'.
    WA_LISTHEADER-INFO = TEXT.
    APPEND WA_LISTHEADER TO P_IT_HEADER.
    CLEAR WA_LISTHEADER.
    CLEAR DT.
    CONCATENATE 'CONTROLLING AREA :' P_COAREA INTO TEXT.
    WA_LISTHEADER-TYP = 'S'.
    WA_LISTHEADER-INFO = TEXT.
    APPEND WA_LISTHEADER TO P_IT_HEADER.
    CLEAR WA_LISTHEADER.
    CONCATENATE 'ORDER NO : ' P_INTORD INTO TEXT.
    WA_LISTHEADER-TYP = 'S'.
    WA_LISTHEADER-INFO = TEXT.
    APPEND WA_LISTHEADER TO P_IT_HEADER.
    CLEAR WA_LISTHEADER.
*    CONCATENATE 'DATE: ' SO_DATE INTO TEXT.
    WA_LISTHEADER-TYP = 'S'.
    WA_LISTHEADER-INFO = 'DEVELOPED BY RAJAN'.
    APPEND WA_LISTHEADER TO P_IT_HEADER.
    CLEAR WA_LISTHEADER.
  ENDFORM.                    " BUILD_HEADER
FORM TOP_OF_PAGE .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
      EXPORTING
        IT_LIST_COMMENTARY = IT_HEADER[]
        I_LOGO             = 'ENJOYSAP_LOGO'.
*   I_END_OF_LIST_GRID       =
*   I_ALV_FORM               =
  ENDFORM.                    " TOP_OF_PAGE
FORM FIELD_CAT  USING P_IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'PONO'.
    WA_FIELDCAT-ref_fieldname = 'EBELN'.
    WA_FIELDCAT-REF_TABNAME   = 'EKKN'.
*     WA_FIELDCAT-DO_SUM           = 'X'.
    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'ITNO'.
    WA_FIELDCAT-ref_fieldname = 'EBELP'.
    WA_FIELDCAT-REF_TABNAME   = 'EKKN'.
*     WA_FIELDCAT-DO_SUM           = 'X'.
    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'IONO'.
    WA_FIELDCAT-ref_fieldname = 'AUFNR'.
    WA_FIELDCAT-REF_TABNAME   = 'EKKN'.
*     WA_FIELDCAT-DO_SUM           = 'X'.
    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'POTYP'.
    WA_FIELDCAT-ref_fieldname = 'BSART'.
    WA_FIELDCAT-REF_TABNAME   = 'EKKO'.
*     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'POCUR'.
    WA_FIELDCAT-ref_fieldname = 'WAERS'.
    WA_FIELDCAT-REF_TABNAME   = 'EKKO'.
*     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'EXCRT'.
    WA_FIELDCAT-ref_fieldname = 'WKURS'.
    WA_FIELDCAT-REF_TABNAME   = 'EKKO'.
*     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'DELDT'.
    WA_FIELDCAT-ref_fieldname = 'EINDT'.
    WA_FIELDCAT-REF_TABNAME   = 'EKET'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'QTY1'.
    WA_FIELDCAT-SELTEXT_L = 'QTY1'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'AMT1'.
    WA_FIELDCAT-SELTEXT_L = 'AMOUNT 1'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'QTY2'.
    WA_FIELDCAT-SELTEXT_L = 'QTY 2'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'AMT21'.
    WA_FIELDCAT-SELTEXT_L = 'AMT 21'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'AMT22'.
    WA_FIELDCAT-SELTEXT_L = 'AMT22'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'QTY3'.
    WA_FIELDCAT-SELTEXT_L = 'QTY 3'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'AMT33'.
    WA_FIELDCAT-SELTEXT_L = 'AMT 33'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
clear WA_FIELDCAT.
    WA_FIELDCAT-FIELDNAME     = 'AMT4'.
    WA_FIELDCAT-SELTEXT_L = 'AMT 4'.
     WA_FIELDCAT-DO_SUM           = 'X'.
*    WA_FIELDCAT-KEY           = 'X'.
    APPEND WA_FIELDCAT TO  P_IT_FIELDCAT.
  ENDFORM.                    " FIELD_CAT
FORM it_sort_functionality  USING P_IT_SORT TYPE SLIS_T_SORTINFO_ALV.
    DATA: LS_SORT TYPE SLIS_SORTINFO_ALV.
    LS_SORT-FIELDNAME = 'PONO'.
    LS_SORT-SPOS      = 1.
    LS_SORT-UP        = 'X'.
    LS_SORT-SUBTOT    = 'X'.
    APPEND LS_SORT TO P_IT_SORT.
    LS_SORT-FIELDNAME = 'ITNO'.
    LS_SORT-SPOS      = 1.
    LS_SORT-UP        = 'X'.
    LS_SORT-SUBTOT    = 'X'.
    APPEND LS_SORT TO P_IT_SORT.
ENDFORM.                    " it_sort_functionality
FORM ALV_GRID_DISPLAY .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
     EXPORTING
*   I_INTERFACE_CHECK                 = ' '
*   I_BYPASSING_BUFFER                = ' '
*   I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = G_REPID
*   I_CALLBACK_PF_STATUS_SET          = ' '
       I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
       I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
*   I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
*   I_CALLBACK_HTML_END_OF_LIST       = ' '
*   I_STRUCTURE_NAME                  =
*   I_BACKGROUND_ID                   = ' '
*   I_GRID_TITLE                      =
*   I_GRID_SETTINGS                   =
*   IS_LAYOUT                         = IT_LAYOUT
       IT_FIELDCAT                    = IT_FIELDCAT[]
*   IT_EXCLUDING                      =
*   IT_SPECIAL_GROUPS                 =
   IT_SORT                           = it_sort[]
*   IT_FILTER                         =
*   IS_SEL_HIDE                       =
*   I_DEFAULT                         = 'X'
*   I_SAVE                            = ' '
*   IS_VARIANT                        =
*   IT_EVENTS                         =
*   IT_EVENT_EXIT                     =
*   IS_PRINT                          =
*   IS_REPREP_ID                      =
*   I_SCREEN_START_COLUMN             = 0
*   I_SCREEN_START_LINE               = 0
*   I_SCREEN_END_COLUMN               = 0
*   I_SCREEN_END_LINE                 = 0
*   I_HTML_HEIGHT_TOP                 = 0
*   I_HTML_HEIGHT_END                 = 0
*   IT_ALV_GRAPHICS                   =
*   IT_HYPERLINK                      =
*   IT_ADD_FIELDCAT                   =
*   IT_EXCEPT_QINFO                   =
*   IR_SALV_FULLSCREEN_ADAPTER        =
* IMPORTING
*   E_EXIT_CAUSED_BY_CALLER           =
*   ES_EXIT_CAUSED_BY_USER            =
      TABLES
        T_OUTTAB                       = IT_EKKN
     EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
  ENDFORM.                    " ALV_GRID_DISPLAY
Thanks & regards,
Dhruv shah

Similar Messages

  • Can you see this below code and explan me how it is executed

    if (!user.authenticate (username,password))
                   error = true;
                   errMsg = "<li>Username or password is invalid.</li>";
    errMsg = errMsg+"some test";               session.setAttribute("error",errMsg);
    response.sendRedirect("login123456.jsp?username="+username);
    aUser = UserLock.getUsernoLocked(usr);
    String lock =""+aUser.get("LOCKED");
    int locked=Integer.parseInt(lock);
         if (locked!=0)
    errMsg ="<li>Your user account has been locked </li>
              } else {......>if user is authorised cursor goes here---------
    at what condtion the staments after response.sendRedirect("....") is executing.....
    any possiblites......is there that code is executing...
    can u please tell me...

    at what condtion the staments after
    response.sendRedirect("....") is executing.....As soon as the call to sendRedirect() returns.
    any possiblites......is there that code is
    executing...Of course it will execute. But the real question is, why is it there anyway? When you call sendRedirect(), you tell the client to create a new request for some other servlet or JSP. What's the point of continuing to process the current request?
    Or to put it another way, why do you have code in a place where you (mistakenly) don't expect it to run?

  • Want to Incerese the performence for below code.

    Hi everyone.
    Please can anyone help me in improving the perfoemence for this below code.
      LOOP AT IT_EBAN INTO WA_EBAN.
    MOVE WA_EBAN-TXZ01 TO WA_ZTOBI_PUR_RQ_LD-TXZ01.
                    MOVE WA_EBAN-MATKL TO WA_ZTOBI_PUR_RQ_LD-MATKL.
                    IF WA_EBAN-BADAT > WA_EBAN-ERDAT.
                      MOVE WA_EBAN-BADAT TO WA_ZTOBI_PUR_RQ_LD-CHANGED_DATE.
                      WA_ZTOBI_PUR_RQ_LD-CHNGIND = LC_I.
                    ELSEIF WA_EBAN-BADAT <= WA_EBAN-ERDAT.
                      MOVE WA_EBAN-ERDAT TO WA_ZTOBI_PUR_RQ_LD-CHANGED_DATE.
                      IF WA_EBAN-LOEKZ = SPACE.
                        WA_ZTOBI_PUR_RQ_LD-CHNGIND = LC_U.
                      ELSEIF WA_EBAN-LOEKZ = LC_X.
                        WA_ZTOBI_PUR_RQ_LD-CHNGIND = LC_D.
                      ENDIF.
                    ENDIF.
            IF WA_EBAN-BSMNG NE 0.
            SELECT EBELN LOEKZ EBELP FROM EKPO INTO TABLE IT_EKPO WHERE BANFN = WA_EBAN-BANFN AND BNFPO = WA_EBAN-BNFPO.
    *If Purchase Orders found
            IF NOT IT_EKPO[] IS INITIAL.
              LOOP AT IT_EKPO INTO WA_EKPO.
                SELECT BEDAT FRGRL PROCSTAT FROM EKKO INTO TABLE IT_EKKO WHERE EBELN = WA_EKPO-EBELN.
                READ TABLE IT_EKKO INTO WA_EKKO INDEX 1.
                IF WA_EKPO-LOEKZ = ''                                 
                    ENDloop.
    Edited by: kumar.p.D on Jan 15, 2010 6:02 AM
    Edited by: kumar.p.D on Jan 15, 2010 6:05 AM
    Moderator message - You have violated at least two forum rules. Please see Please read "The Forum Rules of Engagement" before posting!  HOT NEWS!! and Please Read before Posting in the Performance and Tuning Forum before posting - post locked
    Edited by: Rob Burbank on Jan 15, 2010 9:15 AM

    In pseudocode:
    1.-  Declare it_ekpo as sorted table with key banfn bnfpo, and add the others fields you need.
          Declare it_ekko as sorted table with key ebeln, and add the others fields you need.
          Declare an internal table like it_eban, ie: it_eban2.
          Declare field-symbol like line of it_eban.
          Declare field-symbol like line ot it_ekpo and other like line it_ekko.
      2.-   it_eban2[]= it_eban[].
            delete it_eban2 where bsmng = 0.
            use it_eban2 in select for all entries to ekpo filling it_ekpo.
            use it_ekpo in select for all entries to ekko.
            free it_eban2.
       3.-  sort it_eban by banfn and bnfpo.
             loop at it_eban assigning the field-symbol instead of into.
             if bsmng <> 0.
              loop it_ekpo assigning field symbol where banfn and bnfpo.
                 at new ebeln.
                      read table it_ekko assigning field symbol with key ebeln.
                 endat
              endloop.
             endif.
             endloop.
      I hope it works  ...
    Edited by: Diego Alvarez on Jan 15, 2010 10:21 AM
    Edited by: Diego Alvarez on Jan 15, 2010 10:27 AM
    Edited by: Diego Alvarez on Jan 15, 2010 10:30 AM

  • How to improve performance of the below code.

    Hello.
    This below code is show 80% database performance in runtime analysis ( transaction SE30). I am using view KNA1VV for retrieving data using customer and sales area from selection screen.
    Please advice how can I improve the performance of below code.
    Fetch the customer details from view KNA1VV
      SELECT kunnr
             vkorg
             vtweg
             spart
             land1
             name1
             ort01
             pstlz
             regio
             stras
            INTO TABLE t_cust
            FROM kna1vv
      WHERE kunnr IN s_kunnr
      AND   vkorg IN s_vkorg
      AND   vtweg IN s_vtweg
      AND   spart IN s_spart
      AND   loevm = space
      AND   loevm_knvv = space.
      IF sy-subrc EQ 0.
        SORT t_cust BY kunnr.
      ELSE.
        w_flag = c_true_x.
      ENDIF.
    Fetch customers for entered company code
      IF NOT t_cust[] IS INITIAL AND NOT s_bukrs IS INITIAL.
        SELECT kunnr
               FROM knb1
               INTO TABLE lt_knb1
               FOR ALL ENTRIES IN t_cust
        WHERE kunnr = t_cust-kunnr
        AND   bukrs IN s_bukrs
        AND   loevm = space.
    Thanks,

    80% is just a relation and must not be problematic, what about the absolute runtime, is that acceptable?
    Also, your range S_KUNNR could contain anything from a single value (super fast) to nothing (probably slow, depends on number of entries in KNA1VV), so what do you expect here?
    Thomas

  • I cannot install i got this : Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR:   -------------------------------------- Summary --------------------------------------  - 0 fatal error(s), 0 error(s)

    i cannot install the newer version
    i got this  :
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s)

    Code 6 & Code 7 http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    AND JUST FOR MAC USERS - Some 10.9.3 links
    -Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    -more Mac 10.9.3 https://forums.adobe.com/thread/1491469
    -Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0

  • The tax code entered is not defined in the country for this company code

    HI ALL
    when we relase billing document to finance i am getting this below error
    Diagnosis
        The tax code entered is not defined in the country for this
        company code.
    System Response
    Procedure
        Check and, if necessary, correct the entry.
    Procedure for System Administration
        If it is not an input error, check and possibly change the
        system settings.
        To do this, choose Maintain entries (F5).
        1.  Check whether the required tax determination procedure
            is assigned to the relevant country. the Procedure
            field is in the detail screen.
        2.  Create a new tax code if required.
    Thanks & Regards
    Aarman

    You can define the tax code for your country using the following menupath in customizing:
    IMG>Financial Accounting>Financial Accounting Global Settings>Tax on Sales and Purchases>Calculation-->Define tax codes ........... in the next screen enter your country and then the tax code you wish to create and press enter. You would be then directed to another screen, where you would maintain the description and whether it is a  Input tax or Output tax and then maintain the appropriate tax percentage and save.
    Your country should also be assigned to a calculation procedure. You check the same using the same menupath as mentioned above: .............Tax on Sales and purchases>Basic Settings>Assign country to calculation procedure........In the next screen, enter the appropriate tax procedure for your country. Eg: for country DE assign tax procedure as TAXD and save.
    Hope this helps.
    Regards
    SATYA

  • How to insert record inside the internal table in below code

    Hi all,
    My requirement is to find the sub-total and need to insert in between the internal table.
    You can see the output ....where I want the sub-total F2 when 1 & 2 combindely , 3 , 4& 5 combindely .Please check it and let me know is it possible
    when i am using modification  it is not creating extra row inside the table instead it is modifying one row and putting the total there.
    For ex: the origianl output is
    F1   F2       F3
    A      1          1
    B      1          1
    F      2          1
    D      3          1
    E      4          1
    C      5          1
    We want to display all the total of f2 of 1-2 , 3 , 4-5
    so expcected output is
    F1   F2       F3
    A      1          1
    B      1          1
    F      2          1
         *              3  ->This is the sub-total of 1& 2 of f2
    D      3          1
            *           1 ->this is the sub-total of 3
    E      4          1
    C      5          1
          *             2 -> this is the sub-total of 4 & 5
    = space
    But coming output is
    A 1          1
    B 1          1
    *             3 -> it is modifying the F row and inserting the total .Total is comong correct but is shoule insert  instead of modifying the record!!
      *           1
    E  4          1
    *             2
    Please help how to insert the row total at the end of the chage of field
    Please find the below code ..Due to space problem i am attaching below
    Sas

    Here is the solution ....i Got the answer Thanks for your helping hands friends
    REPORT  YTEST_MODIFY.
    DATA: BEGIN OF ITAB OCCURS 1,
    TOT TYPE C,
    F1 TYPE C,
    F2 TYPE C,
    F3 TYPE I ,
    END OF ITAB.
    DATA: BEGIN OF JTAB OCCURS 1,
    F1 TYPE C,
    F2 TYPE C,
    F3 TYPE I ,
    END OF JTAB.
    START-OF-SELECTION.
      ITAB-F1 = 'A'.
      ITAB-F2 =  1.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'B'.
      ITAB-F2 =  1.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'C'.
      ITAB-F2 =  5.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'D'.
      ITAB-F2 =  3.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'E'.
      ITAB-F2 =  4.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'F'.
      ITAB-F2 =  2.
      ITAB-F3 =  1.
      APPEND ITAB.
      SORT ITAB BY F2.
      LOOP AT ITAB.
        WRITE:/1 ITAB-F1 ,
              8 ITAB-F2 ,
              10 ITAB-F3 .
      ENDLOOP.
      LOOP AT ITAB.
        IF ITAB-F2 = 1 OR ITAB-F2 = 2.
          ITAB-TOT = 1.
          MODIFY ITAB.
        ELSEIF ITAB-F2 = 3.
          ITAB-TOT = 3.
          MODIFY ITAB.
        ELSEIF ITAB-F2 = 4 OR ITAB-F2 = 5.
          ITAB-TOT = 4.
          MODIFY ITAB.
        ENDIF.
      ENDLOOP.
      SKIP 2.
      SORT ITAB BY TOT.
      DATA : L_SUM(2) TYPE C,
             L_ROW(2) TYPE C.
      LOOP AT ITAB.
        MOVE-CORRESPONDING ITAB TO JTAB.
        APPEND JTAB.
        L_SUM = L_SUM + ITAB-F3 .
        AT END OF TOT.
          CLEAR JTAB.
          JTAB-F3 = L_SUM .
          APPEND JTAB.
          CLEAR L_SUM.
        ENDAT.
      ENDLOOP.
      LOOP AT JTAB.
        WRITE:/1 JTAB-F1 ,
              8 JTAB-F2 ,
              10 JTAB-F3 .
      ENDLOOP.
    *  DATA: a TYPE i , b .
    *  LOOP AT itab.
    *    IF b = 0.
    *      a = a + itab-f3.
    *    ENDIF.
    *    AT END OF tot.
    *      MOVE space TO itab-f1.
    *      MOVE space TO itab-f2.
    *      MOVE a TO itab-f3.
    *      MODIFY itab .
    *      CLEAR a.
    *      b = 1.
    *    ENDAT.
    *    b = 0.
    *  ENDLOOP.
    *  LOOP AT itab.
    *    MOVE-CORRESPONDING itab TO jtab.
    *    APPEND jtab.
    *  ENDLOOP.
    *  ULINE.
    *  LOOP AT jtab.
    *    WRITE: / jtab-f1 , jtab-f2 , jtab-f3.
    *  ENDLOOP.

  • Help required in reading freight price for PO item. See below code.

    H All,
    I have a requirement to read frieght cost for each PO item.
    Please see the below code and let me know is this approach is correct or not.
    * Fetch PO header details for selected criteria
      SELECT ebeln                         "Purchasing document
             bstyp
             bsart
             loekz
             lifnr                         "Vendor
             ekgrp                         "Purchasing group
             bedat                         "Document date
             knumv
        INTO TABLE t_ekko
        FROM ekko
       WHERE ebeln IN s_ebeln
         AND lifnr IN s_lifnr
         AND ekgrp IN s_ekgrp
         AND bedat IN s_bedat.
      IF sy-subrc EQ 0.
        DELETE t_ekko
         WHERE ( bstyp NE c_bstyp_f
           AND bsart NE c_bsart_nb
           AND loekz NE space ).
        SELECT knumv
               kposn
               kdatu
               kbetr
               kwert
               lifnr
          INTO TABLE t_konv
          FROM konv
           FOR ALL ENTRIES IN t_ekko
         WHERE knumv EQ t_ekko-knumv
           AND lifnr EQ t_ekko-lifnr
           AND kdatu EQ t_ekko-bedat
           AND kappl EQ c_kappl_m
           AND kschl EQ c_kschl_frc1.
    *  Fetch PO item details for the retrieved purchase orders
        SELECT ebeln                       "Purchasing document
               ebelp                       "PO item
               txz01                       "Short text
               matnr                       "Material
               matkl                       "Material group
               menge                       "PO quantity
               meins                       "UOM
               netpr                       "Net price
               netwr                       "Net value
         INTO TABLE t_ekpo
         FROM ekpo
          FOR ALL ENTRIES IN t_ekko
        WHERE ebeln EQ t_ekko-ebeln
          AND matnr IN s_matnr
          AND loekz EQ space
          AND matkl IN s_matkl.
    LOOP AT t_ekpo INTO fs_ekpo.
    * Read header details from EKKO for each PO item
        READ TABLE t_ekko
              INTO fs_ekko
              WITH KEY ebeln = fs_ekpo-ebeln.
        IF sy-subrc EQ 0.
          MOVE:
            fs_ekpo-ebeln TO fs_poitems-ebeln,
            fs_ekpo-ebelp TO fs_poitems-ebelp,
            fs_ekko-lifnr TO fs_poitems-lifnr,
            fs_ekko-ekgrp TO fs_poitems-ekgrp,
            fs_ekko-bedat TO fs_poitems-bedat,
            fs_ekpo-txz01 TO fs_poitems-txz01,
            fs_ekpo-matnr TO fs_poitems-matnr,
            fs_ekpo-menge TO fs_poitems-menge,
            fs_ekpo-meins TO fs_poitems-meins,
            fs_ekpo-netpr TO fs_poitems-netpr,
            fs_ekpo-netwr TO fs_poitems-netwr.
    * Read table KONV for fetching fieght charge
          READ TABLE t_konv
                INTO fs_konv
                WITH KEY  kposn = fs_poitems-ebelp
                          kdatu = fs_poitems-bedat
                          lifnr = fs_poitems-lifnr.
          IF sy-subrc EQ 0.
            MOVE:
              fs_konv-kwert TO fs_poitems-fri_val.
          ENDIF.                           " if sy-subrc eq 0.
    Please suggest me.
    Thanks,
    Jwala
    Edited by: Rob Burbank on Mar 12, 2009 12:09 PM
    Please use code tags

    Hi,
    I believe the approach is good, I would have done similar.
    Regards,
    Gilberto Li
    Edited by: Gilberto Li on Mar 12, 2009 5:13 PM

  • When i try and video chat it will always give me this error code...

    For the past week i been trying to ichat with friends and family but it has not been working. I've been getting this error code below...
    Date/Time: 2010-09-29 22:03:14.786 -0700
    OS Version: 10.5.8 (Build 9L31a)
    Report Version: 4
    iChat Connection Log:
    2010-09-29 22:02:25 -0700: AVChat started with ID 777537767.
    2010-09-29 22:02:25 -0700: dacrazypinoy1: State change from AVChatNoState to AVChatStateWaiting.
    2010-09-29 22:02:26 -0700: 0x19809900: State change from AVChatNoState to AVChatStateInvited.
    2010-09-29 22:02:29 -0700: 0x19809900: State change from AVChatStateInvited to AVChatStateConnecting.
    2010-09-29 22:02:29 -0700: dacrazypinoy1: State change from AVChatStateWaiting to AVChatStateConnecting.
    2010-09-29 22:03:11 -0700: 0x19809900: State change from AVChatStateConnecting to AVChatStateEnded.
    2010-09-29 22:03:11 -0700: 0x19809900: Error -8 (Did not receive a response from 0x19809900.)
    2010-09-29 22:03:11 -0700: dacrazypinoy1: State change from AVChatStateConnecting to AVChatStateEnded.
    2010-09-29 22:03:11 -0700: dacrazypinoy1: Error -8 (Did not receive a response from 0x19809900.)
    Video Conference Error Report:
    12.204941 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    14.205833 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.638067 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    4.156666 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    4.157221 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    10.204887 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0c7026694bb11f15
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=84371975
    Call-ID: f0dcefb8-cc4f-11df-b91c-a132b0714012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1751515446
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3103434071
    10.705333 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0c7026694bb11f15
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=84371975
    Call-ID: f0dcefb8-cc4f-11df-b91c-a132b0714012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1751515446
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3103434071
    11.705717 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0c7026694bb11f15
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=84371975
    Call-ID: f0dcefb8-cc4f-11df-b91c-a132b0714012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1751515446
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3103434071
    12.205748 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:62463 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1a77feb50dcb9ddf
    Max-Forwards: 70
    To: u0 <sip:user@rip:62463>
    From: 0 <sip:user@lip:16402>;tag=311781962
    Call-ID: f20e381a-cc4f-11df-b91c-a0957a894012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1751515446
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3103434071
    12.706162 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:62463 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1a77feb50dcb9ddf
    Max-Forwards: 70
    To: u0 <sip:user@rip:62463>
    From: 0 <sip:user@lip:16402>;tag=311781962
    Call-ID: f20e381a-cc4f-11df-b91c-a0957a894012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1751515446
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3103434071
    13.706595 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:62463 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1a77feb50dcb9ddf
    Max-Forwards: 70
    To: u0 <sip:user@rip:62463>
    From: 0 <sip:user@lip:16402>;tag=311781962
    Call-ID: f20e381a-cc4f-11df-b91c-a0957a894012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1751515446
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3103434071
    16.435331 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:user@sip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    Max-Forwards: 70
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:62463>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 702
    [v=0
    o=sophianem 0 0 IN IP4 rip
    s=u0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2660
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 62463 RTP/AVP 110 12 124 3 0
    a=rtcp:62463
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:452158539
    m=video 62463 RTP/AVP 123 126 34
    a=rtcp:62463
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 62463 VIDEO 62463
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:616382727
    16.435854 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    16.435976 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    16.519371 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    17.019764 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    17.150946 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:user@sip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    Max-Forwards: 70
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:62463>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 702
    [v=0
    o=sophianem 0 0 IN IP4 rip
    s=u0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2660
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 62463 RTP/AVP 110 12 124 3 0
    a=rtcp:62463
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:452158539
    m=video 62463 RTP/AVP 123 126 34
    a=rtcp:62463
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 62463 VIDEO 62463
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:616382727
    17.151317 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    17.911118 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:user@sip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    Max-Forwards: 70
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:62463>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 702
    [v=0
    o=sophianem 0 0 IN IP4 rip
    s=u0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2660
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 62463 RTP/AVP 110 12 124 3 0
    a=rtcp:62463
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:452158539
    m=video 62463 RTP/AVP 123 126 34
    a=rtcp:62463
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 62463 VIDEO 62463
    a=fmtp:126 imagesize 0 rules 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:616382727
    17.911378 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    18.911667 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    20.911996 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    24.912529 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    28.913017 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    30.000598 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3574e801256c9fed
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=202813287
    From: 0 <sip:user@sip:16402>;tag=2066940390
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    30.500802 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3574e801256c9fed
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=202813287
    From: 0 <sip:user@sip:16402>;tag=2066940390
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    31.501008 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3574e801256c9fed
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=202813287
    From: 0 <sip:user@sip:16402>;tag=2066940390
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    32.913346 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    33.501221 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3574e801256c9fed
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=202813287
    From: 0 <sip:user@sip:16402>;tag=2066940390
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    36.913709 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    37.501479 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3574e801256c9fed
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=202813287
    From: 0 <sip:user@sip:16402>;tag=2066940390
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    40.914185 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    41.501656 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3574e801256c9fed
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=202813287
    From: 0 <sip:user@sip:16402>;tag=2066940390
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    44.914756 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    v=0
    o=Confidential 0 0 IN IP4 sip
    s=u0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:1640141549
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:443521299
    45.501825 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3574e801256c9fed
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=202813287
    From: 0 <sip:user@sip:16402>;tag=2066940390
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    46.968294 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 500 Internal Server Error
    Via: SIP/2.0/UDP rip:62463;branch=z9hG4bK091d967e6032a395
    To: 0 <sip:user@sip:16402>;tag=2066940390
    From: u0 <sip:user@rip:16402>;tag=202813287
    Call-ID: 1dfcc4ff486376e-cc4f-11df-ae11-bdd0759f4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    14.232626 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    16.436743 @Video Conference/VideoConferenceMultiController.m:2066 type=5 (FFFFFFFF/0)
    [Caller User Agent: Viceroy 1.4]
    16.437366 @:0 type=5 (00000000/1)
    [Accept conference from user]
    [u0]
    Binary Images Description for "iChat":
    0x1000 - 0x23cfff com.apple.iChat 4.0.9 (622) /Applications/iChat.app/Contents/MacOS/iChat
    0x2b1000 - 0x326fff com.apple.Bluetooth 2.1.9 (2.1.9f10) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x375000 - 0x4a8fff com.apple.viceroy.framework 363.57 (363.59) /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x519000 - 0x558fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57a000 - 0x593fff com.apple.frameworks.preferencepanes 12.2 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5ad000 - 0x5dffff com.apple.remotedesktop.screensharing 1.0.3 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f2000 - 0x606fff com.apple.ScreenSaver 2.2 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x617000 - 0x635fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x63d000 - 0x66ffff com.apple.iChatCommonGUI 4.0.9 (622) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69a000 - 0x69cfff com.apple.BezelServicesFW 1.4.9212 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6e4000 - 0x6e5fff com.apple.JavaPluginCocoa 12.6.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x6eb000 - 0x6ecfff com.apple.iChat.PersonIconPlugIn 4.0.9 (622) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x6f4000 - 0x6f9fff com.apple.iChat.Styles.Balloons 4.0.9 (622) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x119e6000 - 0x119e9fff com.apple.iChat.Styles.Boxes 4.0.9 (622) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x119f0000 - 0x119f6fff com.apple.iChat.Styles.Compact 4.0.9 (622) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x119fe000 - 0x11a00fff com.apple.iChat.Styles.Text 4.0.9 (622) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x1495c000 - 0x14d0afff com.apple.RawCamera.bundle 3.3.0 (533) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14e53000 - 0x14e58fff com.apple.CoreGraphics 1.409.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x14eb3000 - 0x14eeefff com.apple.QuickTimeFireWireDV.component 7.6.6 (1674) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x166a6000 - 0x166affff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x166b9000 - 0x166e7fff com.apple.QuickTimeIIDCDigitizer 7.6.6 (1674) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x166f9000 - 0x16747fff com.apple.QuickTimeUSBVDCDigitizer 2.3.2 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x16755000 - 0x16758fff com.apple.audio.AudioIPCPlugIn 1.0.6 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16768000 - 0x168edfff com.apple.opengl 1.5.10 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1691b000 - 0x16cf1fff com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.48 (5.4.8) /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x16e67000 - 0x16e83fff com.apple.opengl 1.5.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x17f4d000 - 0x17f53fff com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1803b000 - 0x1823ffff com.apple.audio.codecs.Components 1.9.1 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x184c6000 - 0x184c6fff liblangid.dylib /usr/lib/liblangid.dylib
    0x1978f000 - 0x19796fff com.apple.JavaVM 12.6.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1aa8c000 - 0x1aa8ffff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1adb0000 - 0x1adccfff com.apple.QuartzComposer.ExtraPatches 2.1 (106.13) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1af40000 - 0x1af5dfff com.apple.audio.midi.CoreMIDI 1.6.1 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1af75000 - 0x1af82fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90032fff com.apple.AE 402.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90033000 - 0x9005bfff com.apple.shortcut 1.0.1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9005c000 - 0x90061fff com.apple.KerberosHelper 1.1 (1.0) /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x90062000 - 0x900adfff com.apple.CoreMediaIOServices 130.0 (935) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x900ae000 - 0x900bafff com.apple.opengl 1.5.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x900bb000 - 0x90148fff com.apple.framework.IOKit 1.5.2 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90149000 - 0x90187fff com.apple.opengl 1.5.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90188000 - 0x901b9fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x901ba000 - 0x901fcfff com.apple.NavigationServices 3.5.2 (163) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x901fd000 - 0x90248fff com.apple.securityinterface 3.0.4 (37213) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90249000 - 0x9037cfff com.apple.CoreFoundation 6.5.7 (476.19) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9037d000 - 0x903a1fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x903a2000 - 0x903a7fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x903a8000 - 0x903c4fff com.apple.IMFramework 4.0.8 (584) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x903c5000 - 0x9052cfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9052d000 - 0x90564fff com.apple.SystemConfiguration 1.9.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90565000 - 0x905effff com.apple.DesktopServices 1.4.9 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90606000 - 0x907c2fff com.apple.QuartzComposer 2.1 (106.13) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x907c3000 - 0x907c3fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x907c4000 - 0x907d3fff com.apple.DSObjCWrappers.Framework 1.3 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x907d4000 - 0x907d9fff com.apple.DisplayServicesFW 2.0.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x907da000 - 0x9081afff com.apple.CoreMedia 0.484.2 (484.2) /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9081b000 - 0x90837fff com.apple.ImageIO.framework 2.0.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90838000 - 0x90848fff com.apple.speech.synthesis.framework 3.7.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90849000 - 0x908a2fff com.apple.opengl 1.5.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x908a6000 - 0x908cffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x908d0000 - 0x90980fff edu.mit.Kerberos 6.0.14 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90981000 - 0x90990fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x90991000 - 0x90a43fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x90a44000 - 0x90a44fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90a45000 - 0x90a56fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90a57000 - 0x90ba9fff com.apple.audio.toolbox.AudioToolbox 1.5.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90baf000 - 0x90bb6fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bb7000 - 0x90bd5fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x90bd6000 - 0x90da7fff com.apple.security 5.0.6 (37592) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90da8000 - 0x90e3bfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90e3c000 - 0x910b8fff com.apple.Foundation 6.5.9 (677.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x910b9000 - 0x91102fff com.apple.Metadata 10.5.8 (398.26) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91103000 - 0x9110efff com.apple.CoreGraphics 1.409.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9110f000 - 0x9116cfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x9116d000 - 0x9117bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9117c000 - 0x9117cfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9117d000 - 0x91184fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91185000 - 0x91265fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x91266000 - 0x91676fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91677000 - 0x92576fff com.apple.QuickTimeComponents.component 7.6.6 (1674) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92577000 - 0x9257cfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9257d000 - 0x926fdfff com.apple.AddressBook.framework 4.1.2 (702) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x926fe000 - 0x92701fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92702000 - 0x92753fff com.apple.framework.familycontrols 1.0.4 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92789000 - 0x93282fff com.apple.WebCore 5533.18 (5533.18.1) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93283000 - 0x93300fff com.apple.audio.CoreAudio 3.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9356a000 - 0x93577fff com.apple.opengl 1.5.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9357d000 - 0x9360afff com.apple.LaunchServices 292 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9360b000 - 0x9360bfff 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
    0x9360c000 - 0x93646fff com.apple.securityfoundation 3.0.2 (36131) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93647000 - 0x937cbfff com.apple.MediaToolbox 0.484.2 (484.2) /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x937cc000 - 0x93b69fff com.apple.QuartzCore 1.5.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93b6a000 - 0x93b6cfff com.apple.ImageIO.framework 2.0.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93b6d000 - 0x93bc7fff com.apple.CoreText 2.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93bfb000 - 0x93cc6fff com.apple.ColorSync 4.5.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93cc7000 - 0x93d44fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93d45000 - 0x93e8dfff com.apple.ImageIO.framework 2.0.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93f83000 - 0x94781fff com.apple.AppKit 6.5.9 (949.54) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94782000 - 0x9478bfff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9478c000 - 0x94b4afff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94b4b000 - 0x94b8afff com.apple.ImageIO.framework 2.0.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94b8b000 - 0x94bdcfff com.apple.HIServices 1.7.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94bdd000 - 0x94d27fff com.apple.QTKit 7.6.6 (1674) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94d28000 - 0x94d8efff com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94d8f000 - 0x94dadfff com.apple.DirectoryService.Framework 3.5.7 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94dae000 - 0x94e75fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94e76000 - 0x94e76fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94e77000 - 0x95233fff com.apple.VideoToolbox 0.484.2 (484.2) /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x95234000 - 0x9523efff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9523f000 - 0x958dffff com.apple.CoreGraphics 1.409.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x958e0000 - 0x95987fff com.apple.CFNetwork 438.14 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95988000 - 0x95988fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95989000 - 0x959bffff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x959c0000 - 0x959c1fff libffi.dylib /usr/lib/libffi.dylib
    0x959c2000 - 0x95a03fff com.apple.CoreGraphics 1.409.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95a04000 - 0x95a60fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95c9c000 - 0x95d84fff com.apple.CoreData 100.2 (186.2) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95d85000 - 0x95f14fff com.apple.CoreAUC 3.08.0 /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x95f15000 - 0x95f4ffff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95f50000 - 0x95f56fff com.apple.print.framework.Print 218.0.3 (220.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95f57000 - 0x95fd6fff com.apple.SearchKit 1.2.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9607c000 - 0x96123fff com.apple.QD 3.11.57 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96124000 - 0x9644ffff com.apple.QuickTime 7.6.6 (1674) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96450000 - 0x96588fff com.apple.imageKit 1.0.2 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96589000 - 0x965d7fff com.apple.AppleVAFramework 4.1.17 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x965d8000 - 0x965dafff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x965db000 - 0x9662afff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9662b000 - 0x9669efff com.apple.iLifeMediaBrowser 2.1.5 (368) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9669f000 - 0x966abfff com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x966ac000 - 0x966acfff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x966ad000 - 0x966b1fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x966b2000 - 0x9698cfff com.apple.CoreServices.CarbonCore 786.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9698d000 - 0x969a3fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x969a4000 - 0x96a37fff com.apple.ApplicationServices.ATS 238.14.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96a38000 - 0x96f09fff com.apple.opengl 1.5.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96f0a000 - 0x96f91fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x96fbc000 - 0x96feefff com.apple.LDAPFramework 1.4.5 (110) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96fef000 - 0x970ddfff com.apple.PubSub 1.0.5 (65.20) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x970de000 - 0x971bffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x971f0000 - 0x9720cfff com.apple.CoreVideo 1.6.1 (48.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9720d000 - 0x972c8fff com.apple.CoreServices.OSServices 228.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x972c9000 - 0x972d9fff com.apple.LangAnalysis 1.6.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x972da000 - 0x972dafff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x972db000 - 0x972ddfff com.apple.CrashReporterSupport 10.5.7 (161) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x972de000 - 0x972e2fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x973c6000 - 0x973c6fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x973c7000 - 0x973e4fff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x973e5000 - 0x973e5fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x973e6000 - 0x975defff com.apple.JavaScriptCore 5533.18 (5533.18.1) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x975df000 - 0x97651fff com.apple.PDFKit 2.1.2 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97652000 - 0x976ccfff com.apple.print.framework.PrintCore 5.5.4 (245.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x976cd000 - 0x976e4fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x976e5000 - 0x97704fff com.apple.ImageIO.framework 2.0.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97742000 - 0x97849fff com.apple.WebKit 5533.18 (5533.18.1) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9784a000 - 0x97b52fff com.apple.HIToolbox 1.5.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x97b53000 - 0x97b5afff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97b5b000 - 0x97b9ffff com.apple.DirectoryService.PasswordServerFramework 3.0.4 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x97ba0000 - 0x97ba8fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97ba9000 - 0x97bb0fff com.apple.CoreGraphics 1.409.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x97bb1000 - 0x97bb1fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97c20000 - 0x97c38fff com.apple.openscripting 1.2.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97c39000 - 0x97c87fff com.apple.datadetectorscore 1.0.2 (52.14) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97c88000 - 0x97c9bfff com.apple.IMUtils 4.0.8 (584) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x97c9c000 - 0x97dd5fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x97dd6000 - 0x97dfafff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x97dfb000 - 0x97e10fff com.apple.ImageCapture 5.0.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97e11000 - 0x97e3efff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97e3f000 - 0x97e43fff com.apple.ImageIO.framework 2.0.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x97e44000 - 0x97e6ffff libauto.dylib /usr/lib/libauto.dylib
    What is going on>

    Hi,
    Welcome to the    Discussions
    Was it working before the week you have been trying to get it to work ?
    It looks like the ports are not open somewhere.
    Difficult to say which end.
    The rip (= Remote IP = Buddy) is showing different ports throughout the log.
    This could be that they cannot confirm a response from you on the default port of 16402
    The Pings are also a bit intermittent and I am not sure why that is.
    It does show the Buddy's computer name ...
    o=sophianem 0 0 IN IP4 rip
    ... so you were nearly connected.
    5:48 PM Thursday; September 30, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Same 4MEM/9/40000000 , but different aka (hopefully) the complete guide to this error code and changing RAM

    Hello world,
    finally, after having been reading here for years I decided to break silence and join the most venerable Apple discussions community!
    First of all, I'm no native speaker, so if I at one point don't express myself correctly, I'm sorry. If you don't understand please ask what exactly I meant since it's very important that we know exactly what each one of us is talking about, thank you.
    Important, too:
    I know there are a lot of posts with this topic and I sifted through a lot of them but none of them captures exactly what my problem or rather my questions are and unfortunately in a lot of them there is no real feedback from the original poster how it all worked out or not. So, I intend this thread to be that one helpful thread which more or less concentrates the knowledge of the other threads, where people with similar problems can go to in future.
    I ask one thing of you: Please DON'T answer with just one phrase à la "U got bad RAM, send it back" or "Contact Apple Customer Support Service whatever thingy" without explaining why this would be the only viable option (because I think it is not, at least at the moment).
    All the questions I 'd like answered are green, for you to not lose track. I hope this becomes a good discussion so everyone of us can learn a lot!
    Following problem:
    Initial situation:       
    My Computer: MacBookPro 8.2, early 2011, 15", 2,2 GHz i7; Mavericks 10.9.5    (yet without this bash fix but ¯\_(ツ)_/¯ )
           - Upgraded RAM from onboard 4 (2 x 2) GB to the "unofficially" possible 16 (2 x 8) GB 
    Ordered RAM on Amazon.de with the right Specs: 204 pin DDR3 SO-DIMM (1333 MHz, PC3-10600S, CL9),
    Manufacturer: CSX (http://www.csx-memory.com , while it's maybe not the most renown seller, it was described on another website as reliable )
        HERE (hope the link doesn't  change):               http://www.amazon.de/gp/product/B0084SH6WA/ref=oh_aui_detailpage_o01_s00?ie=UTF8 &psc=1
           - Installed it, booted Mac without problem, what does System Profiler say? I have full 16 GB   1600 MHz   Memory installed
    - Obviously sent me the "wrong" RAM (or can System Profiler be wrong??), funny thing: It works,
         --> after a LOT of research checked here http://guides.macrumors.com/Buying_RAM      my i7 is 2720QM, so supports it, lucky me
       Btw, if i go to About this Mac > more information > memory,  the Text there even says it can hold 1600 MHz, has this been written there like this all along?!
    - Which RAM do I have installed exactly now? since the sticker on it showed the originally ordered Specs.., moreover how do I determine the CAS latency of my installed RAM?
    Crashes:
    Didn't really have any, except..... well,  
    - In some instances Firefox (I think 32.02. or sth., the latest Version at this moment) reproduceably keeps crashing, for example right now, can't even start it,  that's why I can't tell you the exact version, maybe I edit that later. Safari so far hasn't crashed.
    - Once I had a System Crash, but it happened when I wanted to reboot after updating the firmware of a hooked on external WD drive to be usable again as time machine backup volume under mavericks (without endangering my data).
    The RAM seems to work fine; for example when I was doing a long overdue backup of 77GB on said drive, Activity Monitor showed a RAM Usage of  15,99 GB and nothing crashed. Only the fans were powering at some point but i thought that normal..
    - Actually produced two more Crashes when trying to run Apple Hardware Test (AHT), the one on the second disc that originally came with my Computer (probably made for OS 10.6.x    x= 6 or sth., don't remember which version my MBP was shipped with), which leads to
    Tests:
    Memtest86
    - I put Memtest86 v.5.01 on a USB Stick and bootet from that and let it test "the whole" RAM 
    (btw Do you know how you can put the bootable USB image of Memtest only to one (of a few) partition of my 32 GB USB Stick? The instructions (command line stuff) only let me put it on the whole Stick which makes it otherwise useless as a volume; ok here I'm not sure if I'm using the correct technical terms....)
    - I let Memtest86 do 3 and a half passes with one pass consisting of 10 different tests, so it took over 8 hours! 
    --> RESULT:   0   (in words: zero)  ERRORS,         
    --> That is why I think my RAM is ok, because I think (think NB, don't know) Memtest86 does good testing,or do you know      better?
    AHT
    - After that, out of curiosity, I tried to run AHT from the DVD with said results, then I ran AHT (also called Apple Diagnostics under Mavericks) from the Internet, this worked, but produced the famous 4MEM/9/40000000 Error Code,
    first one for example was: 4MEM/9/40000000: 0x8477df98, the last part after the colon is variable, but stays the same in one instance, i.e. if you repeat the AHT directly. If you restart the Computer an rerun the test then it changes, e.g. some other it showed 0x84770a18
    - I did the short and the extended version, it took ca. 2-3  and 16 min respectively till producing the Error Code (only 1 at a time)
    - Did it 4 times or so; once in short/simple version it showed no error, the rest the 4MEM/9 s.
    some example of a simple test, results taken out of the System Profiler Window (fehlgeschlagen= failed):
    Apple Diagnostics:
    The usual self test on start up is always passed (bestanden), see for example:
    What other than bad RAM can 4MEM/9/40000000 mean? I hope there are a few tech and computer savvy people around this place who know what they are talking about and can give me a good answer, or at least help to narrow it down. Actually I also think, the RAM sticks are not loose, but before I screw open my MBP again I would like to explore the other possibilities.
    Is it probable that this Error Code has got sth. to do with me installing a) 16 GB of b) 1600 MHz RAM, or maybe with CAS Latency (i don't know the actual CL of this RAM)? and if so, is it only because some Apple Programmer/Developer/Technician wrote some values in a list on the System Level, so it doesn't accept RAM it would normally work with?? If it works fine and is faster, why change it?
    Final Words:
    I repeat, apart from the Firefox crashes, my Mac seems to be working fine, at least I don't notice anything, (well, that disk utility and System Profiler (or whatever it's called nowadays) sometimes take time to start up is nothing special i think, is it?)
    But now I'm scared that perhaps there could be a future danger for my computer I do not foresee...I hope you can at least exclude that.
    So I'd rather spend my time starting a discussion here with people who don't have to abide by some corporate policy (right?) than having the hassle of repeatedly screwing my Mac open and shut  and doing expensive calls with all the companies involved who won't tell me anything more in depth than "we have to send it there, do more tests and you get it back then".
    I hope that this thread won't rot in the wastelands of unanswered posts and that maybe all the people who take part in it learn sth. and all the people seeking help in future will find it here.
    Thanks for your patience!
    Waiting for your greatly appreciated answers,
    MuddyMic
    PS: Why is there no category Hardware, Components, RAM or sth similar? Not sure if it fits in Ports and Interfaces so I put it under Using a MBP

    Hello world,
    finally, after having been reading here for years I decided to break silence and join the most venerable Apple discussions community!
    First of all, I'm no native speaker, so if I at one point don't express myself correctly, I'm sorry. If you don't understand please ask what exactly I meant since it's very important that we know exactly what each one of us is talking about, thank you.
    Important, too:
    I know there are a lot of posts with this topic and I sifted through a lot of them but none of them captures exactly what my problem or rather my questions are and unfortunately in a lot of them there is no real feedback from the original poster how it all worked out or not. So, I intend this thread to be that one helpful thread which more or less concentrates the knowledge of the other threads, where people with similar problems can go to in future.
    I ask one thing of you: Please DON'T answer with just one phrase à la "U got bad RAM, send it back" or "Contact Apple Customer Support Service whatever thingy" without explaining why this would be the only viable option (because I think it is not, at least at the moment).
    All the questions I 'd like answered are green, for you to not lose track. I hope this becomes a good discussion so everyone of us can learn a lot!
    Following problem:
    Initial situation:       
    My Computer: MacBookPro 8.2, early 2011, 15", 2,2 GHz i7; Mavericks 10.9.5    (yet without this bash fix but ¯\_(ツ)_/¯ )
           - Upgraded RAM from onboard 4 (2 x 2) GB to the "unofficially" possible 16 (2 x 8) GB 
    Ordered RAM on Amazon.de with the right Specs: 204 pin DDR3 SO-DIMM (1333 MHz, PC3-10600S, CL9),
    Manufacturer: CSX (http://www.csx-memory.com , while it's maybe not the most renown seller, it was described on another website as reliable )
        HERE (hope the link doesn't  change):               http://www.amazon.de/gp/product/B0084SH6WA/ref=oh_aui_detailpage_o01_s00?ie=UTF8 &psc=1
           - Installed it, booted Mac without problem, what does System Profiler say? I have full 16 GB   1600 MHz   Memory installed
    - Obviously sent me the "wrong" RAM (or can System Profiler be wrong??), funny thing: It works,
         --> after a LOT of research checked here http://guides.macrumors.com/Buying_RAM      my i7 is 2720QM, so supports it, lucky me
       Btw, if i go to About this Mac > more information > memory,  the Text there even says it can hold 1600 MHz, has this been written there like this all along?!
    - Which RAM do I have installed exactly now? since the sticker on it showed the originally ordered Specs.., moreover how do I determine the CAS latency of my installed RAM?
    Crashes:
    Didn't really have any, except..... well,  
    - In some instances Firefox (I think 32.02. or sth., the latest Version at this moment) reproduceably keeps crashing, for example right now, can't even start it,  that's why I can't tell you the exact version, maybe I edit that later. Safari so far hasn't crashed.
    - Once I had a System Crash, but it happened when I wanted to reboot after updating the firmware of a hooked on external WD drive to be usable again as time machine backup volume under mavericks (without endangering my data).
    The RAM seems to work fine; for example when I was doing a long overdue backup of 77GB on said drive, Activity Monitor showed a RAM Usage of  15,99 GB and nothing crashed. Only the fans were powering at some point but i thought that normal..
    - Actually produced two more Crashes when trying to run Apple Hardware Test (AHT), the one on the second disc that originally came with my Computer (probably made for OS 10.6.x    x= 6 or sth., don't remember which version my MBP was shipped with), which leads to
    Tests:
    Memtest86
    - I put Memtest86 v.5.01 on a USB Stick and bootet from that and let it test "the whole" RAM 
    (btw Do you know how you can put the bootable USB image of Memtest only to one (of a few) partition of my 32 GB USB Stick? The instructions (command line stuff) only let me put it on the whole Stick which makes it otherwise useless as a volume; ok here I'm not sure if I'm using the correct technical terms....)
    - I let Memtest86 do 3 and a half passes with one pass consisting of 10 different tests, so it took over 8 hours! 
    --> RESULT:   0   (in words: zero)  ERRORS,         
    --> That is why I think my RAM is ok, because I think (think NB, don't know) Memtest86 does good testing,or do you know      better?
    AHT
    - After that, out of curiosity, I tried to run AHT from the DVD with said results, then I ran AHT (also called Apple Diagnostics under Mavericks) from the Internet, this worked, but produced the famous 4MEM/9/40000000 Error Code,
    first one for example was: 4MEM/9/40000000: 0x8477df98, the last part after the colon is variable, but stays the same in one instance, i.e. if you repeat the AHT directly. If you restart the Computer an rerun the test then it changes, e.g. some other it showed 0x84770a18
    - I did the short and the extended version, it took ca. 2-3  and 16 min respectively till producing the Error Code (only 1 at a time)
    - Did it 4 times or so; once in short/simple version it showed no error, the rest the 4MEM/9 s.
    some example of a simple test, results taken out of the System Profiler Window (fehlgeschlagen= failed):
    Apple Diagnostics:
    The usual self test on start up is always passed (bestanden), see for example:
    What other than bad RAM can 4MEM/9/40000000 mean? I hope there are a few tech and computer savvy people around this place who know what they are talking about and can give me a good answer, or at least help to narrow it down. Actually I also think, the RAM sticks are not loose, but before I screw open my MBP again I would like to explore the other possibilities.
    Is it probable that this Error Code has got sth. to do with me installing a) 16 GB of b) 1600 MHz RAM, or maybe with CAS Latency (i don't know the actual CL of this RAM)? and if so, is it only because some Apple Programmer/Developer/Technician wrote some values in a list on the System Level, so it doesn't accept RAM it would normally work with?? If it works fine and is faster, why change it?
    Final Words:
    I repeat, apart from the Firefox crashes, my Mac seems to be working fine, at least I don't notice anything, (well, that disk utility and System Profiler (or whatever it's called nowadays) sometimes take time to start up is nothing special i think, is it?)
    But now I'm scared that perhaps there could be a future danger for my computer I do not foresee...I hope you can at least exclude that.
    So I'd rather spend my time starting a discussion here with people who don't have to abide by some corporate policy (right?) than having the hassle of repeatedly screwing my Mac open and shut  and doing expensive calls with all the companies involved who won't tell me anything more in depth than "we have to send it there, do more tests and you get it back then".
    I hope that this thread won't rot in the wastelands of unanswered posts and that maybe all the people who take part in it learn sth. and all the people seeking help in future will find it here.
    Thanks for your patience!
    Waiting for your greatly appreciated answers,
    MuddyMic
    PS: Why is there no category Hardware, Components, RAM or sth similar? Not sure if it fits in Ports and Interfaces so I put it under Using a MBP

  • Hi there can you help with this error code Oxc5d1281

    I refilled the HP cartridges in my Photosmart C 7250 All-in-One and put them in and got this error.  I have D/C power,etc and it still comes up with this error code.  Now what?
    Cheers,
    British_eh

    Hi british_eh
    You could try resetting the printer, details here
    Note though that the reliability of refills tends not be as good as originals, links below FYI.....
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00853819&cc=us&dlc=en&lc=en&jumpid=reg_R1002_US...
    http://www.qualitylogic.com/2009HPinktest.pdf
    Kind Regards, Ciara
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • How can i write the below code using "For all entries"

    Hi
    How can we write the below code using "for all entries" and need to avoid joins...
    Please help
    SELECT aaufnr aobjnr aauart atxjcd a~pspel
    agstrp awerks carbpl cwerks
    INTO TABLE t_caufv
    FROM caufv AS a
    INNER JOIN afih AS b
    ON aaufnr = baufnr
    INNER JOIN crhd AS c
    ON bgewrk = cobjid
    AND c~objty = 'D'
    WHERE ( a~pspel = space
    OR a~txjcd = space
    OR NOT a~objnr IN
    ( select OBJNR from COBRB AS e
    WHERE objnr = a~objnr ) )
    AND a~werks IN s_plant
    AND a~auart IN s_wtype
    AND NOT a~objnr IN
    ( select OBJNR from JEST AS d
    WHERE objnr = a~objnr
    AND ( dstat = 'A0081'OR dstat = 'A0018' )
    AND d~inact 'X' ).
    Reward points for all helpfull answers
    Thanks
    Ammi.

    Hi,
    SELECT objnr objid aufnr
            from afih
            into table t_afih.
    SELECT objnr
            from JEST
            into table t_JEST
            where stat = 'A0045'
               OR stat = 'A0046'
               AND inact 'X'.
    SELECT objnr
            from COBRB
            into table t_cobrb.
    SELECT arbpl werks objid objty
          from crhd
          INTO table it_crhd
          FOR ALL ENTRIES IN it_afih
          WHERE objty eq 'D'
          AND gewrk = it_afih-objid.
    SELECT aufnr objnr auart txjcd pspel gstrp werks aufnr
            FROM caufv
            INTO table t_caufv
            FOR ALL ENTRIES IN it_afih
            WHERE aufnr = it_afih-aufnr
              And pspel = ' '
              AND txjcd = ' '
             ANd objnr ne it_crhd-objnr
              AND auart in s_wtype
              AND werks in s_plant.
             AND objnr ne it_jest-objnr.
    dont use NE in the select statements, it may effect performance also. Instead use if statements inside
    loops.
    loop at t_caufv.
    read table it_chrd............
      if t_caufv-objnr ne it_chrd-objnr.
      read table it_jest..........
       if   if t_caufv-objnr ne it_jest-objnr.
        (proceed further).
       endif.
      endif.
    endloop.
    hope this helps.
    Reward if useful.
    Regards,
    Anu

  • Please! help me with this wrong code, where is mistake

    please! help me with this wrong code, where is mistake?
    import java.util.Stack;
    public class KnightsTour {
    Vars locs[];
    private int size, max=1, d=0, board[][];
    public KnightsTour(int x,int y, int newSize)
         size=newSize;
         locs=new Vars[size*size+1];
         for(int n=1;n<=size*size;n++)
              locs[n]=new Vars();
         board=new int[size+1][size+1];
         for(int n=1;n<=size;n++)
              for(int n2=1;n2<=size;n2++)
                   board[n][n2]=0;
         locs[max].x=x;
         locs[max].y=y;
         locs[max].d=1;
         board[x][y]=max;
         max++;
    class Vars{
         int x;
         int y;
         int d;
    public void GO()
         int n=0;
         while(max<=size*size)
              n++;
              d++;
              if(d>8)
                   max--;
                   board[locs[max].x][locs[max].y]=0;
                   d=locs[max].d+1;
              move();
         printBoard();
    public void move()
         int x=locs[max-1].x, y=locs[max-1].y;
         switch(d)
         case 1:x--;y-=2;break;
         case 2:x++;y-=2;break;
         case 3:x+=2;y--;break;
         case 4:x+=2;y++;break;
         case 5:x++;y+=2;break;
         case 6:x--;y+=2;break;
         case 7:x-=2;y++;break;
         case 8:x-=2;y--;break;
         //System.out.println(" X: "+x+" Y: "+y+" |"+max);
         if((x<1)||(x>size)||(y<1)||(y>size)){}
         else if(board[x][y]!=0){}
         else
              locs[max].x=x;
              locs[max].y=y;
              locs[max].d=d;
              board[x][y]=max;
              max++;
              d=0;
              //printBoard();
    public void printBoard()
         for(int n=1;n<=size;n++)
              for(int n2=1;n2<=size;n2++)
                   if(board[n2][n]<10)
                        System.out.print(board[n2][n]+" ");
                   else
                        System.out.print(board[n2][n]+" ");
              System.out.println();
         //System.out.println();
         System.out.println();
         public static void main (String[]args){
              KnightsTour k = new KnightsTour(1,1,8);
         }

    public class KnightsTour {
        Vars locs[];
        private int size,  max = 1,  d = 0,  board[][];
        public static void main (String[] args) {
            KnightsTour k = new KnightsTour (1, 1, 8);
            k.GO ();
        public KnightsTour (int x, int y, int newSize) {
            size = newSize;
            locs = new Vars[size * size + 1];
            for (int n = 1; n <= size * size; n++) {
                locs[n] = new Vars ();
            board = new int[size + 1][size + 1];
            for (int n = 1; n <= size; n++) {
                for (int n2 = 1; n2 <= size; n2++) {
                    board[n][n2] = 0;
            locs[max].x = x;
            locs[max].y = y;
            locs[max].d = 1;
            board[x][y] = max;
            max++;
        class Vars {
            int x;
            int y;
            int d;
        public void GO () {
            int n = 0;
            while (max <= size * size) {
                n++;
                d++;
                if (d > 8) {
                    max--;
                    board[locs[max].x][locs[max].y] = 0;
                    d = locs[max].d + 1;
                move ();
            printBoard ();
        public void move () {
            int x = locs[max - 1].x, y = locs[max - 1].y;
            switch (d) {
                case 1:
                    x--;
                    y -= 2;
                    break;
                case 2:
                    x++;
                    y -= 2;
                    break;
                case 3:
                    x += 2;
                    y--;
                    break;
                case 4:
                    x += 2;
                    y++;
                    break;
                case 5:
                    x++;
                    y += 2;
                    break;
                case 6:
                    x--;
                    y += 2;
                    break;
                case 7:
                    x -= 2;
                    y++;
                    break;
                case 8:
                    x -= 2;
                    y--;
                    break;
    //System.out.println(" X: "x" Y: "y" |"+max);
            if ((x < 1) || (x > size) || (y < 1) || (y > size)) {
            } else if (board[x][y] != 0) {
            } else {
                locs[max].x = x;
                locs[max].y = y;
                locs[max].d = d;
                board[x][y] = max;
                max++;
                d = 0;
    //printBoard();
        public void printBoard () {
            for (int n = 1; n <= size; n++) {
                for (int n2 = 1; n2 <= size; n2++) {
                    if (board[n2][n] < 10) {
                        System.out.print (board[n2][n] + " ");
                    } else {
                        System.out.print (board[n2][n] + " ");
                System.out.println ();
    //System.out.println();
            System.out.println ();
    }formatting ftw.
    If you call GO () you get in an infinite loop. max gets decreased, and it loops while max is smaller then or equal to size * size. Is your looping logic correct ?

  • How to use this example code in Flash AS3?

    Hi,
    How can I use this AS3 code in my Flash CS4 document? The following code is in the below link:
    http://pv3d.org/2009/12/18/tweenmax-tweening-a-timeline-advanced-tweening/#
    Please help.
    Thanks.

    Hi,
    It is working quite nice. I want to use the same code but instead of as "Document Class" I want to put that code in a first key frame of my project. I tried the following but gets an error:
    The error is : 1131: Classes must not be nested.
    And the following code  I tried is:
        import com.greensock.TimelineMax;
        import com.greensock.TweenMax;
        import com.greensock.easing.Linear;
        import com.greensock.easing.Quart;
        import flash.display.Sprite;
         * @author John Lindquist
        [SWF(width="900", height="480", frameRate="31")]
        class EasingATimeline extends Sprite
            private var square:Sprite;
            private static const STEP_DURATION:Number = 1;
            public function EasingATimeline()
                square = new Sprite();
                square.graphics.beginFill(0xcc0000);
                square.graphics.drawRect(0, 0, 50, 50);
                square.graphics.endFill();
                square.x = 100;
                square.y = 50;
                addChild(square);
                //set all the eases of your steps to Linear.easeNone
                var step1:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 700, y: 50, ease: Linear.easeNone});
                var step2:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 700, y: 350, ease: Linear.easeNone});
                var step3:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 100, y: 350, ease: Linear.easeNone});
                var step4:TweenMax = TweenMax.to(square, STEP_DURATION, {x: 100, y: 50, ease: Linear.easeNone});
                var timeline:TimelineMax = new TimelineMax();
                timeline.append(step1);
                timeline.append(step2);
                timeline.append(step3);
                timeline.append(step4);
                //pause your timeline
                timeline.pause();
                //tween your timeline with whatever ease you want
                TweenMax.to(timeline, timeline.totalDuration, {currentTime: timeline.totalDuration, ease: Quart.easeInOut, repeat: -1});
    Please help me to solve this problem.
    Thanks.

  • What is wrong in this java code?

    Can someone please tell me what is wrong in this java code?
    /* The program is intended to start animating text at the click of a button, pause it at another click and resume at the next click. It should continue like this */
    import javax.swing.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TextAnime implements Runnable
    JFrame frame;
    boolean flag;
    Thread animeThread;
    JLabel label;
    String[] textArray;
    public TextAnime()
    flag = false;
    animeThread = new Thread(this);
    frame = new JFrame("Animate Text");
    GridBagLayout gbl = new GridBagLayout();
    GridBagConstraints gbc = new GridBagConstraints();
    frame.setLayout(gbl);
    JButton button = new JButton("Start");
    label = new JLabel("Stopped");
    textArray = new String[5];
    String textArray1[] = {"Programmer", "SportsMan", "Genius", "Friend", "Knowledgable"};
    for(int ctr = 0; ctr<5 ; ctr++)
    textArray[ctr] = textArray1[ctr];
    gbc.weightx = 1;
    gbc.gridx = 0;
    gbl.setConstraints(button,gbc);
    frame.getContentPane().add(button);
    ButList bl = new ButList();
    button.addActionListener(bl);
    gbc.gridx = 1;
    gbl.setConstraints(label,gbc);
    frame.getContentPane().add(label);
    frame.setSize(200,150);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS E);
    frame.setVisible(true);
    public class ButList implements ActionListener
    public void actionPerformed(ActionEvent evt)
    if(flag == false)
    flag = true;
    animeStart();
    else
    flag = false;
    //animeStop();
    public synchronized void animeStart()
    animeThread.start();
    Thread newThread;
    newThread = Thread.currentThread();
    newThread.notify();
    public void animeStop()
    animeThread.interrupt();
    public void run()
    int i = 0;
    try
    while(i == i)
    if(i==5)
    i=0;
    label.setText(textArray);
    animeThread.sleep(1000);
    i++;
    if (flag == false)
    animeThread.wait();
    catch(InterruptedException ie)
    label.setText("Stopped");
    public static void main(String args[])
    TextAnime ta = new TextAnime();
    Please tell me if this can be written in a more simpler manner. Also please correct this code. I am tired after trying many times.

    When I fix your error, compile and run it, I get this exception:
    Exception in thread "AWT-EventQueue-0" java.lang.IllegalMonitorStateException
         at java.lang.Object.notify(Native Method)
         at cruft.TextAnime.animeStart(TextAnime.java:81)
         at cruft.TextAnime$ButList.actionPerformed(TextAnime.java:63)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    %

Maybe you are looking for