Plz corrct this alv code

hi all,
plz correct this revert back whan i executing every time it will show internal table itab is no long enough.
plz rectify the errirs and send back it.
ABLES:     zfm_kfz.
type-pools: slis.                                 "ALV Declarations
*Data Declaration
*TYPES: BEGIN OF t_ekko,
ebeln TYPE ekpo-ebeln,
ebelp TYPE ekpo-ebelp,
statu TYPE ekpo-statu,
aedat TYPE ekpo-aedat,
matnr TYPE ekpo-matnr,
menge TYPE ekpo-menge,
meins TYPE ekpo-meins,
netpr TYPE ekpo-netpr,
peinh TYPE ekpo-peinh,
END OF t_ekko.
*DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
     wa_ekko TYPE t_ekko.
DATA : BEGIN OF ITAB OCCURS 0,
       KFZNR LIKE ZFM_KFZ-KFZNR,
       GERAET LIKE ZFM_KFZ-KFZNR,
       KOSTENTRAEGER(10) TYPE C,
       BEZEICHNUNG(10) TYPE C,
       TUVDATUMMMYYYY(6) TYPE C,
       ASUDATUMMMYYYY(6) TYPE C,
       KMSTAND(6) TYPE C,
       HISTO(1) TYPE C,
       REIFEN(1) TYPE C,
       USERNAME(12) TYPE C,
       END OF ITAB.
DATA: BEGIN OF ITAB1 OCCURS 0.
        INCLUDE STRUCTURE ITAB.
DATA: END OF ITAB1.
DATA: BEGIN OF ITAB_FIELDCAT OCCURS 0.
        INCLUDE STRUCTURE ITAB.
DATA: END OF ITAB_FIELDCAT.
DATA: T_KFZ LIKE TABLE OF ZFM_KFZ.
*ALV data declarations
data: fieldcatalog type slis_t_fieldcat_alv with header line,
      gd_tab_group type slis_t_sp_group_alv,
      gd_layout    type slis_layout_alv,
      gd_repid     like sy-repid,
      gt_events     type slis_t_event,
      gd_prntparams type slis_print_alv.
*Start-of-selection.
START-OF-SELECTION.
perform data_retrieval.
perform build_fieldcatalog.
perform build_layout.
perform build_events.
perform build_print_params.
perform display_alv_report.
*&      Form  BUILD_FIELDCATALOG
      Build Fieldcatalog for ALV Report
form build_fieldcatalog.
There are a number of ways to create a fieldcat.
For the purpose of this example i will build the fieldcatalog manualy
by populating the internal table fields individually and then
appending the rows. This method can be the most time consuming but can
also allow you  more control of the final product.
Beware though, you need to ensure that all fields required are
populated. When using some of functionality available via ALV, such as
total. You may need to provide more information than if you were
simply displaying the result
              I.e. Field type may be required in-order for
                   the 'TOTAL' function to work.
  fieldcatalog-fieldname   = 'kfznr'.
  fieldcatalog-seltext_m   = 'kfznr'.
  fieldcatalog-col_pos     = 0.
  fieldcatalog-outputlen   = 11.
  fieldcatalog-emphasize   = 'X'.
  fieldcatalog-key         = 'X'.
fieldcatalog-do_sum      = 'X'.
fieldcatalog-no_zero     = 'X'.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'geraet'.
  fieldcatalog-seltext_m   = 'geraet'.
  fieldcatalog-col_pos     = 1.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'kostentraeger'.
  fieldcatalog-seltext_m   = 'kostentraeger'.
  fieldcatalog-col_pos     = 2.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'bezeichnung'.
  fieldcatalog-seltext_m   = 'bezeichnung'.
  fieldcatalog-col_pos     = 3.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'tuvdatummmyyyy'.
  fieldcatalog-seltext_m   = 'tuvdatummmyyyy'.
  fieldcatalog-col_pos     = 4.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'asudatummmyyyy'.
  fieldcatalog-seltext_m   = 'asudatummmyyyy'.
  fieldcatalog-col_pos     = 5.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'kmstand'.
  fieldcatalog-seltext_m   = 'kmstand'.
  fieldcatalog-col_pos     = 6.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'histo'.
  fieldcatalog-seltext_m   = 'histo'.
  fieldcatalog-col_pos     = 7.
  fieldcatalog-outputlen   = 1.
fieldcatalog-datatype     = 'CURR'.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'reifen'.
  fieldcatalog-seltext_m   = 'reifen'.
  fieldcatalog-col_pos     = 8.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
  fieldcatalog-fieldname   = 'username'.
  fieldcatalog-seltext_m   = 'username'.
  fieldcatalog-col_pos     = 9.
  append fieldcatalog to fieldcatalog.
  clear  fieldcatalog.
endform.                    " BUILD_FIELDCATALOG
*&      Form  BUILD_LAYOUT
      Build layout for ALV grid report
form build_layout.
  gd_layout-no_input          = 'X'.
  gd_layout-colwidth_optimize = 'X'.
  gd_layout-totals_text       = 'Totals'(201).
gd_layout-totals_only        = 'X'.
gd_layout-f2code            = 'DISP'.  "Sets fcode for when double
                                        "click(press f2)
gd_layout-zebra             = 'X'.
gd_layout-group_change_edit = 'X'.
gd_layout-header_text       = 'helllllo'.
endform.                    " BUILD_LAYOUT
*&      Form  DISPLAY_ALV_REPORT
      Display report using ALV grid
