Help on this report

Hi,
I wrote this report discount analysis, when I debug it is showing values in 'getdata' but not in 'processdata'. Can you pl look at my code and let me know what is wrong with it. when i execute , it is giving '0' as value, but correct no of records.
pl help me.
Thanks
Veni.
REPORT ZSD_DISCOUNT_ANALYSIS .
TOP-OF-PAGE.
  WRITE 3 'Discount Analysis'
           COLOR COL_HEADING.
  ULINE.
    T A B L E S                                                      *
  tables: vbrk, konv.
GLOBAL DATA
  data:  x type i, y type i, l type i.
  data: g_repid like sy-repid.
  data:begin of it_vbrk occurs 0,
        vbeln like vbrk-vbeln,
        knumv like vbrk-knumv,
        fkdat like vbrk-fkdat,
       end of it_vbrk.
  data:begin of it_konv occurs 0,
        knumv like konv-knumv,
        kschl like konv-kschl,
        kwert like konv-kwert,
        kunnr like konv-kunnr,
       end of it_konv.
  data: begin of it_output occurs 0,
        vbeln like vbrk-vbeln,
        kwert like konv-kwert,
        end of it_output.
    S E L E C T I O N   S C R E E N                                  *
  selection-screen: begin of block b1 with frame title text-001.
  select-options:
                  s_vbeln for vbrk-vbeln,
                  s_fkdat for vbrk-fkdat,
                  s_kschl for konv-kschl,
                  s_kunnr for konv-kunnr,
                  s_knumv for konv-knumv.
  selection-screen: end of block b1.
START-OF-SELECTION
start-of-selection.
  perform get_data.
  perform process_data.
  perform display_data.
END-OF-SELECTION
end-of-selection.
*&      Form  get_data
      text
-->  p1        text
<--  p2        text
form get_data.
Get data from VBRK
  select vbeln
          knumv
          fkdat
  from vbrk
  into table it_vbrk
  where vbeln in s_vbeln
  and fkdat in s_fkdat.
Get data from KONV
  select knumv
         kschl
         kwert
         kunnr
    from konv
    into table it_konv
  where kschl in s_kschl
and kunnr in s_kunnr
  and knumv in s_knumv.
endform.                    " get_data
*&      Form  process_data
      text
-->  p1        text
<--  p2        text
FORM process_data.
  loop at it_vbrk.
    read table it_konv
    WITH KEY knumv = it_vbrk-knumv.
    if sy-subrc = 0.
      move konv-kwert to it_output-kwert.
      move vbrk-vbeln to it_output-vbeln.
      append it_output.
      clear it_output.
    endif.
  endloop.
ENDFORM.                    "process_data
*&      Form  display_data
      text
-->  p1        text
<--  p2        text
form display_data.
  define new_grid.
    y = sy-linno. y = y + 2.
    skip to line y.
    x = sy-colno. position x. write '|'.
  end-of-definition.
  define write_grid.
    x = sy-colno. y = sy-linno. position x.
    write:  &1, '|'.
    l = sy-colno - x + 1.
    x = x - 2. y = y + 1. skip to line y. position x.
    uline at x(l).
    y = y - 1. x = sy-colno. skip to line y. position x.
  end-of-definition.
  FORMAT COLOR COL_HEADING.
  write:/1 'Billing Document',
        20 'Condition Value'.
skip 1.
  loop at it_output.
    format color COL_TOTAL.
    new_grid.
    write_grid: it_output-vbeln,
                it_output-kwert.
    format color off.
  endloop.
endform.                    " display_data

This doesn't see right to me.
FORM process_data.
loop at it_vbrk.
read table it_konv
WITH KEY knumv = it_vbrk-knumv.
if sy-subrc = 0.
<b>move konv-kwert to it_output-kwert.
move vbrk-vbeln to it_output-vbeln.</b>
append it_output.
clear it_output.
endif.
endloop.
ENDFORM. "process_data
Shouldn't it be.....
FORM process_data.
loop at it_vbrk.
read table it_konv
WITH KEY knumv = it_vbrk-knumv.
if sy-subrc = 0.
<b>move it_konv-kwert to it_output-kwert.
move it_vbrk-vbeln to it_output-vbeln.</b>
append it_output.
clear it_output.
endif.
endloop.
ENDFORM. "process_data
Regards,
Rich Heilman