form display_alv_report.
  gd_repid = sy-repid.
  call function 'REUSE_ALV_GRID_DISPLAY'
       exporting
            i_callback_program      = gd_repid
            i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
            i_callback_user_command = 'USER_COMMAND'
           i_grid_title           = outtext
            is_layout               = gd_layout
            it_fieldcat             = fieldcatalog[]
           it_special_groups       = gd_tabgroup
            it_events               = gt_events
            is_print                = gd_prntparams
            i_save                  = 'X'
           is_variant              = z_template
       tables
            t_outtab                = itab1
       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.                    " DISPLAY_ALV_REPORT
*&      Form  DATA_RETRIEVAL
      Retrieve data form EKPO table and populate itab it_ekko
form data_retrieval.
select * from zfm_kfz
  into table itab where kfznr = itab-kfznr.
endform.                    " DATA_RETRIEVAL
Form  TOP-OF-PAGE                                                 *
ALV Report Header                                                 *
Form top-of-page.
*ALV Header declarations
data: t_header type slis_t_listheader,
      wa_header type slis_listheader,
      t_line like wa_header-info,
      ld_lines type i,
      ld_linesc(10) type c.
Title
  wa_header-typ  = 'H'.
  wa_header-info = 'EKKO Table Report'.
  append wa_header to t_header.
  clear wa_header.
Date
  wa_header-typ  = 'S'.
  wa_header-key = 'Date: '.
  CONCATENATE  sy-datum+6(2) '.'
               sy-datum+4(2) '.'
               sy-datum(4) INTO wa_header-info.   "todays date
  append wa_header to t_header.
  clear: wa_header.
Total No. of Records Selected
  describe table itab lines ld_lines.                 
  ld_linesc = ld_lines.
  concatenate 'Total No. of Records Selected: ' ld_linesc
                    into t_line separated by space.
  wa_header-typ  = 'A'.
  wa_header-info = t_line.
  append wa_header to t_header.
  clear: wa_header, t_line.
  call function 'REUSE_ALV_COMMENTARY_WRITE'
       exporting
            it_list_commentary = t_header.
           i_logo             = 'Z_LOGO'.
endform.
      FORM USER_COMMAND                                          *
      --> R_UCOMM                                                *
      --> RS_SELFIELD                                            *
FORM user_command USING r_ucomm LIKE sy-ucomm
                  rs_selfield TYPE slis_selfield.
Check function code
  CASE r_ucomm.
    WHEN '&IC1'.
  Check field clicked on within ALVgrid report
    IF rs_selfield-fieldname = 'EBELN'.
    Read data table, using index of row user clicked on
      READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
    Set parameter ID for transaction screen field
      SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.
    Sxecute transaction ME23N, and skip initial data entry screen
      CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
    ENDIF.
  ENDCASE.
ENDFORM.
*&      Form  BUILD_EVENTS
      Build events table
form build_events.
  data: ls_event type slis_alv_event.
  call function 'REUSE_ALV_EVENTS_GET'
       exporting
            i_list_type = 0
       importing
            et_events   = gt_events[].
  read table gt_events with key name =  slis_ev_end_of_page
                           into ls_event.
  if sy-subrc = 0.
    move 'END_OF_PAGE' to ls_event-form.
    append ls_event to gt_events.
  endif.
    read table gt_events with key name =  slis_ev_end_of_list
                           into ls_event.
  if sy-subrc = 0.
    move 'END_OF_LIST' to ls_event-form.
    append ls_event to gt_events.
  endif.
endform.                    " BUILD_EVENTS
*&      Form  BUILD_PRINT_PARAMS
      Setup print parameters
form build_print_params.
  gd_prntparams-reserve_lines = '3'.   "Lines reserved for footer
  gd_prntparams-no_coverpage = 'X'.
endform.                    " BUILD_PRINT_PARAMS
*&      Form  END_OF_PAGE
form END_OF_PAGE.
  data: listwidth type i,
        ld_pagepos(10) type c,
        ld_page(10)    type c.
  write: sy-uline(50).
  skip.
  write:/40 'Page:', sy-pagno .
endform.
*&      Form  END_OF_LIST
form END_OF_LIST.
  data: listwidth type i,
        ld_pagepos(10) type c,
        ld_page(10)    type c.
  skip.
  write:/40 'Page:', sy-pagno .
endform.

Hi,
Change this..
DATA : BEGIN OF ITAB ,
KFZNR LIKE ZFM_KFZ-KFZNR,
GERAET LIKE ZFM_KFZ-KFZNR,
KOSTENTRAEGER(10) TYPE C,
BEZEICHNUNG(10) TYPE C,
TUVDATUMMMYYYY(6) TYPE C,
ASUDATUMMMYYYY(6) TYPE C,
KMSTAND(6) TYPE C,
HISTO(1) TYPE C,
REIFEN(1) TYPE C,
USERNAME(12) TYPE C,
END OF ITAB.
DATA: BEGIN OF ITAB1 OCCURS 0.
INCLUDE STRUCTURE ITAB.
DATA: END OF ITAB1.
DATA: ITAB_FIELDCAT type SLIS_T_FIELDCAT_ALV .
and also use CAPS for field names.
fieldcatalog-fieldname = '<b>KFZNR</b>'.
fieldcatalog-seltext_m = 'kfznr'.
fieldcatalog-col_pos = 0.
fieldcatalog-outputlen = 11.
fieldcatalog-emphasize = 'X'.
fieldcatalog-key = 'X'.
fieldcatalog-do_sum = 'X'.
fieldcatalog-no_zero = 'X'.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
Regards
vijay

Similar Messages

  • I need help plz with this easy code

    The output shows null in the frame ,, no buttons no areas or fields .. plz help ASAP
    import java.awt.* ;
    import javax.swing.* ;
    public class GUI extends JFrame{
        public void function (){
             setSize(500,500);
             setTitle("SokAndO");
             Container first = this.getContentPane();
             JButton _send = new JButton ("Send") ;
             JTextField _text = new JTextField () ;
             JTextArea _history = new JTextArea (100,100);
             JPanel p1 = new JPanel();
             JPanel p2 = new JPanel();
             JPanel p3 = new JPanel();
             p1.add(_send);
             p2.add(_history);
             p3.add(_text);
                first.setLayout (new FlowLayout());
             setVisible(true);
             public static void main(String arg[]){
              GUI lol=new GUI();
              lol.function();
    }

    and wht is the use of this statment ???
    Container first =
    this.getContentPane();With this statement you have a variable first that refers to the JFrame's contentPane, but as noted above, you do nothing with it. You need to look at Swing examples on how to add components to JPanels and such. The Sun tutorials should be a good place to start.

  • Hi all Plz convert this SQL code to ORACLE

    -- Insert Not Available Record
    set identity_insert Dim_Region on
    if not exists ( select 'x' from Dim_Region where Region_Id = 99999 and Region = '#NA#' )
    Begin
    insert into Dim_Region (Region_Id , Region , Region_Description , Process_Date ) values
    (99999 , '#NA#' , 'Not Available' , getdate())
    End
    set identity_insert Dim_Region off

    Hi,
    I am not sure what is getdate() I have assumed it to be a function which returns date.
    Hopefully this is what you want a Procedure called "identity_insert Dim_Region"
    create procedure identity_insert Dim_Region is
         cursor c_exists is
              select 'x' from Dim_Region where Region_Id = 99999 and Region = '#NA#';
        v_var char (1);
        v_date date;
    begin
         open c_exists;
         fetch c_exists into v_var;
         if c_exists%notfound then
             v_date := getdate ();
             insert into Dim_Region
                (Region_Id , Region , Region_Description , Process_Date )
             values
                (99999 , '#NA#' , 'Not Available' , v_date);
        end if;   
        close c_exists;
    end;Best Regards
    Arif Khadas

  • Plz convert this SQL code to ORALCE

    select title,
    case when right(title , 2) = 12 then cast(left(title,2) + 1 as varchar(2)) + cast('01' as varchar(2))
    else title + 1 end next_title ,
    case when right(title,2) = '01' then cast(left(title,2) - 1 as varchar(2)) + cast('12' as varchar(2))
    else title - 1 end prev_title
    from strdc_admin.st_glt_shipment
    group by title
    order by title

    Hi,
    Wouldn't it be better if you first explained what this is supposed to do:
      select title
            ,case
                when right(title, 2) = 12
                then
                   cast(left(title, 2) + 1 as varchar(2)) + cast('01' as varchar(2))
                else
                   title + 1
             end
                next_title
            ,case
                when right(title, 2) = '01'
                then
                   cast(left(title, 2) - 1 as varchar(2)) + cast('12' as varchar(2))
                else
                   title - 1
             end
                prev_title
        from strdc_admin.st_glt_shipment
    group by title
    order by titleI mean, there seems to be some confusion about data types. First you have
    when right(title, 2) = 12which indicates title is numeric.
    Later on you have
    when right(title, 2) = '01'which indicates that title is of char type.
    (My guess is that right and left are like substr with positive and negative positions)
    Next you have
    cast(left(title, 2) + 1 as varchar(2)) + cast('01' as varchar(2))First part, seems to indicate that title is numeric, but what does the second + mean. Is that concatenation?
    If not, you have some really confusing implicit type conversions.
    And why do you do this:
    cast('01' as varchar(2))'01' is already of char datatype, so why cast it?
    Please return once you have worked a little more on your question.
    Regards
    Peter

  • Plz send me the code of interctive ALV report

    Hi
    plz send me the code of interctive ALV report
    thanks in advance
    rachu

    Hi
    <u><b>For More alv report examples check  these Tcodes <i>LIBS, BIBS</i>Here u can find more number of examples on alv reports of different kinds</b></u>
    Check this sample code
    TYPE-POOLS: SLIS.
    *type declaration for values from ekko
    TYPES: BEGIN OF I_EKKO,
           EBELN LIKE EKKO-EBELN,
           AEDAT LIKE EKKO-AEDAT,
           BUKRS LIKE EKKO-BUKRS,
           BSART LIKE EKKO-BSART,
           LIFNR LIKE EKKO-LIFNR,
           END OF I_EKKO.
    DATA: IT_EKKO TYPE STANDARD TABLE OF I_EKKO INITIAL SIZE 0,
          WA_EKKO TYPE I_EKKO.
    *type declaration for values from ekpo
    TYPES: BEGIN OF I_EKPO,
           EBELN LIKE EKPO-EBELN,
           EBELP LIKE EKPO-EBELP,
           MATNR LIKE EKPO-MATNR,
           MENGE LIKE EKPO-MENGE,
           MEINS LIKE EKPO-MEINS,
           NETPR LIKE EKPO-NETPR,
           END OF I_EKPO.
    DATA: IT_EKPO TYPE STANDARD TABLE OF I_EKPO INITIAL SIZE 0,
          WA_EKPO TYPE I_EKPO .
    *variable for Report ID
    DATA: V_REPID LIKE SY-REPID .
    *declaration for fieldcatalog
    DATA: I_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    DATA: IT_LISTHEADER TYPE SLIS_T_LISTHEADER.
    * declaration for events table where user comand or set PF status will
    * be defined
    DATA: V_EVENTS TYPE SLIS_T_EVENT,
          WA_EVENT TYPE SLIS_ALV_EVENT.
    * declartion for layout
    DATA: ALV_LAYOUT TYPE SLIS_LAYOUT_ALV.
    * declaration for variant(type of display we want)
    DATA: I_VARIANT TYPE DISVARIANT,
          I_VARIANT1 TYPE DISVARIANT,
          I_SAVE(1) TYPE C.
    *PARAMETERS : p_var TYPE disvariant-variant.
    *Title displayed when the alv list is displayed
    DATA:  I_TITLE_EKKO TYPE LVC_TITLE VALUE 'FIRST LIST DISPLAYED'.
    DATA:  I_TITLE_EKPO TYPE LVC_TITLE VALUE 'SECONDRY LIST DISPLAYED'.
    INITIALIZATION.
      V_REPID = SY-REPID.
      PERFORM BUILD_FIELDCATLOG.
      PERFORM EVENT_CALL.
      PERFORM POPULATE_EVENT.
    START-OF-SELECTION.
      PERFORM DATA_RETRIEVAL.
      PERFORM BUILD_LISTHEADER USING IT_LISTHEADER.
      PERFORM DISPLAY_ALV_REPORT.
    *&      Form  BUILD_FIELDCATLOG
    *       Fieldcatalog has all the field details from ekko
    FORM BUILD_FIELDCATLOG.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'EBELN'.
      WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'AEDAT'.
      WA_FIELDCAT-SELTEXT_M = 'DATE.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'BUKRS'.
      WA_FIELDCAT-SELTEXT_M = 'COMPANY CODE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'BUKRS'.
      WA_FIELDCAT-SELTEXT_M = 'DOCMENT TYPE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'LIFNR'.
      WA_FIELDCAT-NO_OUT    = 'X'.
      WA_FIELDCAT-SELTEXT_M = 'VENDOR CODE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    "BUILD_FIELDCATLOG
    *&      Form  EVENT_CALL
    *   we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = V_EVENTS
    *  EXCEPTIONS
    *    LIST_TYPE_WRONG       = 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.                    "EVENT_CALL
    *&      Form  POPULATE_EVENT
    *      Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'TOP_OF_PAGE'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
      ENDIF.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'USER_COMMAND'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'USER_COMMAND'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-NAME.
      ENDIF.
    ENDFORM.                    "POPULATE_EVENT
    *&      Form  data_retrieval
    *   retreiving values from the database table ekko
    FORM DATA_RETRIEVAL.
      SELECT EBELN AEDAT BUKRS BSART LIFNR FROM EKKO INTO TABLE IT_EKKO.
    ENDFORM.                    "data_retrieval
    *&      Form  bUild_listheader
    *       text
    *      -->I_LISTHEADEtext
    FORM BUILD_LISTHEADER USING I_LISTHEADER TYPE SLIS_T_LISTHEADER.
      DATA HLINE TYPE SLIS_LISTHEADER.
      HLINE-INFO = 'this is my first alv pgm'.
      HLINE-TYP = 'H'.
    ENDFORM.                    "build_listheader
    *&      Form  display_alv_report
    *       text
    FORM DISPLAY_ALV_REPORT.
      V_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         I_CALLBACK_PROGRAM                = V_REPID
    *   I_CALLBACK_PF_STATUS_SET          = ' '
         I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
         I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
         I_GRID_TITLE                      = I_TITLE_EKKO
    *   I_GRID_SETTINGS                   =
    *   IS_LAYOUT                         = ALV_LAYOUT
         IT_FIELDCAT                       = I_FIELDCAT[]
    *   IT_EXCLUDING                      =
    *   IT_SPECIAL_GROUPS                 =
    *   IT_SORT                           =
    *   IT_FILTER                         =
    *   IS_SEL_HIDE                       =
    *     i_default                         = 'ZLAY1'
         I_SAVE                            = 'A'
    *     is_variant                        = i_variant
         IT_EVENTS                         = V_EVENTS
        TABLES
          T_OUTTAB                          = IT_EKKO
    * 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.                    "display_alv_report
    *&      Form  TOP_OF_PAGE
    *       text
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_LISTHEADER
    *    i_logo                   =
    *    I_END_OF_LIST_GRID       =
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
    *       text
    *      -->R_UCOMM    text
    *      -->,          text
    *      -->RS_SLEFIELDtext
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
    RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN '&IC1'.
          READ TABLE IT_EKKO INTO WA_EKKO INDEX RS_SELFIELD-TABINDEX.
          PERFORM BUILD_FIELDCATLOG_EKPO.
          PERFORM EVENT_CALL_EKPO.
          PERFORM POPULATE_EVENT_EKPO.
          PERFORM DATA_RETRIEVAL_EKPO.
          PERFORM BUILD_LISTHEADER_EKPO USING IT_LISTHEADER.
          PERFORM DISPLAY_ALV_EKPO.
      ENDCASE.
    ENDFORM.                    "user_command
    *&      Form  BUILD_FIELDCATLOG_EKPO
    *       text
    FORM BUILD_FIELDCATLOG_EKPO.
      WA_FIELDCAT-TABNAME = 'IT_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'EBELN'.
      WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'EBELP'.
      WA_FIELDCAT-SELTEXT_M = 'LINE NO'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-SELTEXT_M = 'MATERIAL NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MENGE'.
      WA_FIELDCAT-SELTEXT_M = 'QUANTITY'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MEINS'.
      WA_FIELDCAT-SELTEXT_M = 'UOM'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'NETPR'.
      WA_FIELDCAT-SELTEXT_M = 'PRICE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    "BUILD_FIELDCATLOG_EKPO
    *&      Form  event_call_ekpo
    *   we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL_EKPO.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = V_EVENTS
    * EXCEPTIONS
    *   LIST_TYPE_WRONG       = 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.                    "event_call_ekpo
    *&      Form  POPULATE_EVENT
    *        Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT_EKPO.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'TOP_OF_PAGE'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
      ENDIF.
      ENDFORM.                    "POPULATE_EVENT
    *&      Form  TOP_OF_PAGE
    *       text
    FORM F_TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_LISTHEADER
    *    i_logo                   =
    *    I_END_OF_LIST_GRID       =
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
    *       text
    *      -->R_UCOMM    text
    *      -->,          text
    *      -->RS_SLEFIELDtext
    *retreiving values from the database table ekko
    FORM DATA_RETRIEVAL_EKPO.
    SELECT EBELN EBELP MATNR MENGE MEINS NETPR FROM EKPO INTO TABLE IT_EKPO.
    ENDFORM.
    FORM BUILD_LISTHEADER_EKPO USING I_LISTHEADER TYPE SLIS_T_LISTHEADER.
    DATA: HLINE1 TYPE SLIS_LISTHEADER.
    HLINE1-TYP = 'H'.
    HLINE1-INFO = 'CHECKING PGM'.
    ENDFORM.
    FORM DISPLAY_ALV_EKPO.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    *   I_INTERFACE_CHECK                 = ' '
    *   I_BYPASSING_BUFFER                = ' '
    *   I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = V_REPID
    *   I_CALLBACK_PF_STATUS_SET          = ' '
    *   I_CALLBACK_USER_COMMAND           = 'F_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_TITLE_EKPO
    *   I_GRID_SETTINGS                   =
    *   IS_LAYOUT                         =
       IT_FIELDCAT                       = I_FIELDCAT[]
    *   IT_EXCLUDING                      =
    *   IT_SPECIAL_GROUPS                 =
    *   IT_SORT                           =
    *   IT_FILTER                         =
    *   IS_SEL_HIDE                       =
    *   I_DEFAULT                         =
       I_SAVE                            = 'A'
    *   IS_VARIANT                        =
       IT_EVENTS                         = V_EVENTS
      TABLES
        T_OUTTAB                          = IT_EKPO
    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.
    Try this links...
    http://www.****************/Tutorials/ALV/ALVMainPage.htm
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Reward all helpful answers
    Regards
    Pavan
    Message was edited by:
            Pavan praveen

  • Hi guys i have a problem related updating icloud desktop.while updating it shows (error code :A12E5).I have macbook air mid 2011..plz sort this out

    hi guys i have a problem related updating icloud desktop.while updating it shows (error code :A12E5).I have macbook air mid 2011..plz sort this out

    olliemilne wrote:
    - I've tried holding a bunch of different keys when starting up (cmd+R etc.) but again, nothing.
    You could try booting the MBP using the OPTION+COMMAND+R keys and see if it will connect to the Apple servers.  This would allow you to install the original OSX .  I have my doubts though.
    - I've tried something crazy suggested in another thread; leaving the Macbook partially opening and shaking it, which supposedly does something to the "sudden motion sensor".
    The Sudden Motion Sensor is applicable for conventional Hard Drives, not the SSD that is in a MBA.  Doing that will serve no useful purpose.
    You have exhausted all reasonable options and will just have to have the MBA evaluated at the genius bar.
    Ciao.

  • I had one error plz solve this

    hi when i am useing this code i am getting one error like
    like : when ur using addition of for all entries
    the objid must be it_hrp1000-objid have same length and type
    plz solve this what can i do
    TYPES :BEGIN OF ST_OUTPUT,
            COUNT TYPE STRING,
           OTYPE TYPE HRP1000-OTYPE,
            OBJID TYPE HRP1001-SOBID,
            STEXT TYPE HRP1000-STEXT,
            BDATE TYPE HRP1000-BEGDA,
            EDATE TYPE HRP1000-ENDDA,
            CANCRT TYPE T77CRT-CANCRT,
            AEDTM TYPE HRP1026-AEDTM,
            NCONT TYPE HRP1026-NCONT,
            LOCTX TYPE HRVPVA-LOCTX,
            UNAME TYPE HRP1026-UNAME,
           END OF ST_OUTPUT.
    TYPES: BEGIN OF ST_HRP1000,
            OTYPE TYPE HRP1000-OTYPE,
            BEGDA TYPE HRP1000-BEGDA,
            ENDDA TYPE HRP1000-ENDDA,
            OBJID TYPE HRP1001-SOBID,
           END OF ST_HRP1000.
    TYPES : BEGIN OF ST_HRP1001,
             OTYPE TYPE HRP1000-OTYPE,
            OBJID TYPE HRP1001-SOBID,
             SCLAS TYPE HRP1001-SCLAS,
             SOBID TYPE HRP1001-SOBID,
             BDATE TYPE HRP1000-BEGDA,
             EDATE TYPE HRP1000-ENDDA,
            END OF ST_HRP1001.
    TYPES : BEGIN OF ST_HRP1026,
             AEDTM TYPE HRP1026-AEDTM,
             UNAME TYPE HRP1026-UNAME,
             REASN TYPE HRP1026-REASN,
             DELET TYPE HRP1026-DELET,
             NCONT TYPE HRP1026-NCONT,
            END OF ST_HRP1026.
    TYPES : BEGIN OF ST_REASON,
             CANCR TYPE HRP1026-CANCR,
             CANCRT TYPE T77CRT-CANCRT,
            END OF ST_REASON.
    DATA : IT_REASON TYPE STANDARD TABLE OF ST_REASON.
    DATA : WA_RESON TYPE ST_REASON.
    DATA : IT_OUTPUT TYPE STANDARD TABLE OF ST_OUTPUT.               "OUTPUT FEILDS OF REPORT.
    DATA : WA_OUTPUT TYPE ST_OUTPUT.
    DATA : IT_HRP1000 TYPE STANDARD TABLE OF ST_HRP1000.             "DATA FROM HRP1000 TABLE
    DATA : WA_HRP1000 TYPE ST_HRP1000.
    DATA : IT_HRP1001 TYPE STANDARD TABLE OF ST_HRP1001.             "DATA FROM HRP1001 TABLE
    DATA : WA_HRP1001 TYPE ST_HRP1001.
    DATA : IT_HRP1026 TYPE STANDARD TABLE OF ST_HRP1026.              "DATA FROM HRP1026 TABLE
    DATA : WA_HRP1026 TYPE ST_HRP1026.
    DATA: WS_FCAT    TYPE SLIS_FIELDCAT_ALV .                         " FEILDCATALOG FOR ALV REPORT
    DATA: IN_FCAT    TYPE SLIS_T_FIELDCAT_ALV.
    DATA: W_LAYOUT   TYPE SLIS_LAYOUT_ALV.
    DATA : LV_COUNT TYPE I.                                           "FEILD FOR SERIAL NUMBER
      DATA :   JOBJID LIKE HRP1000-OBJID,
               JSOBID LIKE HRP1001-SOBID.
    ***************************END OF DATA DECLARATION******************************************
    ***********SELECTION SCREEN DESIGN***********************
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS : OTYPE LIKE HRP1000-OTYPE.
    SELECT-OPTIONS: DATE FOR SY-DATUM.
    SELECTION-SCREEN END OF BLOCK B1.
    **********END OF SELECTION SCREEN DESIGN*****************
    ****INITIALIZATION VENT TO ASIGN DEFAULT VALUES TO OTYPE
    INITIALIZATION.
    OTYPE = 'D'.
    *************END OF EVENT INITIALIZATION*****************
    START-OF-SELECTION.
    SELECT OTYPE OBJID BEGDA ENDDA
           FROM HRP1000
           INTO TABLE IT_HRP1000
           WHERE OTYPE = 'D'.
             AND BEGDA GT BEGDAT AND ENDA LT ENDDA.
    SELECT SCLAS SOBID
          FROM HRP1001
          INTO TABLE IT_HRP1001
          FOR ALL ENTRIES IN IT_HRP1000
          WHERE OBJID = IT_HRP1000-OBJID
           AND OTYPE = 'D' AND ( SCLAS = 'E' OR SCLAS = 'ET' ).
    SELECT AEDAT UNAME
          FROM HRP1026
          INTO TABLE IT_HRP1026
          FOR ALL ENTRIES IN IT_HRP1001
          WHERE OBJID = IT_HRP1001-SOBID
           AND ( OTYPE = 'E' OR OTYPE = 'ET' )
           AND DELET = 'X'.

    Hi naresh,
    1. minor mistake
    2.
    TYPES: BEGIN OF ST_HRP1000,
    OTYPE TYPE HRP1000-OTYPE,
    BEGDA TYPE HRP1000-BEGDA,
    ENDDA TYPE HRP1000-ENDDA,
    <b>OBJID TYPE HRP1001-OBJID</b>,
    END OF ST_HRP1000.
    3. OBJID and SOBID are different in length, hence the error.
    4. Just correct the BOLD LINE, and check again.
       (also check if there is any impact on other sql statements or data)
    regards,
    amit m.

  • How we can replace the column in Core Table plz see this msg

    Hi,
    How we can replace the column in Core Table plz see this msg
    Req:
    when i push the Insert button the data inserted into the Table
    like
    Cols Values
    FOCD      CUFZ14
    PRDCD FU6
    Month 082008
    AgencyCD AG02
    PLAN 123
    This is FO_Plan Table....
    Requirement:
    i need at table show to replace the Prd_CD to Prd_Desc while inserting the above Row....
    There is no Prd_Desc in FO Plan Table....
    Prd_desc comes from Product Table.
    did u get my point...
    how to solve.
    Thanks
    Ram
    Edited by: Ram Vungarala on Sep 24, 2008 9:09 AM
    Edited by: Ram Vungarala on Sep 24, 2008 9:15 AM

    Hi,
    I'm not sure if I understood what are you trying to do. But you can modify your table in a backing bean code. JSF page code for a table:
    <af:table id="product_search_results_tbl" binding="#{backingBean.boundTable}" ... />
    And a backing bean code:
    import oracle.adf.view.faces.component.core.data.CoreTable;
    public class YourBackingBean {
        private CoreTable boundTable;
        public void setBoundTable(CoreTable boundTable) {
            this.boundTable = boundTable;
        public CoreTable getBoundTable() {
            return boundTable;
       public String insertButtonAction() {
          // Bind your button action to this method and modify here your bound table
         return null;
    {code}
    Look for column modification methods in a CoreTable class documentation.
    Marius                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Plz provide the alv report

    The purpose of the report is to serve as an indicator for when an existing Purchase Requisitions is updated, and requires a Purchase Order to be changed.  Standard SAP offers no real efficient way to communicate changes/updates between Purchase Requisition and Purchase Order.
    This report will be used to notify a Purchasing Agent that a change has taken place against an existing Purchase Requisition, and the Purchase Order requires to be updated accordingly. This report will be emailed via a batch job to the buyers daily, or can be run on an ad hoc basis
    plz provide the alv report which is related to this discription.
    urgent plz

    The purpose of the report is to serve as an indicator for when an existing Purchase Requisitions is updated, and requires a Purchase Order to be changed.  Standard SAP offers no real efficient way to communicate changes/updates between Purchase Requisition and Purchase Order.
    This report will be used to notify a Purchasing Agent that a change has taken place against an existing Purchase Requisition, and the Purchase Order requires to be updated accordingly. This report will be emailed via a batch job to the buyers daily, or can be run on an ad hoc basis
    plz provide the alv report which is related to this discription.
    urgent plz

  • F3 function key not work in this ALV pgm

    Hi,
    How to make the F3 function key (go back to previous screen) work in this ALV program?
    Thanks,
    Helen
    REPORT  z_pgm.
    TYPE-POOLS : slis.
    INITIALIZATION.
      PERFORM sub_fieldcat_init CHANGING gi_fieldcat.
      PERFORM sub_eventtab_build USING gi_events[].
      PERFORM sub_event_exit_build CHANGING gi_event_exit.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = g_save
        CHANGING
          cs_variant = g_xvariant
        EXCEPTIONS
          not_found  = 2.
    *EVENT : AT SELECTION-SCREEN OUTPUT                                    *
    AT SELECTION-SCREEN OUTPUT.
               EVENT : START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM sub_comment_build  USING gi_list_top_of_page.
      PERFORM sub_get_data.
               EVENT : END-OF-SELECTION
    END-OF-SELECTION.
      IF l_error IS INITIAL.
        PERFORM sub_grid_display USING gi_adrc_disp.
      ENDIF.
    *&      Form  sub_fieldcat_init
    FORM sub_fieldcat_init CHANGING li_fieldcat LIKE gi_fieldcat[]."#EC *
      DATA : lw_fieldcat TYPE slis_fieldcat_alv.
      REFRESH gi_fieldcat[].
      CLEAR lw_fieldcat.
      lw_fieldcat-fieldname = 'SELKZ'.
      lw_fieldcat-tabname   = 'gi_adrc_disp'.
      lw_fieldcat-hotspot   = 'X'.
      lw_fieldcat-outputlen = '8'.
      APPEND lw_fieldcat TO li_fieldcat.
      CLEAR lw_fieldcat.
      lw_fieldcat-fieldname = 'LOCATION'.
      lw_fieldcat-tabname   = 'gi_adrc_disp'.
      lw_fieldcat-seltext_s = text-002.
      lw_fieldcat-seltext_m = text-002.
      lw_fieldcat-seltext_l = text-002.
      lw_fieldcat-outputlen = '20'.
      APPEND lw_fieldcat TO li_fieldcat.
    ENDFORM.                    " sub_fieldcat_init
    *&      Form  SUB_EVENTTAB_BUILD
    FORM sub_eventtab_build  USING    li_events TYPE slis_t_event.
      DATA: lw_event TYPE slis_alv_event.
    *to call top_of_page event
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = li_events.
      READ TABLE li_events WITH KEY name =  slis_ev_top_of_page
                               INTO lw_event.
      IF sy-subrc = 0.
        MOVE c_formname_top_of_page TO lw_event-form.
        APPEND lw_event TO li_events.
      ENDIF.
    ENDFORM.                    " SUB_EVENTTAB_BUILD
          FORM SUB_COMMENT_BUILD                                        *
    FORM sub_comment_build USING li_lt_top_of_page TYPE slis_t_listheader.
      DATA: lw_line TYPE slis_listheader.
    Listenüberschrift: Typ H
      CLEAR lw_line.
      lw_line-typ  = 'H'.
      lw_line-info = text-013.
      APPEND lw_line TO li_lt_top_of_page.
    Kopfinfo: Typ S
      CLEAR lw_line.
      lw_line-typ  = 'S'.
      lw_line-key  = text-014.
      lw_line-info = text-015.
      APPEND lw_line TO li_lt_top_of_page.
    ENDFORM.                    "SUB_COMMENT_BUILD
    *&      Form  sub_VARIANT_INIT
    FORM sub_variant_init .
      CLEAR g_variant.
      g_variant-report = g_repid.
    ENDFORM.                    " sub_VARIANT_INIT
    *&      Form  SUB_F4_FOR_VARIANT
          To get the existing variant
    FORM sub_f4_for_variant .
      g_variant-report = g_repid.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
             EXPORTING
                  is_variant          = g_variant
                  i_save              = g_save
                it_default_fieldcat =
             IMPORTING
                  e_exit              = g_exit
                  es_variant          = g_xvariant
             EXCEPTIONS
                  not_found = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S'      NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
      ENDIF.
    ENDFORM.                    " SUB_F4_FOR_VARIANT
          FORM TOP_OF_PAGE
    FORM top_of_page.                                           "#EC CALLED
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = gi_list_top_of_page.
    ENDFORM.                    "TOP_OF_PAGE
    FORM sub_grid_display USING li_final_disp LIKE gi_final_disp.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'                  "#EC *
          EXPORTING
            i_callback_pf_status_set = 'SET_PF_STATUS'
            i_callback_program       = g_repid
            i_callback_user_command  = 'SUB_CB_USER_COMMAND'
          i_grid_title       = l_title
            it_fieldcat              = gi_fieldcat
           is_layout          = gw_layout
            i_save                   = g_save
            is_variant               = g_variant
            it_events                = gi_events[]
            it_event_exit            = gi_event_exit[]
          IMPORTING
            e_exit_caused_by_caller  = g_exit_caused_by_caller
            es_exit_caused_by_user   = gs_exit_caused_by_user
          TABLES
            t_outtab                 = gi_adrc_disp
          EXCEPTIONS
            program_error            = 1
            OTHERS                   = 2.
    ENDFORM.                    " sub_grid_display
    *&      Form                                          *
    FORM sub_get_data .
      CLEAR l_error.
      IF NOT rb_loc IS INITIAL.
        IF p_loc EQ space.
          MESSAGE i100(zm01) WITH
                  'Please Enter Location Code and SET ID'.
          l_error = 'X'.
        ENDIF.
        SELECT addrnumber location name1 name2 building floor
                   name_co country street str_suppl1 str_suppl3 city1
                   city2 region post_code1 transpzone
                INTO TABLE gi_adrc_disp
                FROM adrc
                WHERE region = p_region
                  AND str_suppl3 = p_loc.
      ELSEIF NOT rb_all IS INITIAL.
        SELECT addrnumber location name1 name2 building floor
                   name_co country street str_suppl1 str_suppl3 city1
                   city2 region post_code1 transpzone
                INTO TABLE gi_adrc_disp
                FROM adrc
                WHERE transpzone NE space.
      ENDIF.
      IF sy-subrc NE 0.
        l_error = 'X'.
        MESSAGE i100(zm01) WITH
                  'No Record Exists for Input'.
        EXIT.
      ENDIF.
      lw_adrc-selkz = c_add.
      MODIFY gi_adrc_disp FROM lw_adrc TRANSPORTING selkz
            WHERE transpzone = space.
      lw_adrc-selkz = c_remove.
      MODIFY gi_adrc_disp FROM lw_adrc TRANSPORTING selkz
            WHERE transpzone NE space.
    ENDFORM.                    " sub_get_data
    *&      Form  sub_cb_user_command
    FORM sub_cb_user_command  USING r_ucomm LIKE sy-ucomm                               rs_selfield TYPE slis_selfield.
       l_index = rs_selfield-tabindex.
      ENDFORM.                        "sub_cb_user_command
    *&      Form  sub_cb_user_command
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'MAIN'.
    ENDFORM.                        "set_pf_status

    Hi,
    this is for setting the PF-status.
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
    SET PF-STATUS 'MAIN'.
    ENDFORM. "set_pf_status
    and double click on main and see what is the Function key and function code associated for BACK.
    FORM sub_cb_user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
    case r_ucomm.
    when <b>'BACK'.</b>  <<<<i assumed Focde is BACK for BACK
    leave to screen 0.
    endform.
    Regards
    vijay

  • I get this error code when trying to update from an older version of Firefox: The operation can't be completed because you don't have permission to access some of the items.

    While trying to upgrade from a previous version of Firefox, I get this error code: "The operation can’t be completed because you don’t have permission to access some of the items."
    == installing ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    I resolved the problem in Snow Leopard by logging out of my (admin) account and logging into my daughter's account on the same machine. She doesn't have admin privileges, so when I tried to install Firefox 4 in her account, I had to authenticate with my admin identity and PW. Installation went smoothly after that. My guess is that you could also simply create a new account on the same machine and install Firefox 4 from that. I have no idea why this works.

  • 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

  • My iTunes Match not add my songs to my iPod touch that I have on my external hard drive I had this drive for 3 years now ain't notting wrong with my songs on it but they are not been added to my iPod why is this so plz fix this or iTunes Match gonna suck

    So I sign up for iTunes Match an start adding music to my iPod touch 5 generation I have a lot of music on my hard drive that I had for over 3 years now but some reason they are not syncing to my iPod touch notting is wrong with my music some may not have a track name but they r fine. Note ,before I added iTunes Match to my iPod I could of synced my music with no problem , so can u guys plz fix this ? Why can't my music be added to my iPod ?iTunes don't have all the songs I want I have my own music before iTunes so I don't understand why can't I have them on my iPod touch 5gen ?

    Hi,
    What is the iCloud status of these tracks?
    You can add icloud status column to song view - go to menu > view> view options and tick box. This will tell you what has been Matched, Uploaded, Purchased, Inelligible, Duplicate or Waiting.
    Jim

Maybe you are looking for

  • I am very disappointed in the lack of concern for customer satisfaction...

    I have previously been totally satisfied with the customer service and friendliness of the staff at Best Buy.  This, however, has taken a turn of 180 degrees.  Recently I purchased 2 smartphones. The salesperson was friendly and very helpful.  At the

  • How to pass variable to content area from a PL/SQL procedure

    Hi, Can somebody tell me how to create a(Content area) folder based on a PL/SQL procedure that takes a variable as a parameter and returns data based on value of that parameter to the folder . Any help would be appreciated . Thanks and regards. Neeti

  • Account determination error while using 412 Q in MB1B

    Hi All,    While doing transfer posting for a material using Movement Type, 412 Q, we are getting the error "Account determination for entry 1000 AUM 1000 ___ 2002 not possible". The transfer posting was done already for the same material for other b

  • After effects templates

    Trying to open an after effects template that I downloaded online and I can't figure out how to open it in after effects cc?

  • May I switch the order from stand shipping to in-store pick up?

    I make an order of iphone6plus today in stand shipping way. Is it possible to change it to a in-store pick-up? Will it be much quicker than the shipping way? Has  anybody  been through the similar situation? Thank you in advance.