Similar Messages

  • Needed help on this report

    When BELNR field is double clicked it is not going to F1 document in FB03
    Could anybody help on this , plz help
    Here is the code,
    *& Report  YALV_1
    REPORT  YALV_1.
    TABLES : BKPF,BSEG.
    Data for ALV display
    TYPE-POOLS: SLIS.
    data : int_fcat type SLIS_T_FIELDCAT_ALV,
           fieldcatalog type slis_t_fieldcat_alv with header line.
    DATA:  wa_sortinfo TYPE slis_sortinfo_alv,
           i_sortcat TYPE slis_t_sortinfo_alv.
    TYPES  : BEGIN OF T_BKPF,
            BUKRS TYPE BKPF-BUKRS,
            BELNR TYPE BKPF-BELNR,
            GJAHR TYPE BKPF-GJAHR,
            BLART TYPE BKPF-BLART,
            BLDAT TYPE BKPF-BLDAT,
            BUDAT TYPE BKPF-BUDAT,
           BUZEI TYPE BSEG-BUZEI,
            END OF T_BKPF.
    types: begin of t_bseg,
           BUZEI TYPE BSEG-BUZEI,
           end of t_bseg.
    DATA : it_bkpf TYPE STANDARD TABLE OF t_bkpf with header line,
          wa_bkpf TYPE t_bkpf,
           it_bseg type standard table of t_bseg.
          wa_bseg type t_bseg.
    field to store report name
    DATA :  i_repid like sy-repid.
    select bukrs belnr gjahr blart bldat budat from bkpf into table
    it_bkpf where blart = 'AA'.
    field to check table length
    *data i_lines like sy-tabix.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    PERFORM sortcat_init CHANGING i_sortcat.
    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   = 'BUKRS'.
      fieldcatalog-seltext_m   = 'Company Code'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 4.
    fieldcatalog-do_sum      = 'X'.
    fieldcatalog-no_zero     = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BELNR'.
      fieldcatalog-seltext_m   = 'Doc No'.
      fieldcatalog-hotspot = 'X'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'GJAHR'.
      fieldcatalog-seltext_m   = 'Fiscal Year'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BLART'.
      fieldcatalog-seltext_m   = 'DOC Type'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BLDAT'.
      fieldcatalog-seltext_m   = 'Doc Date'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BUDAT'.
      fieldcatalog-seltext_m   = 'Popsting Date'.
      fieldcatalog-col_pos     = 5.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BUZEI'.
      fieldcatalog-seltext_m   = 'Line Items'.
      fieldcatalog-col_pos     = 6.
      fieldcatalog-do_sum      = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    FORM sortcat_init CHANGING i_sortcat TYPE slis_t_sortinfo_alv.
      CLEAR wa_sortinfo.
      wa_sortinfo-fieldname = 'BUKRS'.
      wa_sortinfo-tabname = 'T_BKPF'.
      wa_sortinfo-spos = 1.            " First sort by this field.
      wa_sortinfo-up = 'X'.            "   Ascending
      wa_sortinfo-subtot = 'X'.        " Subtotal at Name1
      APPEND wa_sortinfo TO i_sortcat.
      CLEAR wa_sortinfo.
      wa_sortinfo-fieldname = 'BELNR'.
      wa_sortinfo-tabname = 'T_BKPF'.
      wa_sortinfo-spos = 2.            " Sec sort by this field.
      wa_sortinfo-up = 'X'.            "   Ascending
      wa_sortinfo-subtot = 'X'.        " Subtotal at Name1
      APPEND wa_sortinfo TO i_sortcat.
    ENDFORM.                    " sortcat_init
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      i_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = i_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_sort                = i_sortcat
               it_special_groups       = gd_tabgroup
               IT_EVENTS                = GT_XEVENTS
                i_save                  = 'X'
               is_variant              = z_template
           tables
                t_outtab                = IT_bkpf
           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
    form data_retrieval.
    IF it_bkpf[] IS NOT INITIAL.
       select buzei from bseg into
         table it_bseg for all entries in it_bkpf
         where bukrs = it_bkpf-bukrs
         and belnr = it_bkpf-belnr
         and gjahr = it_bkpf-gjahr.
         endif.
    endform.                    " DATA_RETRIEVAL.
    FORM USER_COMMAND
    FORM user_command USING u_com LIKE sy-ucomm sel_lin TYPE slis_selfield.
    CASE u_com.
      WHEN '&IC1'.
        CASE sel_lin.
          WHEN 'BELNR'.
          read TABLE IT_BKPF INDEX sel_lin-tabindex.
          SET PARAMETER ID 'BLN' FIELD IT_BKPF-BELNR.
          SET PARAMETER ID 'BUK' FIELD IT_BKPF-BUKRS.
          SET PARAMETER ID 'GJR' FIELD IT_BKPF-GJAHR.
          CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN.
        ENDCASE.
    CLEAR u_com.
    ENDCASE.
    ENDFORM. "USER_COMMAND

    Pl. do this change in ur code...
    FORM user_command USING u_com LIKE sy-ucomm sel_lin TYPE slis_selfield.
    CASE u_com.
    WHEN '&IC1'.
    CASE sel_lin-FIELDNAME.
    WHEN 'BELNR'.
    read TABLE IT_BKPF INDEX sel_lin-tabindex.
    SET PARAMETER ID 'BLN' FIELD IT_BKPF-BELNR.
    SET PARAMETER ID 'BUK' FIELD IT_BKPF-BUKRS.
    SET PARAMETER ID 'GJR' FIELD IT_BKPF-GJAHR.
    CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN.
    ENDCASE.
    CLEAR u_com.
    ENDCASE.
    ENDFORM. "USER_COMMAND
    Regards,
    Joy.

  • Help me this report

    Hi Freinds,
    i am doing a report.. pls.. see below OUT PUT DATA..
    ouput data :
                                  v_dmbtr_1          v_kwert_1
    567612 290 E 0.00       0.00     0.00          0.00       200612CAWH
    567612 290 E 0.00       0.00     0.00        0.00        200612CPWH
    567612 290 E 0.00      0.00      0.00        0.00        200612SDWH
    567612 290 E 0.00     0.00     0.00       0.00         200612TRWH
    567612 290 E 0.00    0.00      0.00        0.00        200612NORM
    567616 290 E 0.00     0.00       0.00        0.00        200612CAWH
    PRINT THE DATA FOR THIS AMOUNT FEILSDS                               v_dmbtr_1          v_kwert_1
    SEE ABOVE OUT PUT DATA , AFTER 3 RD FIELD.NULL FIELDS ARE AMOUNT FIELDS..
    amount fields are declared like this,
      v_dmbtr_1 like MSEG-DMBTR,
      v_kwert_1 like konv-kwert.
    WHEN I AM WRITING THIS BELOW CODE IN MY REPORT THE AMOUNT FIELDS ARE COMING ZEROS.(NULL VAUES).
    but i want print the values.(DATA)
    CODE WRITTEN LIKE THIS :
    SORT IT_TMP BY MATNR MATKL LGORT.
    LOOP AT IT_TMP.
    V_TABIX = SY-TABIX.
    v_dmbtr_1 = v_dmbtr_1 + IT_tMP-DMBTR.
    v_kwert_1 = v_kwert_1 + IT_TMP-KWERT.
    (HERE v_dmbtr_1 v_kwert_1 ARE AMOUNT AVRIEBLES )
    AT END OF LGORT.
    READ TABLE IT_tmp INDEX V_TABIX.
    it_MATNR = IT_TMP-MATNR.
    it_MATKL = IT_TMP-MATKL.
    it_LGORT = IT_tMP-LGORT.
    it_dmbtr = v_dmbtr_1.
    it_kwert = v_kwert_1.
    APPEND IT_MODEL.
    HELP ME REGARDING THIS ISSUE PLS.. ITS VERY URGENT.
    REGARDS,

    Hi Anji,
    after it_model internal table ,, i am using the below internal table.
    actual it is an interface.. the file is generating in application server.
    this is the final internal table.
    DATA: BEGIN OF IT_FILE OCCURS 0,
             MATNR(15),  " LIKE MSEG-MATNR,
            DELIM1(1),
             MATKL(2),   " LIKE MARA-MATKL,
            DELIM2(1),
             MVGR1(2),   " LIKE MVKE-MVGR1,
            DELIM3(1),
             SPART(2),   " LIKE MARA-SPART,
            DELIM4(1),
             DMBTR(12),                                         " (18),
            DELIM5(1),
             KWERT(12),                                         " (18),
            DELIM6(1),
             AAMT(12),                                          " (18),
            DELIM7(1),
             ALAMT(12),                                         " (18),
            DELIM8(1),
             BLDAT(6),
             LGORT(4),
          END OF IT_FILE.
    see below code for final output.
        WRITE:IT_MODEL-KWERT TO V_KWERT CURRENCY IT_MODEL-WAERK,
              IT_MODEL-DMBTR TO V_DMBTR CURRENCY T001-WAERS,
              V_AAMT         TO V_AAMTT  CURRENCY T001-WAERS,
              V_ALAMT        TO V_ALAMTT CURRENCY T001-WAERS.
        WRITE V_KWERT TO IT_FILE-KWERT RIGHT-JUSTIFIED.
        WRITE V_DMBTR TO IT_FILE-DMBTR RIGHT-JUSTIFIED.
        WRITE V_AAMTT TO IT_FILE-AAMT RIGHT-JUSTIFIED.
        WRITE V_ALAMTT TO IT_FILE-ALAMT RIGHT-JUSTIFIED.
        MOVE:  IT_MODEL-MATNR  TO IT_FILE-MATNR.
        MOVE  IT_MODEL-LGORT  TO IT_FILE-LGORT.
        APPEND  IT_FILE.
    pls.reply soon.
    regards,

  • Need help On this Report

    I'm asked to develop a report that should display output based on either dept wise or supplier wise
    Select Im.Item ItemID,Gp.Division Division, Deps.Group_No Group_No,Is1.Supplier Supplier ,soh.stock_on_hand stock_on_hand,im.dept,soh.loc
    From Item_Master Im , Deps Deps, Groups Gp,
    Item_Supplier Is1, item_loc_soh soh
    Where IM.DEPT=DEPS.DEPT AND DEPS.GROUP_NO=GP.GROUP_NO
    AND IS1.ITEM=IM.ITEM and im.item=soh.item and soh.loc_type in ('W','S')
    and (IS1.supplier=nvl(:supp,IS1.supplier)
    or im.dept=nvl(:dept,im.dept))
    this is the query i've written and in the parameters section identifier:dept,data type:integer,default value *,parameter type menu,list of value:dept_lov and can select all and null value passed are selected
    same for the supp parameter as well
    and in the lov supp_lov (select distinct supplier from item_supplier)
    and in the lov dept_lov (select distinct dept from item_master)
    Now when I Run the report I can see the default select all is running fine..but when I select dept value or supplier value from the drop down list I can see the same select all...how to get only the paticular dept related items when I select a particular dept and supplier related items when I select supplier a particular supplier no.
    please help

    Hi Vetsrini, Thanks for the timely reply
    By Null do You mean I should not specify anything in the parameter section..
    Please help

  • Kernel panic (can anyone please help with this report)

    Interval Since Last Panic Report:  4422 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    18853568-2DBB-1D40-708D-732F1844D6D2
    Sun Oct 20 08:29:53 2013
    panic(cpu 0 caller 0xffffff7f9b27af1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff810a155000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8109e5aef0 : 0xffffff801901d636
    0xffffff8109e5af60 : 0xffffff7f9b27af1a
    0xffffff8109e5b030 : 0xffffff7f9977026c
    0xffffff8109e5b0f0 : 0xffffff7f998431f6
    0xffffff8109e5b130 : 0xffffff7f99843254
    0xffffff8109e5b1a0 : 0xffffff7f99b08278
    0xffffff8109e5b2d0 : 0xffffff7f9986bad1
    0xffffff8109e5b2f0 : 0xffffff7f9977703f
    0xffffff8109e5b3a0 : 0xffffff7f99774ad6
    0xffffff8109e5b5a0 : 0xffffff7f997763ff
    0xffffff8109e5b670 : 0xffffff7f9a73b93e
    0xffffff8109e5b730 : 0xffffff7f9a767028
    0xffffff8109e5b7b0 : 0xffffff7f9a74e460
    0xffffff8109e5b810 : 0xffffff7f9a74ed41
    0xffffff8109e5b860 : 0xffffff7f9a74f1f3
    0xffffff8109e5b8d0 : 0xffffff7f9a74fa53
    0xffffff8109e5b910 : 0xffffff7f9a71aedf
    0xffffff8109e5ba90 : 0xffffff7f9a74bf8f
    0xffffff8109e5bb50 : 0xffffff7f9a719978
    0xffffff8109e5bba0 : 0xffffff801946f789
    0xffffff8109e5bbc0 : 0xffffff8019470d30
    0xffffff8109e5bc20 : 0xffffff801946e74f
    0xffffff8109e5bd70 : 0xffffff8019098c21
    0xffffff8109e5be80 : 0xffffff8019020b4d
    0xffffff8109e5beb0 : 0xffffff8019010448
    0xffffff8109e5bf00 : 0xffffff801901961b
    0xffffff8109e5bf70 : 0xffffff80190a6546
    0xffffff8109e5bfb0 : 0xffffff80190cf473
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.5)[49FEF732-D7A3-327B-A7AA-6AC5A6E3DCFF]@0 xffffff7f9b26d000->0xffffff7f9b27ffff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f9b268000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f99675000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f9b254000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f995f3000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f996fb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f996b8000
             com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f997 0f000->0xffffff7f999b1fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f99675000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f996fb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f996b8000
             com.apple.GeForce(8.1.6)[7C67749B-3B6B-38A9-8203-01A139C21895]@0xffffff7f9a7070 00->0xffffff7f9a7d4fff
                dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f997 0f000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f996fb000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f99675000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f996b8000
             com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f999bd000->0xffffff7f99c90fff
                dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f997 0f000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f99675000
    BSD process name corresponding to current thread: WebProcess
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x0000000018e00000
    Kernel text base: 0xffffff8019000000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 1093782821772
    last loaded kext at 268244671084: com.apple.filesystems.msdosfs          1.8.1 (addr 0xffffff7f99cb6000, size 65536)
    loaded kexts:
    com.nvidia.CUDA          1.1.0
    com.apple.filesystems.msdosfs          1.8.1
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f4
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.13.12
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleHDAHardwareConfigDriver          2.4.7fc4
    com.apple.driver.AppleHDA          2.4.7fc4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleMikeyDriver          2.4.7fc4
    com.apple.iokit.IOBluetoothUSBDFU          4.1.7f4
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.1.7f4
    com.apple.driver.AppleLPC          1.6.3
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleIntelHDGraphics          8.1.6
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.6
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.GeForce          8.1.6
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleSMBusPCI          1.0.11d1
    com.apple.filesystems.autofs          3.0
    com.apple.nvidia.NVDAStartup          8.1.6
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBTCKeyEventDriver          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleUSBCardReader          3.3.1
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.driver.AppleUSBHub          635.4.0
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBUHCI          621.4.0
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.iokit.AppleBCM5701Ethernet          3.6.2b4
    com.apple.driver.AppleUSBEHCI          621.4.6
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          214.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          214.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.4.7fc4
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.7f4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f4
    com.apple.nvidia.nv50hal          8.1.6
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleHDAController          2.4.7fc4
    com.apple.iokit.IOHDAFamily          2.4.7fc4
    com.apple.driver.IOPlatformPluginFamily          5.4.1d13
    com.apple.NVDAResman          8.1.6
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.6
    com.apple.iokit.IOUSBMassStorageClass          3.5.2
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.iokit.IO80211Family          530.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          635.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.8 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 13 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5055GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 4
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    You have the MacBookPro6,2, the Edsel of Macs. It may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider, to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Note that the replacement program only applies within three years of purchase. If you wait beyond that date, Apple may refuse the service. In that case, you'll be quoted a price of about $300 (in the U.S.) for a depot repair. The model was discontinued in February 2011, so the replacement program will be ending quite soon.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Sometimes the replacement part is also defective, so be prepared for that possibility.
    If it's too late for your unit to be repaired under the program, and you don't want to pay for a new logic board, you may be able to stop the panics by disabling automatic graphics switching.
    *An SSD doesn't need to be zeroed.

  • VERY URGENT HELP WITH THIS REPORT

    interactive Report for displaying vendor information based on the
    selection made the corresponding Vendor Bank Details
    are listed such that the line selected in the basic list was visible
    along with the secondary list.
    I'M UNABLE TO IMPLEMENT THIS PART HOW TO DO IT " such that the line selected in the basic list was visible
    along with the secondary list."

    hi,
    do u want interctive report in classical report?

  • Need help with this report

    •report(Stock Ledger by Product Code/Stock Group) that lists stock quantities by product  group.
    what are the tables to retrieve data plz any kind of help will be rewarded

    Hi,
    I doubt you have tried ALL tables but nevermind...
    If you want to learn ABAP on an IDES, start off with stuff you can figure out yourself.  Get to grips with the basic syntax, have a look at the example ABAP programs on the system (transaction ABAPDOCU) and just start playing around.
    Diving straight into a specific report is probably not the best start, especially if you have to immediately come on here to ask for help.
    Also, look into buying books about ABAP, like Teach yourself in 21 days or similar.
    Gareth.

  • Please help with this report!!!!!!!!!!!!!!!!

    Can anybody tell me why my logic 9 keeps quiting unexpetedly by checking my report. cant get nobody to answer back on my other discussion
    Process:         Logic Pro [2669]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      Logic Pro
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [108]
    Date/Time:       2012-12-07 11:56:32.873 -0900
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000003ffdff0
    Crashed Thread:  24
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0xffff0f2c __memcpy + 1932
    1   com.apple.logic.pro                     0x0003e97d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 9725
    2   com.apple.logic.pro                     0x00297d06 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 2472326
    3   com.apple.logic.pro                     0x005d2714 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5858196
    4   com.apple.logic.pro                     0x005adccd std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5708109
    5   com.apple.logic.pro                     0x0029908e std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 2477326
    6   com.apple.logic.pro                     0x001cd0c7 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1641799
    7   com.apple.logic.pro                     0x00616967 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6137319
    8   com.apple.logic.pro                     0x00613735 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6124469
    9   com.apple.Foundation                    0x95ff9484 __NSFireTimer + 141
    10  com.apple.CoreFoundation                0x91d7aa3b __CFRunLoopRun + 8059
    11  com.apple.CoreFoundation                0x91d783c4 CFRunLoopRunSpecific + 452
    12  com.apple.CoreFoundation                0x91d781f1 CFRunLoopRunInMode + 97
    13  com.apple.HIToolbox                     0x98bdbe04 RunCurrentEventLoopInMode + 392
    14  com.apple.HIToolbox                     0x98bdbbb9 ReceiveNextEventCommon + 354
    15  com.apple.HIToolbox                     0x98bdba3e BlockUntilNextEventMatchingListInMode + 81
    16  com.apple.AppKit                        0x90bbb595 _DPSNextEvent + 847
    17  com.apple.AppKit                        0x90bbadd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    18  com.apple.AppKit                        0x90b7d1f3 -[NSApplication run] + 821
    19  com.apple.prokit                        0x00fc93f6 NSProApplicationMain + 326
    20  com.apple.logic.pro                     0x0002bad5 DummyConnection::DummyConnection() + 193
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x93d10382 kevent + 10
    1   libSystem.B.dylib                       0x93d10a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x93d0ff59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x93d0fcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x93d0f781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x93d0f5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x93d0f412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x93d0f9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x93d0f5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                       0x93ce9afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x93cea267 mach_msg + 68
    2   com.apple.CoreFoundation                0x91d792df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x91d783c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x91d781f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x96004224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x95fcb4c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x95fcb474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    9   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 4:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x93d08ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x91db8c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    3   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a48838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a48901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    6   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a48838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a48901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    6   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x93ce9b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x93d176e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x93d465a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x990493ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x9904c3dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x99049cda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x99049571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x99049488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    9   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02afef7c MD::CallProcessThread1(void*) + 108
    4   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    5   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02afecfc MD::CallProcessThread2(void*) + 124
    4   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    5   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02afcbac MD::CallProcessThread15(void*) + 124
    4   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    5   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02b1c3a9 MDFileIOThread_IsBusy + 3593
    4   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    5   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x93ce9afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x93cea267 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x0138f0c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI           0x013ad97a MIDIProcess::RunMIDIInThread() + 150
    4   com.apple.audio.midi.CoreMIDI           0x013902d9 XThread::RunHelper(void*) + 17
    5   com.apple.audio.midi.CoreMIDI           0x0138fca6 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    7   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x93ce9b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x93d176e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x93d465a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x99e69b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x99e698ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x99e8db8b TimerThread + 97
    6   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    7   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x93d08ac6 select$DARWIN_EXTSN + 10
    1   com.apple.logic.pro                     0x0096fc07 void UnitTest::CheckEqual<ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment>(UnitTest::TestResults&, ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment, UnitTest::TestDetails const&) + 375367
    2   com.apple.logic.pro                     0x005b1d84 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5724676
    3   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    4   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d439c5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                       0x93d43903 usleep$UNIX2003 + 61
    3   libEuCon2.dylib                         0x4e14828b HSL::CCollectionThread::Run() + 27
    4   libEuCon2.dylib                         0x4e14a0ef HSL::CThread::StartRoutine(void*) + 17
    5   libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    6   libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   libEuCon2.dylib                         0x4e17f78f ACE_SCOPE::ACE_OS::cond_timedwait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, ACE_SCOPE::ACE_Time_Value*) + 77
    4   libEuCon2.dylib                         0x4e167a75 ACE_SCOPE::ACE_Condition_Thread_Mutex::wait(ACE_SCOPE::ACE_Time_Value const*) + 31
    5   libEuCon2.dylib                         0x4e197ca0 ACE_SCOPE::ACE_Token::shared_acquire(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_Token::ACE_Token_Op_Type) + 410
    6   libEuCon2.dylib                         0x4e197f36 ACE_SCOPE::ACE_Token::acquire_read(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*) + 46
    7   libEuCon2.dylib                         0x4e198673 ACE_SCOPE::ACE_TP_Token_Guard::acquire_read_token(ACE_SCOPE::ACE_Time_Value*) + 99
    8   libEuCon2.dylib                         0x4e199062 ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 62
    9   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    10  libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    11  libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    12  libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    13  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    14  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    15  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    16  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    17  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   libEuCon2.dylib                         0x4e17f78f ACE_SCOPE::ACE_OS::cond_timedwait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, ACE_SCOPE::ACE_Time_Value*) + 77
    4   libEuCon2.dylib                         0x4e167a75 ACE_SCOPE::ACE_Condition_Thread_Mutex::wait(ACE_SCOPE::ACE_Time_Value const*) + 31
    5   libEuCon2.dylib                         0x4e197ca0 ACE_SCOPE::ACE_Token::shared_acquire(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_Token::ACE_Token_Op_Type) + 410
    6   libEuCon2.dylib                         0x4e197f36 ACE_SCOPE::ACE_Token::acquire_read(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*) + 46
    7   libEuCon2.dylib                         0x4e198673 ACE_SCOPE::ACE_TP_Token_Guard::acquire_read_token(ACE_SCOPE::ACE_Time_Value*) + 99
    8   libEuCon2.dylib                         0x4e199062 ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 62
    9   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    10  libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    11  libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    12  libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    13  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    14  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    15  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    16  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    17  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   libEuCon2.dylib                         0x4e17f78f ACE_SCOPE::ACE_OS::cond_timedwait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, ACE_SCOPE::ACE_Time_Value*) + 77
    4   libEuCon2.dylib                         0x4e167a75 ACE_SCOPE::ACE_Condition_Thread_Mutex::wait(ACE_SCOPE::ACE_Time_Value const*) + 31
    5   libEuCon2.dylib                         0x4e197ca0 ACE_SCOPE::ACE_Token::shared_acquire(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_Token::ACE_Token_Op_Type) + 410
    6   libEuCon2.dylib                         0x4e197f36 ACE_SCOPE::ACE_Token::acquire_read(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*) + 46
    7   libEuCon2.dylib                         0x4e198673 ACE_SCOPE::ACE_TP_Token_Guard::acquire_read_token(ACE_SCOPE::ACE_Time_Value*) + 99
    8   libEuCon2.dylib                         0x4e199062 ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 62
    9   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    10  libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    11  libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    12  libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    13  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    14  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    15  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    16  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    17  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   libEuCon2.dylib                         0x4e17f78f ACE_SCOPE::ACE_OS::cond_timedwait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, ACE_SCOPE::ACE_Time_Value*) + 77
    4   libEuCon2.dylib                         0x4e167a75 ACE_SCOPE::ACE_Condition_Thread_Mutex::wait(ACE_SCOPE::ACE_Time_Value const*) + 31
    5   libEuCon2.dylib                         0x4e197ca0 ACE_SCOPE::ACE_Token::shared_acquire(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_Token::ACE_Token_Op_Type) + 410
    6   libEuCon2.dylib                         0x4e197f36 ACE_SCOPE::ACE_Token::acquire_read(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*) + 46
    7   libEuCon2.dylib                         0x4e198673 ACE_SCOPE::ACE_TP_Token_Guard::acquire_read_token(ACE_SCOPE::ACE_Time_Value*) + 99
    8   libEuCon2.dylib                         0x4e199062 ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 62
    9   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    10  libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    11  libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    12  libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    13  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    14  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    15  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    16  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    17  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   libEuCon2.dylib                         0x4e17f78f ACE_SCOPE::ACE_OS::cond_timedwait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, ACE_SCOPE::ACE_Time_Value*) + 77
    4   libEuCon2.dylib                         0x4e167a75 ACE_SCOPE::ACE_Condition_Thread_Mutex::wait(ACE_SCOPE::ACE_Time_Value const*) + 31
    5   libEuCon2.dylib                         0x4e197ca0 ACE_SCOPE::ACE_Token::shared_acquire(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_Token::ACE_Token_Op_Type) + 410
    6   libEuCon2.dylib                         0x4e197f36 ACE_SCOPE::ACE_Token::acquire_read(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*) + 46
    7   libEuCon2.dylib                         0x4e198673 ACE_SCOPE::ACE_TP_Token_Guard::acquire_read_token(ACE_SCOPE::ACE_Time_Value*) + 99
    8   libEuCon2.dylib                         0x4e199062 ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 62
    9   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    10  libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    11  libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    12  libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    13  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    14  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    15  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    16  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    17  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   libEuCon2.dylib                         0x4e17f78f ACE_SCOPE::ACE_OS::cond_timedwait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, ACE_SCOPE::ACE_Time_Value*) + 77
    4   libEuCon2.dylib                         0x4e167a75 ACE_SCOPE::ACE_Condition_Thread_Mutex::wait(ACE_SCOPE::ACE_Time_Value const*) + 31
    5   libEuCon2.dylib                         0x4e197ca0 ACE_SCOPE::ACE_Token::shared_acquire(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_Token::ACE_Token_Op_Type) + 410
    6   libEuCon2.dylib                         0x4e197f36 ACE_SCOPE::ACE_Token::acquire_read(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*) + 46
    7   libEuCon2.dylib                         0x4e198673 ACE_SCOPE::ACE_TP_Token_Guard::acquire_read_token(ACE_SCOPE::ACE_Time_Value*) + 99
    8   libEuCon2.dylib                         0x4e199062 ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 62
    9   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    10  libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    11  libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    12  libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    13  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    14  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    15  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    16  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    17  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x93d17aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93d1775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93d193f8 pthread_cond_wait$UNIX2003 + 73
    3   libEuCon2.dylib                         0x4e17f78f ACE_SCOPE::ACE_OS::cond_timedwait(_opaque_pthread_cond_t*, _opaque_pthread_mutex_t*, ACE_SCOPE::ACE_Time_Value*) + 77
    4   libEuCon2.dylib                         0x4e167a75 ACE_SCOPE::ACE_Condition_Thread_Mutex::wait(ACE_SCOPE::ACE_Time_Value const*) + 31
    5   libEuCon2.dylib                         0x4e197ca0 ACE_SCOPE::ACE_Token::shared_acquire(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_Token::ACE_Token_Op_Type) + 410
    6   libEuCon2.dylib                         0x4e197f36 ACE_SCOPE::ACE_Token::acquire_read(void (*)(void*), void*, ACE_SCOPE::ACE_Time_Value*) + 46
    7   libEuCon2.dylib                         0x4e198673 ACE_SCOPE::ACE_TP_Token_Guard::acquire_read_token(ACE_SCOPE::ACE_Time_Value*) + 99
    8   libEuCon2.dylib                         0x4e199062 ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 62
    9   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    10  libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    11  libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    12  libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    13  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    14  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    15  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    16  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    17  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                       0x93d08ac6 select$DARWIN_EXTSN + 10
    1   libEuCon2.dylib                         0x4e17f106 ACE_SCOPE::ACE_OS::select(int, fd_set*, fd_set*, fd_set*, ACE_SCOPE::ACE_Time_Value const*) + 68
    2   libEuCon2.dylib                         0x4e2fcc5a ACE_SCOPE::ACE_Select_Reactor_T<ACE_SCOPE::ACE_Reactor_Token_T<ACE_SCOPE::ACE_T oken> >::wait_for_multiple_events(ACE_SCOPE::ACE_Select_Reactor_Handle_Set&, ACE_SCOPE::ACE_Time_Value*) + 324
    3   libEuCon2.dylib                         0x4e198803 ACE_SCOPE::ACE_TP_Reactor::get_event_for_dispatching(ACE_SCOPE::ACE_Time_Value* ) + 183
    4   libEuCon2.dylib                         0x4e198fb5 ACE_SCOPE::ACE_TP_Reactor::dispatch_i(ACE_SCOPE::ACE_Time_Value*, ACE_SCOPE::ACE_TP_Token_Guard&) + 29
    5   libEuCon2.dylib                         0x4e19909d ACE_SCOPE::ACE_TP_Reactor::handle_events(ACE_SCOPE::ACE_Time_Value*) + 121
    6   libEuCon2.dylib                         0x4e1d3c60 TAO_SCOPE::TAO_ORB_Core::run(ACE_SCOPE::ACE_Time_Value*, int) + 416
    7   libEuCon2.dylib                         0x4e1d0be0 TAO_SCOPE::CORBA::ORB::run(ACE_SCOPE::ACE_Time_Value*) + 44
    8   libEuCon2.dylib                         0x4e1d0c09 TAO_SCOPE::CORBA::ORB::run() + 25
    9   libEuCon2.dylib                         0x4e096c8d CEuConORB::Run() + 329
    10  libEuCon2.dylib                         0x4e097f31 CEuConORBThread::EntryPoint() + 457
    11  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    12  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    13  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    14  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 24 Crashed:
    0   libSystem.B.dylib                       0x93d570ee __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x93d56fd2 nanosleep$NOCANCEL$UNIX2003 + 166
    2   libSystem.B.dylib                       0x93dd1fb2 usleep$NOCANCEL$UNIX2003 + 61
    3   libSystem.B.dylib                       0x93df3685 __abort + 136
    4   libSystem.B.dylib                       0x93df36f5 abort_report_np + 0
    5   com.apple.logic.pro                     0x003e6729 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3842985
    6   libSystem.B.dylib                       0x93d5005b _sigtramp + 43
    7   ???                                     0x0000000b 0 + 11
    8   libEuCon2.dylib                         0x4e1c048c TAO_SCOPE::TAO::Invocation_Adapter::invoke_remote_i(TAO_SCOPE::TAO_Stub*, TAO_SCOPE::TAO_Operation_Details&, TAO_SCOPE::TAO_Pseudo_Var_T<TAO_SCOPE::CORBA::Object>&, ACE_SCOPE::ACE_Time_Value*&) + 48
    9   libEuCon2.dylib                         0x4e1c080d TAO_SCOPE::TAO::Invocation_Adapter::invoke_i(TAO_SCOPE::TAO_Stub*, TAO_SCOPE::TAO_Operation_Details&) + 163
    10  libEuCon2.dylib                         0x4e1c0abf TAO_SCOPE::TAO::Invocation_Adapter::invoke(TAO_SCOPE::TAO::Exception_Data*, unsigned long) + 97
    11  libEuCon2.dylib                         0x4e00c528 EuConCRB::EuBatchMulticaster::BroadcastChanges(int, EuConCRB::tDataOctetStream const&) + 220
    12  libEuCon2.dylib                         0x4e09cd0b EuBatchIOMulticast::SendDataStream(unsigned int, EuConCRB::tDataOctetStream const&) + 147
    13  libEuCon2.dylib                         0x4e09d985 EuPeriodicUpdateThread::SendProcessorBatchData() + 105
    14  libEuCon2.dylib                         0x4e09dd60 EuPeriodicUpdateThread::PeriodicUpdateMethod() + 180
    15  libEuCon2.dylib                         0x4e09e62e EuPeriodicUpdateThread::EntryPoint() + 190
    16  libEuCon2.dylib                         0x4e1916ef ACE_SCOPE::ACE_Task_Base::svc_run(void*) + 65
    17  libEuCon2.dylib                         0x4e191fb7 ACE_SCOPE::ACE_Thread_Adapter::invoke() + 95
    18  libSystem.B.dylib                       0x93d17259 _pthread_start + 345
    19  libSystem.B.dylib                       0x93d170de thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                       0x93d0f412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x93d0f9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x93d0f5c6 start_wqthread + 30
    Thread 24 crashed with X86 Thread State (32-bit):
      eax: 0x0000003c  ebx: 0x93d56f39  ecx: 0xb028858c  edx: 0x93d570ee
      edi: 0x459e9860  esi: 0xb02885e8  ebp: 0xb02885c8  esp: 0xb028858c
       ss: 0x0000001f  efl: 0x00000247  eip: 0x93d570ee   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x03ffdff0
    Binary Images:
        0x1000 -   0xbeafff  com.apple.logic.pro 9.1.8 (1700.67) <94981650-518B-2288-F07D-F28F27103100> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe84000 -   0xea2fef  com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeb1000 -   0xee4fe7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <E8A99468-7726-CCFE-8D26-DDBC9D5E1AC3> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xef1000 -   0xf22ff3  com.apple.musicaudiodataservices 1.1 (251.4) <0265F317-13AB-6CF1-A171-7D5853442E75> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf31000 -   0xf8fff3  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <0075F2D0-7A48-A362-2D49-4FECA5E9DF8E> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfa5000 -  0x11ddfff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12e5000 -  0x135ffff  com.apple.music.apps.MACore 9.1.8 (477.58) <8025A098-49AF-AFF3-4B8E-4C30C06123FF> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x137f000 -  0x13cbffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13f0000 -  0x1446ff7  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <448DD823-9EF9-8F88-FFF1-2C7EBD9647B1> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x145d000 -  0x1877feb  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <9EBA5689-ECE1-E66B-6A0D-DE3F9C7867E4> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a95000 -  0x1b77feb  com.apple.music.apps.OMF 9.1.8 (109.7) <65E724BA-01DB-68E1-9661-E9B96DA76300> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b8b000 -  0x21dcfe3  com.apple.music.apps.MADSP 9.1.8 (588.98) <93C7306D-07A8-DED0-C59B-B333A475E6DB> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28c1000 -  0x28e2ff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <DB122163-0F15-2E23-16AE-3DCAE41D1870> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28eb000 -  0x2964ff7  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <AFAED0FE-A81D-8204-3633-B6DEF6455B8A> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2978000 -  0x2999ff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <B23133C5-90D1-4B22-7421-375F9374C9EA> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x299e000 -  0x29a3ff7  com.apple.music.apps.MAResources 9.1.8 (212.66) <EEB8FFEB-61A3-69E2-D6AC-AB5C7B8337E2> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29a7000 -  0x29d0fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29e1000 -  0x29f1ff7  com.apple.AERegistration 1.2 (401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a05000 -  0x2a11ff3  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <1B77FF0E-ABF2-ABC4-5D7E-638D56A24C69> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a19000 -  0x2acffff  com.apple.music.apps.MAFiles 9.1.8 (144.87) <23D65681-872A-1E6B-91E5-B93643CCB375> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2ae8000 -  0x2b60fe3  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <6ADDBB03-0D41-4473-AFC3-385EFA574B87> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bc7000 -  0x2bd2ff7  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <FEEF1A62-CB87-8FD2-F724-0BB660D63146> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bd6000 -  0x2beaff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <FAFE71CD-0FC8-69F4-6FEE-9E873D9F5DD5> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2bfd000 -  0x2cb2fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x2cf8000 -  0x2d94ffc  com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x3d00000 -  0x3d35ff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <FF2667E3-621B-071C-77D4-9C3125A9298C> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x3da2000 -  0x3dafff7  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <665A3308-8C50-655A-ED3F-49AF695A408E> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x3de5000 -  0x3decff3 +com.neyrinck.plugin.V-Control 1.5.1.5 (1515) <DF15BD8D-ECDF-62ED-AC87-6E3DE627B3DF> /Library/Application Support/MIDI Device Plug-ins/V-Control.bundle/Contents/MacOS/V-Control
    0x3df3000 -  0x3dfaff3  com.apple.music.apps.midi.device.plugin.Logic-Control 9.1.8 (198.73) <04DC4A0E-2FE2-BE3F-5F5C-686FB712D8F5> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
    0x3ff2000 -  0x3ff6ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x4218a000 - 0x42190ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x421b8000 - 0x421c0ff7  com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x421e6000 - 0x421e8ff3  com.apple.music.apps.anvil.resources 9.1.8 (280.4) <AFA90574-C724-880F-9C99-52E064F5B3E8> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x421f2000 - 0x421f4ff3  com.apple.music.apps.common.resources 9.1.8 (280.4) <579C1A3C-3636-9A69-185E-819DC01E1083> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x421f8000 - 0x421faff3  com.apple.music.apps.ebp.resources 9.1.8 (280.4) <95A85BC0-7D35-B965-2026-1A44E96DC653> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x424be000 - 0x424e2fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x424fb000 - 0x424fdff3  com.apple.music.apps.efx.resources 9.1.8 (280.4) <FB5BBFF8-DF5E-32BC-4F4C-C5A2DA3FB1A6> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x42501000 - 0x42503ff3  com.apple.music.apps.egt.resources 9.1.8 (280.4) <11B09E42-9FC4-A372-8738-057CAB888671> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x42507000 - 0x42509ff3  com.apple.music.apps.emx.resources 9.1.8 (280.4) <A3C65CFE-2BBF-DB8C-D4C8-5950284E44CF> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x4250d000 - 0x4250fff3  com.apple.music.apps.es1.resources 9.1.8 (280.4) <DB1CD8D6-2C8F-32EE-266B-A28C00B2DFB7> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x42513000 - 0x42515ff3  com.apple.music.apps.es2.resources 9.1.8 (280.4) <7E91D13E-87CF-0B50-14A7-9B7A1E3D345C> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x42519000 - 0x4251bff3  com.apple.music.apps.esp.resources 9.1.8 (280.4) <C5284B25-3250-2201-D4EE-523FE37B9E6B> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x42fb9000 - 0x43132ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x43164000 - 0x43577fef  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <257CAA1D-6573-2932-E344-E96F6C9CDA84> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x43992000 - 0x43994ff3  com.apple.music.apps.evb3.resources 9.1.8 (280.4) <068F656F-6CA6-37E9-96F5-1F8E10546A43> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x43998000 - 0x4399aff3  com.apple.music.apps.evd6.resources 9.1.8 (280.4) <B15F044D-60BB-FD36-6A49-685C7DCA7FB4> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x4399e000 - 0x439a0ff3  com.apple.music.apps.evoc.resources 9.1.8 (280.4) <E361301A-56EF-FF6C-67E5-AC3D9F15E190> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x439a4000 - 0x439a6ff3  com.apple.music.apps.evp88.resources 9.1.8 (280.4) <6E1152B4-E9F3-3F6E-7246-A10456888210> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x439aa000 - 0x439acff3  com.apple.music.apps.exs24.resources 9.1.8 (280.4) <DC363BF8-D15A-6049-F148-7804EADF7539> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x439b0000 - 0x439b2ff3  com.apple.music.apps.guitaramp.resources 9.1.8 (280.4) <27F67C33-C9BA-D9CE-DC89-A33A7F674F2C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x439b6000 - 0x439b8ff3  com.apple.music.apps.guitarcontrols.resources 9.1.8 (280.4) <DAD1836E-F4DD-EB95-2F48-A8AF8552D087> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x439bc000 - 0x439beff3  com.apple.music.apps.mutapdel.resources 9.1.8 (280.4) <555A65F0-E35D-0F5F-76EC-7C83D06C68AB> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x439c2000 - 0x439c4ff3  com.apple.music.apps.pedalboard.resources 9.1.8 (280.4) <9923C7F7-E681-EE64-06CE-A0C8AABF7E65> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x439c8000 - 0x439caff3  com.apple.music.apps.revolver.resources 9.1.8 (280.4) <9AE36A7E-5D8F-681C-ABFD-4BCFE5048FF4> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x439ce000 - 0x439d0ff3  com.apple.music.apps.sphere.resources 9.1.8 (280.4) <FF758F38-414E-5BFD-97CF-778DF8F52EAE> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x44fe6000 - 0x44ff1ff7  com.apple.DVCPROHDVideoOutput 1.3.2 (1.3.2) <738D36A7-8DBD-3BD7-CD35-4B171397782C> /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0x49cac000 - 0x49d11fe0  com.apple.DVCPROHDMuxer 1.3.2 (1.3.2) <C1AA540F-CEAD-77BA-1CD6-0D467B4F76FF> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x49d2b000 - 0x49d6cfe3  com.apple.audio.SoundManager.Components 3.9.4 (3.9.4) <AD66647C-03A9-EBAF-6FFC-E5A631F4D6BE> /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x49d73000 - 0x49daffe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1791) <50D03C98-3DF6-BF7E-6440-7E3AB5A78CBE> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x49dbb000 - 0x49e78fe2  com.apple.DesktopVideoOut 1.2.7 (1.2.7) <54E0C747-1169-FB4A-2CB4-9EA9BD5398F8> /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x49e97000 - 0x49ea1ff7  com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x4dff3000 - 0x4e4d2ff7 +libEuCon2.dylib ??? (???) <2258C4A2-C0AC-86F6-4009-CE9ED2C2917B> /usr/local/lib/libEuCon2.dylib
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x9005dfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x901a2000 - 0x90408ff7  com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90409000 - 0x90417fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x90418000 - 0x90430ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9072b000 - 0x9076eff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9079b000 - 0x907d8ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x907d9000 - 0x907dcff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90924000 - 0x90aa6fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <50A70082-F800-93D8-1A7C-C95AAB1F352C> /usr/lib/libicucore.A.dylib
    0x90aa7000 - 0x90b72fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90b73000 - 0x91456ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91457000 - 0x9165efeb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9165f000 - 0x9178dfe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9178e000 - 0x91797ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9179f000 - 0x917b3ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x917c7000 - 0x917d4ff7  com.apple.AppleFSCompression 24.4 (1.0) <6D696284-020B-7F5C-226D-B820F0E981D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x91800000 - 0x91803ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91810000 - 0x91892ffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91893000 - 0x91941ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91942000 - 0x91969ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91aa6000 - 0x91aeaff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91cc8000 - 0x91cf9ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91cfa000 - 0x91d3bff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91d3c000 - 0x91eb7fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91fce000 - 0x92038fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92039000 - 0x9205afe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9205b000 - 0x92198fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92199000 - 0x921c9ff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x921ca000 - 0x921d1ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x921d2000 - 0x921e2ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x921e3000 - 0x921eeff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x921f7000 - 0x9222afff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9222b000 - 0x92247fe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x922b8000 - 0x922befff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x922bf000 - 0x92378fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x92379000 - 0x9237dff7  libGIF.dylib ??? (???) <9E51F8ED-83B4-DA41-1E2F-CFA726936A30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9237e000 - 0x9239efe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9239f000 - 0x923d9ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x9242f000 - 0x924acff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x924bf000 - 0x92551fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x92555000 - 0x92588ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92589000 - 0x9258bff7  libRadiance.dylib ??? (???) <5F803B4A-B294-BA94-FB68-E8756EE41B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x925b3000 - 0x925eefe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x925ef000 - 0x9268cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92716000 - 0x9274ffe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343&gt

    Hey have you ever found a solution to your problem ? i am having the same issue.....
    best

  • Help with this report

    Hi to all, sorry by this post, but I don´t know how to multiply the colums 'Cantidad' * Price List 1 by example, and put the result in other column.
    Anyone could help me please ?
    Many thanks.
    SELECT 'Factura',T0.ItemCode, T0.Dscription, SUM(Quantity) as Cantidad, Sum(LineTotal) as Total,
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Price List 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Price List 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Price List 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Price List 4',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=6) 'Price List 6'
    FROM INV1 T0 INNER JOIN OINV T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]'))
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    UNION
    SELECT 'Abono',T0.ItemCode, T0.Dscription, SUM(Quantity * -1 ) as Cantidad, Sum(LineTotal * - 1) as Total, 
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Price List 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Price List 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Price List 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Price List 4',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=6) 'Price List 6'
    FROM RIN1 T0 INNER JOIN ORiN T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]') )
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription

    Now, works. This is the final sentence:
    SELECT 'Factura',T0.ItemCode, T0.Dscription, SUM(Quantity) as Cantidad, Sum(LineTotal) as Total,
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Tarifa 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Tarifa 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Tarifa 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Tarifa 4',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=5) 'Tarifa 5',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=6) 'Tarifa 6',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=6)*SUM(Quantity) 'Total Multiplicado'
    FROM INV1 T0 INNER JOIN OINV T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]'))
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    UNION
    SELECT 'Abono',T0.ItemCode, T0.Dscription, SUM(Quantity * -1 ) as Cantidad, Sum(LineTotal * - 1) as Total,
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Tarifa 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Tarifa 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Tarifa 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Tarifa 4',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=5) 'Tarifa 5',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=6) 'Tarifa 6',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=6)*SUM(Quantity) 'Total Multiplicado'
    FROM RIN1 T0 INNER JOIN ORiN T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]') )
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    Now, I want to choose what price list I want to multiply to get the Total Multiply, anyone knows how I make it ?
    Regards.

  • Help on this report(sudden crash OS)

    just got mother board fixed, is this something related?
    Interval Since Last Panic Report:  3799 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    8F022219-65FE-40A6-8BFB-E74CF7C8AC7C
    Wed May 15 20:25:03 2013
    panic(cpu 0 caller 0x001AB0FE): Kernel trap at 0x0019562f, type 14=page fault, registers:
    CR0: 0x8001003b, CR2: 0x00000000, CR3: 0x00d15000, CR4: 0x00000660
    EAX: 0x00000000, EBX: 0x9200e000, ECX: 0x00000000, EDX: 0x00000020
    CR2: 0x00000000, EBP: 0x349cf8d8, ESI: 0x00001000, EDI: 0x0478c910
    EFL: 0x00010046, EIP: 0x0019562f, CS:  0x00000008, DS:  0x03c90010
    Error code: 0x00000000
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x349cf6c8 : 0x12b4c6 (0x45f91c 0x349cf6fc 0x13355c 0x0)
    0x349cf718 : 0x1ab0fe (0x469a98 0x19562f 0xe 0x469248)
    0x349cf7f8 : 0x1a1713 (0x349cf810 0x3c93d40 0x349cf8d8 0x19562f)
    0x349cf808 : 0x19562f (0xe 0x48 0x700010 0x10)
    0x349cf8d8 : 0x1956a2 (0x172d6 0x60 0x2 0x19b2d7c)
    0x349cf8f8 : 0x144b7d (0x172d6 0x0 0x349cf9a8 0x23c7b000)
    0x349cf928 : 0x144eed (0x23c7b000 0x1 0x660b 0x0)
    0x349cf9d8 : 0x408b49 (0x23ae4000 0x23c7b000 0x349cfd04 0x409f7d)
    0x349cfd28 : 0x1b31bc (0x4f9120 0x349cfd48 0x349cfd78 0x2e64e922)
    0x349cfd48 : 0x1b40e7 (0x349cfd98 0x2 0x0 0x349cfd78)
    0x349cfd78 : 0x1b3308 (0x1b318b 0x349cfd98 0x349cfda8 0x3f36a7)
    0x349cfda8 : 0x2e457ffe (0x2e457e50 0x3 0x246 0x131e9a)
    0x349cfdc8 : 0x2e44c44c (0x3b8fa00 0x2 0x0 0x3ca7580)
    0x349cfde8 : 0x43a8a9 (0x3ca7300 0x53d848 0xffffffff 0x0)
    0x349cfe38 : 0x44cb7f (0x3b8fa00 0x4a78d4 0x349cfe68 0x4453400)
    0x349cfe88 : 0x41acd1 (0x3b97000 0x4 0x1d 0x2)
              Backtrace continues...
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.driver.AppleACPIPlatform(1.2.5)@0x2e44b000->0x2e488fff
                dependency: com.apple.iokit.IOPCIFamily(2.6)@0x2e3e5000
                dependency: com.apple.iokit.IOACPIFamily(1.2.0)@0x2e3fc000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9L31a
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    System model name: MacBookPro4,1 (Mac-F42C89C8)
    System uptime in nanoseconds: 3853706931860
    unloaded kexts:
    com.apple.driver.AppleHDAPlatformDriver          1.7.1a2 - last unloaded 127996623569
    loaded kexts:
    com.apple.filesystems.msdosfs          1.5.5 - last loaded 46519142237
    com.apple.driver.AppleHWSensor          1.9d0
    com.apple.driver.AppleHDAPlatformDriver          1.7.1a2
    com.apple.driver.InternalModemSupport          2.4.0
    com.apple.driver.AppleUpstreamUserClient          2.7.5
    com.apple.filesystems.autofs          2.0.2
    com.apple.iokit.IOBluetoothSerialManager          2.1.9f10
    com.apple.driver.AppleHDAHardwareConfigDriver          1.7.1a2
    com.apple.driver.DiskImages          199
    com.apple.driver.AppleGraphicsControl          2.8.15
    com.apple.GeForce          5.4.8
    com.apple.driver.AppleHDA          1.7.1a2
    com.apple.Dont_Steal_Mac_OS_X          6.0.3
    com.apple.driver.AppleBacklight          1.6.0
    com.apple.nvidia.nv50hal          5.4.8
    com.apple.iokit.AppleYukon2          3.1.13b2
    com.apple.driver.AirPortBrcm43xx          367.91.22
    com.apple.driver.AppleHDAController          1.7.1a2
    com.apple.driver.SMCMotionSensor          2.1.1d2
    com.apple.driver.AudioIPCDriver          1.0.6
    com.apple.driver.AppleIRController          113
    com.apple.kext.AppleSMCLMU          1.4.5d1
    com.apple.driver.ACPI_SMC_PlatformPlugin          3.4.0a17
    com.apple.driver.AppleLPC          1.3.1
    com.apple.driver.AppleTyMCEDriver          1.0.0d28
    com.apple.iokit.IOFireWireIP          1.7.7
    com.apple.driver.iTunesPhoneDriver          1.0
    com.apple.driver.AppleUSBTCButtons          1.7.4f1
    com.apple.driver.AppleUSBMultitouch          189.35
    com.apple.driver.AppleUSBTCKeyEventDriver          1.7.4f1
    com.apple.driver.AppleUSBTCKeyboard          1.7.4f1
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.1.9f10
    com.apple.driver.AppleUSBMergeNub          3.5.2
    com.apple.iokit.IOUSBMassStorageClass          2.0.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.1.1
    com.apple.iokit.SCSITaskUserClient          2.1.1
    com.apple.driver.XsanFilter          2.7.91
    com.apple.iokit.IOATAPIProtocolTransport          1.5.3
    com.apple.driver.AppleFWOHCI          3.9.7
    com.apple.iokit.IOAHCIBlockStorage          1.2.2
    com.apple.driver.AppleFileSystemDriver          1.1.0
    com.apple.driver.AppleAHCIPort          1.7.0
    com.apple.driver.AppleUSBHub          3.4.9
    com.apple.iokit.IOUSBUserClient          3.5.2
    com.apple.driver.AppleIntelPIIXATA          2.0.1
    com.apple.driver.AppleUSBEHCI          3.4.6
    com.apple.driver.AppleEFINVRAM          1.2.0
    com.apple.driver.AppleUSBUHCI          3.5.2
    com.apple.driver.AppleRTC          1.2.3
    com.apple.driver.AppleHPET          1.4
    com.apple.driver.AppleSmartBatteryManager          158.10.5
    com.apple.driver.AppleACPIPCI          1.2.5
    com.apple.driver.AppleACPIButtons          1.2.5
    com.apple.driver.AppleSMBIOS          1.4
    com.apple.driver.AppleACPIEC          1.2.5
    com.apple.driver.AppleAPIC          1.4
    com.apple.security.seatbelt          107.12
    com.apple.nke.applicationfirewall          1.8.77
    com.apple.security.TMSafetyNet          3
    com.apple.driver.AppleIntelCPUPowerManagement          76.2.0
    com.apple.BootCache          30.4
    com.apple.iokit.IOSerialFamily          9.4
    com.apple.driver.DspFuncLib          1.7.1a2
    com.apple.NVDAResman          5.4.8
    com.apple.iokit.IONDRVSupport          1.7.3
    com.apple.iokit.IO80211Family          216.1
    com.apple.iokit.IOHDAFamily          1.7.1a2
    com.apple.iokit.IOAudioFamily          1.6.9fc5
    com.apple.kext.OSvKernDSPLib          1.1
    com.apple.iokit.IOGraphicsFamily          1.7.3
    com.apple.driver.IOPlatformPluginFamily          3.4.0a17
    com.apple.driver.AppleSMC          2.3.1d1
    com.apple.iokit.IONetworkingFamily          1.6.1
    com.apple.driver.AppleUSBBluetoothHCIController          2.1.9f10
    com.apple.iokit.IOBluetoothFamily          2.1.9f10
    com.apple.iokit.IOUSBHIDDriver          3.4.6
    com.apple.driver.AppleUSBComposite          3.2.0
    com.apple.iokit.IOBDStorageFamily          1.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.1.1
    com.apple.iokit.IODVDStorageFamily          1.5
    com.apple.iokit.IOCDStorageFamily          1.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.1.1
    com.apple.iokit.IOFireWireFamily          3.4.9
    com.apple.iokit.IOStorageFamily          1.5.6
    com.apple.iokit.IOAHCIFamily          1.5.0
    com.apple.iokit.IOATAFamily          2.0.1
    com.apple.iokit.IOUSBFamily          3.5.2
    com.apple.driver.AppleEFIRuntime          1.2.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.iokit.IOHIDFamily          1.5.5
    com.apple.driver.AppleACPIPlatform          1.2.5
    com.apple.iokit.IOACPIFamily          1.2.0
    com.apple.iokit.IOPCIFamily          2.6

    This doesn't see right to me.
    FORM process_data.
    loop at it_vbrk.
    read table it_konv
    WITH KEY knumv = it_vbrk-knumv.
    if sy-subrc = 0.
    <b>move konv-kwert to it_output-kwert.
    move vbrk-vbeln to it_output-vbeln.</b>
    append it_output.
    clear it_output.
    endif.
    endloop.
    ENDFORM. "process_data
    Shouldn't it be.....
    FORM process_data.
    loop at it_vbrk.
    read table it_konv
    WITH KEY knumv = it_vbrk-knumv.
    if sy-subrc = 0.
    <b>move it_konv-kwert to it_output-kwert.
    move it_vbrk-vbeln to it_output-vbeln.</b>
    append it_output.
    clear it_output.
    endif.
    endloop.
    ENDFORM. "process_data
    Regards,
    Rich Heilman

  • Help me on this report

    Hi Guys,
    can u please help on this report.
    The out put which is showing is incorrect for the following report.
    Just check with the matnr as 100-100
    & plant as 1000.
    The out put is showing wrong.
    Just check that in se16 for the same matnr & plant
    the stock details is 2 records but it is showing only one record.
    send me reply immedeately.
    Iam sending the code pls check this and give me the reply.
    *& Report  ZSTOCKDETAILS4                                              *
    REPORT  zstockdetails4         NO STANDARD PAGE HEADING
                                   LINE-SIZE 100
                                   LINE-COUNT 60(3).
                  tables declaration                 *
    TABLES : mara,        "general material data
             marc,        "plant data for material
             mard,        "storage location data for material
             makt.        "material description
                 internal table declaration             *
    TYPES : BEGIN OF ty_mara,
            matnr TYPE matnr,
            END OF ty_mara.
    TYPES : BEGIN OF ty_marc,
            matnr TYPE matnr,
            werks TYPE werks,
            END OF ty_marc.
    TYPES : BEGIN OF ty_mard,
            matnr TYPE matnr,
            werks TYPE werks,
            lgort TYPE lgort_d,
            labst TYPE labst,
            END OF ty_mard.
    TYPES : BEGIN OF ty_makt,
            matnr TYPE matnr,
            maktx TYPE maktx,
            END OF ty_makt.
    DATA:t_mara TYPE TABLE OF ty_mara WITH HEADER LINE,
         t_marc TYPE TABLE OF ty_marc WITH HEADER LINE,
         t_mard TYPE TABLE OF ty_mard WITH HEADER LINE,
         t_makt TYPE TABLE OF ty_makt WITH HEADER LINE.
                    final internal table                    *
    TYPES : BEGIN OF ty_out,
            werks TYPE werks,
            lgort TYPE lgort_d,
            matnr TYPE matnr,
            maktx TYPE maktx,
            labst TYPE labst,
            END OF ty_out.
    DATA:t_out TYPE TABLE OF ty_out WITH HEADER LINE.
                  selection screen                                 *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS : s_matnr FOR mara-matnr OBLIGATORY,
                     s_werks FOR marc-werks.
    SELECTION-SCREEN END OF BLOCK b1.
                 start-of-selection                                 *
    START-OF-SELECTION.
      SELECT matnr
                  FROM mara
                    INTO TABLE t_mara
                     WHERE matnr IN s_matnr.
      SELECT matnr werks
                  FROM marc
                  INTO TABLE t_marc
                  FOR ALL ENTRIES IN t_mara
                  WHERE matnr = t_mara-matnr
                  AND werks IN s_werks.
      SELECT matnr  lgort labst
                FROM mard
                INTO CORRESPONDING FIELDS OF TABLE t_mard
                FOR ALL ENTRIES IN t_mara
                WHERE matnr = t_mara-matnr.
      SORT : t_mard BY matnr.
      SORT : t_marc BY matnr.
      LOOP AT t_mara.
        READ TABLE t_marc WITH KEY matnr = t_mara-matnr BINARY SEARCH.
        READ TABLE t_mard WITH KEY matnr = t_mara-matnr BINARY SEARCH.
        MOVE : t_mara-matnr TO t_out-matnr.
        MOVE : t_marc-werks TO t_out-werks.
        MOVE : t_mard-lgort TO t_out-lgort.
        MOVE : t_mard-labst TO t_out-labst.
        SELECT SINGLE matnr maktx
                      FROM makt
                      INTO CORRESPONDING FIELDS OF makt
                      WHERE matnr = t_mara-matnr.
        MOVE-CORRESPONDING makt TO t_out.
        APPEND t_out.
        CLEAR t_out.
      ENDLOOP.
      SORT t_out BY werks lgort matnr.
      DATA: tot_lgort TYPE labst,
      tot_werks TYPE labst,
      tot TYPE labst.
      LOOP AT t_out.
        AT NEW werks.
         NEW-PAGE.
        ENDAT.
        NEW-LINE.
        WRITE :/ sy-vline,  t_out-werks,
                15 t_out-lgort,
                35 t_out-matnr,
                60 t_out-maktx,
                70 t_out-labst, 100 sy-vline.
        tot_lgort = tot_lgort + t_out-labst.
        tot_werks = tot_werks + t_out-labst.
        tot = tot + t_out-labst.
        AT END OF lgort.
          ULINE.
          WRITE : / 'THE SUBTOTAL IS', 70 tot_lgort.
          CLEAR tot_lgort.
        ENDAT.
        AT END OF werks.
          ULINE.
          WRITE : / 'THE SUBTOTAL IS', 70 tot_werks.
          CLEAR tot_werks.
        ENDAT.
        AT LAST.
          WRITE : / 'THE GRAND TAOTAL IS', 70 tot.
        ENDAT.
    ENDLOOP.
                           TOP-OF-PAGE                            *
    TOP-OF-PAGE.
      ULINE.
      WRITE : sy-vline, 'PLANT',
              15 'SLOCATION',
              32 'MATERIAL',
              56 'DESCRIPT',
              80 'STOCK', 100 sy-vline.
      ULINE.

    Hi,
      i've made some modifications. try this:
    *& Report ZSTOCKDETAILS4 *
    REPORT zstockdetails4 NO STANDARD PAGE HEADING
    LINE-SIZE 100
    LINE-COUNT 60(3).
    * tables declaration *
    TABLES : mara, "general material data
    marc, "plant data for material
    mard, "storage location data for material
    makt. "material description
    * internal table declaration *
    TYPES : BEGIN OF ty_mara,
    matnr TYPE matnr,
    END OF ty_mara.
    TYPES : BEGIN OF ty_marc,
    matnr TYPE matnr,
    werks TYPE werks_d,
    END OF ty_marc.
    TYPES : BEGIN OF ty_mard,
    matnr TYPE matnr,
    werks TYPE werks_d,
    lgort TYPE lgort_d,
    labst TYPE labst,
    END OF ty_mard.
    TYPES : BEGIN OF ty_makt,
    matnr TYPE matnr,
    maktx TYPE maktx,
    END OF ty_makt.
    DATA:t_mara TYPE TABLE OF ty_mara WITH HEADER LINE,
    t_marc TYPE TABLE OF ty_marc WITH HEADER LINE,
    t_mard TYPE TABLE OF ty_mard WITH HEADER LINE,
    t_makt TYPE TABLE OF ty_makt WITH HEADER LINE.
    * final internal table *
    TYPES : BEGIN OF ty_out,
    werks TYPE werks,
    lgort TYPE lgort_d,
    matnr TYPE matnr,
    maktx TYPE maktx,
    labst TYPE labst,
    END OF ty_out.
    DATA:t_out TYPE TABLE OF ty_out WITH HEADER LINE.
    * selection screen *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS : s_matnr FOR mara-matnr OBLIGATORY,
    s_werks FOR marc-werks.
    SELECTION-SCREEN END OF BLOCK b1.
    * start-of-selection *
    START-OF-SELECTION.
    SELECT matnr
    FROM mara
    INTO TABLE t_mara
    WHERE matnr IN s_matnr.
    if sy-subrc <> 0.
      message ...........
      exit.
    endif.
    SELECT matnr werks
    FROM marc
    INTO TABLE t_marc
    FOR ALL ENTRIES IN t_mara
    WHERE matnr = t_mara-matnr
    AND werks IN s_werks.
    if sy-subrc <> 0.
      message ...........
      exit.
    endif.
    SELECT matnr werks lgort labst
    FROM mard
    INTO CORRESPONDING FIELDS OF TABLE t_mard
    FOR ALL ENTRIES IN t_marc
    WHERE matnr = t_marc-matnr
      AND werks = t_marc-werks.
    SORT : t_mard BY matnr.
    SORT : t_marc BY matnr.
    LOOP AT t_mara.
      loop at t_marc where matnr = t_mara-matnr.
        loop at t_mard where matnr = t_marc-matnr
                         and werks = t_marc-werks.
    MOVE : t_mara-matnr TO t_out-matnr.
    MOVE : t_marc-werks TO t_out-werks.
    MOVE : t_mard-lgort TO t_out-lgort.
    MOVE : t_mard-labst TO t_out-labst.
    SELECT SINGLE matnr maktx
    FROM makt
    INTO CORRESPONDING FIELDS OF makt
    WHERE matnr = t_mara-matnr.
    MOVE-CORRESPONDING makt TO t_out.
    APPEND t_out.
    CLEAR t_out.
        endloop. "MARD
      endloop.   "MARC
    ENDLOOP.     "MARA
    SORT t_out BY werks lgort matnr.
    DATA: tot_lgort TYPE labst,
    tot_werks TYPE labst,
    tot TYPE labst.
    LOOP AT t_out.
    AT NEW werks.
    * NEW-PAGE.
    ENDAT.
    NEW-LINE.
    WRITE :/ sy-vline, t_out-werks,
    15 t_out-lgort,
    35 t_out-matnr,
    60 t_out-maktx,
    70 t_out-labst, 100 sy-vline.
    tot_lgort = tot_lgort + t_out-labst.
    tot_werks = tot_werks + t_out-labst.
    tot = tot + t_out-labst.
    AT END OF lgort.
    ULINE.
    WRITE : / 'THE SUBTOTAL IS', 70 tot_lgort.
    CLEAR tot_lgort.
    ENDAT.
    AT END OF werks.
    ULINE.
    WRITE : / 'THE SUBTOTAL IS', 70 tot_werks.
    CLEAR tot_werks.
    ENDAT.
    AT LAST.
    WRITE : / 'THE GRAND TAOTAL IS', 70 tot.
    ENDAT.
    ENDLOOP.
    * TOP-OF-PAGE *
    TOP-OF-PAGE.
    ULINE.
    WRITE : sy-vline, 'PLANT',
    15 'SLOCATION',
    32 'MATERIAL',
    56 'DESCRIPT',
    80 'STOCK', 100 sy-vline.
    ULINE.

  • Need to develop this report plezzzz help

    the requirement says
    When a user submits an ID they have to choose who sold the product from the sold by field.This has to be chosen correctly otherwise there will be issues in sales and commission process.I need to develop a report to detect immediately when an Id is created which seems to be suspect.A suspect ID is one in which a salesperson was chosen on a customer who is not assigned to that sales person territory
    for example: if danny is in Kathy territory is assigned to a customer in Texas which is Larry territory.
    any suggestions will be helpful for me...
    Edited by: user13001889 on Jun 6, 2011 4:43 PM
    Edited by: user13001889 on Jun 6, 2011 4:44 PM

    You ask for help, yet all you give is conceptual data. How do you expect help on writing the report?
    Q) What defines "territory"? Is it a flag? Zip code? City?
    Here is an answer based on a lot of assumptions:
    I would have to assume that territory is defined by something like city, state, or zip code. If so, you could start with this:
    When a customer submits an ID, along with who he/she selects as a salesperson -- I assume this is a drop down box to eliminate multiple entries of the same person due to variations in spelling -- thep person's address, city, state and zip are included as well. Let's assume that territory is defined by zip code. With the salesperson's name and the zip of the customer captured, you have the basis for comparison.
    Based on the table of all your salespeople and their territory (zip code in my assumption), you can create a report that contains a concatenated field of salesperson||zip code. This will produce a report with all possible combinations of salesperson and territory. This report will be your sub-query.
    Now you have your main query based on the customer activity table and you create a concatenated field of salesperson (chosen-by-customer)||zip code (of the customer). You will put a filter on this concatenated column and have it based on the results of another request (your sub-query) with the operand "not equal to/not in."
    If any record in the main query does not match an entry from the sub-query, that record will display. It will be a report that contains customers who chose a sales person who doesn't have that territory.
    That's how you build your report.

  • In this report i have marked one line..if this width 30,i need to multiply by a number 0.3 and if the width =30,it multiplies by 0.37...how to use this logic here..??? anyone can help??

    In this report i have marked one line..if this width < 30,i need to multiply by a number 0.3 and if the width >=30,it multiplies by 0.37...how to use this logic here..??? anyone can help??
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @SCCode nvarchar(30)
    select @FromDate = min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]'
    select @ToDate = max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]'
    --Rcpt from PRDN (Condition checked for Return component exclusion also)
    SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,
    T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'FG Item Code',
    T3.ItemName as 'FG Item Name',
    T2.PlannedQty as 'FG Planned Qty',
    T2.U_OD as 'OD',
    T2.U_ID as 'ID',
    T2.U_OD/25.4 as 'Inches',
    (T2.U_OD-T2.U_ID)/2 as 'Width',
    0 as 'FG Pending Qty',
    0 as 'FG Receipt Qty',
    '' as 'Issue Item Code',
    '' as 'Issue Item Name',
    Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',
    0 as 'Issue Item - Return Quantity',
    '' as 'Return Doc No',
    SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',
    SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'
    from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntry
    INNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCode
    LEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode not in (a.ItemCode)
    LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode INNER JOIN OIGN d on c.DocEntry = d.DocEntry
    WHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'
    GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,T2.PlannedQty,T2.U_OD,T2.U_ID, T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2
    UNION ALL
    SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,
    T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'Item Code',
    T3.ItemName as 'Item Name',
    T2.PlannedQty as 'Planned Qty',
    T2.U_OD as 'OD',
    T2.U_ID as 'ID',
    T2.U_OD/25.4 as 'Inches',
    (T2.U_OD-T2.U_ID)/2 as 'Width',
    (Select (T2.PlannedQty - (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum))) as 'Pending Qty',
    (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum) as 'Receipt Qty',
    a.ItemCode as 'Issued Item Code',
    a.Dscription as 'Issued Item Name',
    Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',
    (Select (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode))) as 'Issue Item - Return Quantity',
    (ISNULL((Select (Select a2.DocNum from OIGN a2 where a2.DocEntry = a1.DocEntry) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode)),'')) as 'Return Doc No',
    SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',
    SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'
    from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntry
    INNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCode
    LEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode in (a.ItemCode)
    LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode LEFT JOIN OIGN d on c.DocEntry = d.DocEntry 
    WHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'
    GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,T2.PlannedQty,T2.U_OD,T2.U_ID,T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2,a.ItemCode,a.Dscription    order by T2.DocNum desc

    Hi,
    Try this:
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @SCCode nvarchar(30)
    select @FromDate = min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]'
    select @ToDate = max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]'
    --Rcpt from PRDN (Condition checked for Return component exclusion also)
    SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,
    T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'FG Item Code',T3.ItemName as 'FG Item Name',T2.PlannedQty as 'FG Planned Qty',T2.U_OD as 'OD',T2.U_ID as 'ID',T2.U_OD/25.4 as 'Inches',(T2.U_OD-T2.U_ID)/2 as 'Width',case when ((T2.U_OD-T2.U_ID)/2) <30 then ((T2.U_OD-T2.U_ID)/2) *0.3 end, 0 as 'FG Pending Qty',0 as 'FG Receipt Qty','' as 'Issue Item Code','' as 'Issue Item Name',Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',0 as 'Issue Item - Return Quantity','' as 'Return Doc No',SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntryINNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCodeLEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode not in (a.ItemCode)LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode INNER JOIN OIGN d on c.DocEntry = d.DocEntryWHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,T2.PlannedQty,T2.U_OD,T2.U_ID, T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2UNION ALL SELECT T2.U_STKNO as 'PRN No', T2.PostDate as Date,T2.DocNum AS 'WorkOrderNo',
    b.DocNum as 'Issue Doc No',
    ISNULL(d.DocNum,'') as 'Receipt Doc No',
    b.U_IssPSCName as 'SubContractor Name',
    T2.ItemCode as 'Item Code',T3.ItemName as 'Item Name',T2.PlannedQty as 'Planned Qty',T2.U_OD as 'OD',T2.U_ID as 'ID',T2.U_OD/25.4 as 'Inches',(T2.U_OD-T2.U_ID)/2 as 'Width',case when ((T2.U_OD-T2.U_ID)/2) >=30 then ((T2.U_OD-T2.U_ID)/2) *0.37 end, (Select (T2.PlannedQty - (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum))) as 'Pending Qty',(Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum and a1.ItemCode in (b1.itemcode) where b1.DocNum = t2.DocNum) as 'Receipt Qty',
    a.ItemCode as 'Issued Item Code',
    a.Dscription as 'Issued Item Name',
    Sum(ISNULL(a.Quantity,0)) as 'Total Issue Quantity',
    (Select (Select ISNULL(sum(a1.Quantity),0) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry
    where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode))) as 'Issue Item - Return Quantity',
    (ISNULL((Select (Select a2.DocNum from OIGN a2 where a2.DocEntry = a1.DocEntry) from IGN1 a1 inner join OWOR b1 on a1.BaseRef = b1.DocNum inner join WOR1 b2 on b1.DocEntry = b2.DocEntry where b1.DocNum = t2.DocNum and a1.ItemCode in (b2.itemcode)),'')) as 'Return Doc No',
    SUM(ISNULL(a.U_IssPTotWeight,0)) as 'Total Issue Weight',
    SUM(ISNULL(c.U_Quantity,0)) as 'Total Receipt Weight'
    from OWOR T2 inner join WOR1 T4 on T2.DocEntry = T4.DocEntry
    INNER JOIN OITM T1 ON T1.ItemCode = T4.ItemCode inner join OITM T3 on T3.ItemCode = T2.ItemCode
    LEFT join IGE1 a on T2.DocNum = a.BaseRef Inner JOIN OIGE b on a.DocEntry = b.DocEntry and T4.ItemCode in (a.ItemCode)
    LEFT JOIN IGN1 c ON c.BaseRef = T2.DocNum and T2.ItemCode = c.ItemCode LEFT JOIN OIGN d on c.DocEntry = d.DocEntry
    WHERE b.Series in('101','20') and T2.PostDate >= @FromDate and T2.PostDate <= @ToDate and b.U_IssPSCName = '[%2]'
    GROUP BY T2.U_STKNO, T2.PostDate, T2.DocNum, b.DocNum, d.DocNum, b.U_IssPSCName,T2.ItemCode,T3.ItemName,
    T2.PlannedQty,T2.U_OD,
    T2.U_ID,T2.U_OD/25.4,(T2.U_OD-T2.U_ID)/2,a.ItemCode,a.Dscription  
    order by T2.DocNum desc
    Thanks & Regards,
    Nagarajan

  • My firefox crashes every 2-5 minutes for unknown reasons. its getting really annoying and i really need help with this :( i cant seem to get an ID on the crash report, its giving a different reason everytime.. i think. please help !

    i have many many crash reports and they all seem different. yet, whenever i search the support pages for help on those crash IDs it shows 0 results. alot of people are having the same problems, and i hope we ALL can get help on this. its getting really frustrating and annoying :(

    i doubt it is from skype. i havent used skype in 2 days or so.
    here are the crash reports IDs from JUST today..
    bp-8c7fab55-79c8-4db1-9527-4ba072111013 10/13/2011 4:51 PM
    bp-db6bf6c4-cf34-4eae-a742-105842111013 10/13/2011 4:51 PM
    bp-f28611cf-3ff0-4658-a843-05da92111013 10/13/2011 4:32 PM
    bp-03fa57ef-580d-4f1d-8fb4-52ac72111013 10/13/2011 4:21 PM
    bp-d07e0d82-df2a-41c8-a19b-bb99e2111013 10/13/2011 4:19 PM
    bp-fafbd8cf-6769-4b76-8153-c17242111013 10/13/2011 4:06 PM
    bp-ee9694ab-585b-4963-8b94-e46432111013 10/13/2011 3:47 PM
    bp-773242e1-a87d-4e19-90cb-ce4e52111013 10/13/2011 3:37 PM
    bp-6bae0db3-895b-4239-8a71-758ce2111013 10/13/2011 3:36 PM
    bp-6dfc1b57-5a8f-4244-baa1-8d0642111013 10/13/2011 3:36 PM
    bp-9a6589cd-0e2f-4299-b517-a6c862111013 10/13/2011 3:31 PM

  • Urgent Help Needed in this Report

    hi frd. help me in this report.
    parameter : plant,material no,company code,storage location.
    display: material no, material desc, UOM, ROL, warehouse, open po, open po qty, open pr no, open pr qty.
    Kindly Give me tips for doing this report.
    thank u
    Pari Vendhan.R

    Hi Pari,
    Go to se38 --Abap editior..
    chose the includes u like to be as
    Include  <>_top.
    Include  <>_subr.
    then follow the events....
    Initialization.
    ( as per requirement).
    At selection-screen.
    Perform fetch _data.
    Perform fefilloutput.
    any other logic to be followed for u r report.
    end-of-selection.
    Perform output.
    In include top.
    Put the declarartion part and the selection-screen block.
    SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : pa_werks LIKE table name-werks
                            pa_material no like tablename-field.     
    SELECTION-SCREEN END OF BLOCK b1.
    like wise u need to put the logic for the requirement
    Thanks
    Mohinder Singh Chauhan

Maybe you are looking for