MD4C order report for shipping notification doesnu2019t display any component

Dear guru ,
I have created a shipping notification for a subcontract order.
If I run order report (using MD04 or MD4C)  for shipping notification doesnu2019t display any component.
I have seen note 498217.
Any workaround does exist ? What do you suggest ?
I need to have a confirmation date from vendor but also to have a pegging of the requirements.
Thanks in advance.

Any suggestions to this? I have the same problem
rgds
GAR

Similar Messages

  • How to Created custom report for Ship not Billed (SD/FI)?

    Hi all,
    I am anticipating  to write some abap reports..Here is one of them..
    Anyone can help  me with writing a Report , how to do 'Custom Report for shipped not Billed(SD/FI)' ..But since I am new to Abap , if you wish to reply, please use a little more detail and simple explanation, step by step so I can understand what is the idea, how it can be acheived...what kind of report should be used , techniques, tables etc...:)
    Appreciate your help!
    Regards,
    Boby

    Hi Boby,
    You need to create custom transaction to achive these results.
    you will have selection-screen ,it would be :
    Date : Here date would be mandatory  - Ranges Option
    Customer  - Optional field - Ranges
    Order #  Sales Order (Optional) Ranges
    Invoice #  - Invoice # (Optional) Ranges
    You will get the data based on ur selection-screen criteria ...
    First you will have customer order details from diffrent table
    VBAK,
    VBAP,
    LIKP
    LIPS
    VBRK,
    VBRP
    KNA1,
    VBFA Tables ( See the my sample program )
    Output would be :
    Customer #   Custome Name    Order #   Delivery #   Invoice #   Netpr, Netquantity ,
    Check the condition  whether invoice table has VBRK-RFBSK  = ''.
    See the my sample program : This is sales report by monthly..
    REPORT ZFDSALES_REPORT no standard page heading
                           message-id zwave.
    Data Declaration Part
    TYPE-POOLS
    type-pools : slis.
    Tables
    tables : VBAK,
             VBAP.
    Internal table for VBAK Table
    data : begin of i_vbak occurs 0,
           vbeln like vbak-vbeln,
           bstnk like vbak-bstnk,
           vdatu like vbak-vdatu,
           end of i_vbak.
    Internal table for VBAP and MATNR
    data : begin of i_vbap occurs 0,
           vbeln like vbap-vbeln,
           matnr like vbap-matnr,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr like vbap-netpr,
           maktx like makt-maktx,
           end of i_vbap.
    Internal tables
    data : begin of i_sales occurs 0,
           vdatu like vbak-vdatu,
           bstnk like vbak-bstnk,
           matnr like vbap-matnr,
           maktx like makt-maktx,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr  like vbap-netpr,
           end of i_sales.
    Variable for ALV
    data : v_repid like sy-repid,
           gt_fieldcat    type slis_t_fieldcat_alv.
    Selection-screen
    selection-screen : begin of block blk with frame title text-001.
    select-options : s_vbeln for vbak-vbeln,
                     s_erdat for vbak-erdat,
                     s_ernam for vbak-ernam,
                     s_vdatu for vbak-vdatu obligatory,
                     s_BSTNK for vbak-BSTNK,
                     s_KUNNR for vbak-kunnr,
                     s_matnr for vbap-matnr,
                     s_KDMAT for vbap-KDMAT.
    selection-screen : end of block blk.
    Initilization
    initialization.
      v_repid = sy-repid.
    S T A R T  -  O F  -  S E L E C T I O N ****************
    start-of-selection.
    Get the data from VBAK and VBAP Tables
      perform get_vbak_vbap.
    E N D  -  O F  -  S E L E C T I O N *****************
    end-of-selection.
    Display the data
      perform dispolay_data.
    *&      Form  get_vbak_vbap
          Get the data from VBAK and VBAP Table
    FORM get_vbak_vbap.
    Get the data from VBAK Table
      select vbeln bstnk vdatu from vbak into table i_vbak
                         where vbeln in s_vbeln
                         and   bstnk in s_bstnk
                         and   vdatu in s_vdatu
                         and   kunnr in s_kunnr
                         and   erdat in s_erdat
                         and   ernam in s_ernam.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
    Get the data from VBAP Table
      select avbeln amatnr akdmat akwmeng a~netpr
             b~maktx into table i_vbap
             from vbap as a inner join makt as b on bmatnr = amatnr
             for all entries in i_vbak
             where a~vbeln in s_vbeln
             and   a~kdmat in s_kdmat
             and   a~abgru = space
             and   a~matnr in s_matnr
             and   a~matnr ne '000000000000009999'
             and   a~matnr ne '000000000000004444'
             and   a~matnr ne '000000000000008888'
             and   a~matnr ne '000000000000001111'
             and   a~werks = '1000'
             and   b~spras = 'E'
             and   a~vbeln = i_vbak-vbeln.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
      sort i_vbak by vbeln.
      sort i_vbap by vbeln matnr.
      loop at i_vbap.
        read table i_vbak with key vbeln = i_vbap-vbeln
                                binary search.
        if sy-subrc eq 0.
          i_sales-bstnk = i_vbak-bstnk.
          i_sales-vdatu = i_vbak-vdatu.
          i_sales-matnr = i_vbap-matnr.
          i_sales-kdmat = i_vbap-kdmat.
          i_sales-maktx = i_vbap-maktx.
          i_sales-netpr = i_vbap-netpr.
          i_sales-kwmeng = i_vbap-kwmeng.
          append i_sales.
        else.
          continue.
        endif.
        clear : i_sales,
                i_vbap,
                i_vbak.
      endloop.
      sort i_sales by vdatu bstnk matnr.
      refresh : i_vbap,
                i_vbak.
    ENDFORM.                    " get_vbak_vbap
    *&      Form  dispolay_data
          Display the data
    FORM dispolay_data.
    Fill the Fiedlcat
      PERFORM fieldcat_init  using gt_fieldcat[].
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                =
      I_BUFFER_ACTIVE                   = ' '
          I_CALLBACK_PROGRAM                = v_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
          IT_FIELDCAT                       = gt_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_ADD_FIELDCAT                   =
      IT_HYPERLINK                      =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
      IT_EXCEPT_QINFO                   =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = i_sales
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    ENDFORM.                    " dispolay_data
    *&      Form  fieldcat_init
          text
         -->P_GT_FIELDCAT[]  text
    FORM fieldcat_init USING  e01_lt_fieldcat type slis_t_fieldcat_alv.
      DATA: LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    Delivery Date
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'VDATU'.
      LS_FIELDCAT-OUTPUTLEN    = 12.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Delivery Date'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Purchase Order #Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'BSTNK'.
      LS_FIELDCAT-OUTPUTLEN    = 25.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Purchase Order #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-REF_FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-REF_TABNAME    = 'MARA'.
      LS_FIELDCAT-FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material #'.
      ls_fieldcat-seltext_M = 'Material #'.
      ls_fieldcat-seltext_S = 'Material #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'MAKTX'.
      LS_FIELDCAT-OUTPUTLEN    = 40.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material Description'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Customer Material #
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KDMAT'.
      LS_FIELDCAT-OUTPUTLEN    = 35.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Customer material no.'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Quantity
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KWMENG'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Quantity'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Net Price
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'NETPR'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Net Price'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    ENDFORM.                    " fieldcat_init
    Reward Points if it is helpful
    Thanks
    Seshu

  • IDOC monitor for shipping notification- EMASN

    Hello experts,
    Anybody know that is IDOC monitor for shipping notification-EMASN. what are the input we have to enter as defualt for this transaction.
    can anybody help, very urgent.

    I did not know about transaction VOFM (MAINTAIN Riquirements & Formulas), tab 'Data transfer' => 'Deliveries' .
    Copy routine '301' to '931' and add thos line at the end:
      likp-ntgew = xkomdlgn-ntgew_hdr.
      likp-btgew = xkomdlgn-brgew_hdr.
      likp-gewei = xkomdlgn-gewei_hdr.
      likp-volum = xkomdlgn-volum_hdr.
      likp-voleh = xkomdlgn-voleh_hdr.
    Then go to VTLA ('Order to delivery copying control'), select your target (for instance 'EL' <= 'DL')  and CtrlShiftF2 (Detail). Change the field Header data from '301' to our new '931'
    Hope this is help someone one day,
    Daniel
    Edited by: Daniel Putzschler on Jan 20, 2011 2:17 PM

  • Error in the explosion of "order report for element" in MD04

    Hi gurus,
    On the report MD04, I try to explode the "order report for element", where you can find the tree of the bom with the mrp results to cover the materials needs, but the following error occurs:
    "Order 000001008418 possibly contains recursive BOM components
    Message no. MF331
    Diagnosis
    The order contains component reservations that could have a higher low-level code than that of the order material.
    To avoid an endless loop the requirement for this component is not included."
    As one of you suggested, I tryed to install the  Snote: 10000698, but the systeme tell me that there are no valid input to manage.
    The error related is the follow:
    "SAP Note does not contain valid correction instructions
    Message no. SCWN002
    Diagnosis
    You tried to implement corrections that are contained in an SAP Note.
    The corrections in this SAP Note are, however, not valid for the release and Support Package level of your system. This means that the error that is described in the SAP Note either did not occur in your system, or it has already been corrected by a Support Package.
    In certain cases the error cannot be corrected by an SAP Note correction.
    System Response
    The system cannot implement the SAP Note.
    Procedure
    Follow the recommendations in the SAP Note text."
    ..now, what can I do?I can find No significative instruction on the note!!
    Please help me: our client is very annoyed by this problem!
    Thanks,
    Valentina

    Dear,
    Error message MF331 'Order & possibly contains recursive BOM components' is generated in the order report.
    If the header BOM material same you are using as a component then BOM become Recursive.
    If you create a recursive BOM, you must decide whether you want to allow recursiveness or delete the component that caused the recursiveness,
    Go to CS02  BOM of that material and check the sets  recursive indicator.
    Also refer the OSS Note 839879. 161742 - Consulting note:
    Regards,
    R.Brahmankar

  • Internal Order Report - For the documnets when the cost ele. was not create

    Hi,
    We created internal orders for tracking capital expenditure relating to assets. At that time, we were not created asset GL's as cost element. Recently we created asset GL's as cost elements (category 90).
    Now we are getting the internal order report after creation of cost element for the transactions done thereafter. We mentioned the internal order number in PO but not in accounting document earlier. Now we are maintaining internal order number in accounting document also.
    So when we run OKBA we are getting CO document but, it is not tracking against internal order (since order number was not mentioned earlier). We executed one MM document in which internal order was mentioned through OKBB but there is no change in the internal order report.
    Is there any possibility to get the internal order report for the transactions done before creation of cost element.
    Please guide me
    Best Regards
    Madhusekhar Gupta G

    Hi,
    Thanks for your quick replies.
    Can we get the report as follows.
    1. Total Po's value for the internal Order (through Table EKKN)                                                      xxx
    Less: Value already posted to Internal order after creation of cost elements (S_alr_87013019)  xxx
    Less: Total Value to be invoiced (Tcode -ME2N)                                                                             xxx
    Net amount to be posted to Internal Order manually                                                                        xxx
    Is it correct?
    Regards
    Madhusekhar Gupta G
    Edited by: gms gupta on Feb 20, 2012 4:33 PM

  • Problem report for mount notification?

    Each time I reboot my computer I get a problem report for mount notification. Can someone direct me on how to fix this?
    Below is the string that comes up.
    Process:         Mount Notification [241]
    Path:            /Library/Application Support/Paragon NTFS for Mac OS X/Mount Notification.app/Contents/MacOS/Mount Notification
    Identifier:      com.yourcompany.Mount-Notification
    Version:         9.5.0 (1)
    Code Type:       X86 (Native)
    Parent Process:  vendorservice [201]
    Date/Time:       2012-09-14 20:32:06.004 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          777923 sec
    Crashes Since Last Report:           197
    Per-App Interval Since Last Report:  418 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      92D5AF58-8D2D-49A2-9C7E-830F95D122A8
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30)'
    *** Call stack at first throw:
              0   CoreFoundation                      0x940526ca __raiseError + 410
              1   libobjc.A.dylib                     0x9302d5a9 objc_exception_throw + 56
              2   CoreFoundation                      0x940523f8 +[NSException raise:format:arguments:] + 136
              3   CoreFoundation                      0x9405236a +[NSException raise:format:] + 58
              4   Foundation                          0x97431f31 -[NSKeyedUnarchiver initForReadingWithData:] + 3722
              5   AppKit                              0x922a211a loadNib + 119
              6   AppKit                              0x922a159c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 228
              7   AppKit                              0x922a14ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
              8   AppKit                              0x922a13f8 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
              9   AppKit                              0x9229e1fd NSApplicationMain + 434
              10  Mount Notification                  0x00001bea _start + 216
              11  Mount Notification                  0x00001b11 start + 41
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x9409da37 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x9302d5a9 objc_exception_throw + 56
    2   com.apple.CoreFoundation                0x940523f8 +[NSException raise:format:arguments:] + 136
    3   com.apple.CoreFoundation                0x9405236a +[NSException raise:format:] + 58
    4   com.apple.Foundation                    0x97431f31 -[NSKeyedUnarchiver initForReadingWithData:] + 3722
    5   com.apple.AppKit                        0x922a211a loadNib + 119
    6   com.apple.AppKit                        0x922a159c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 228
    7   com.apple.AppKit                        0x922a14ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    8   com.apple.AppKit                        0x922a13f8 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    9   com.apple.AppKit                        0x9229e1fd NSApplicationMain + 434
    10  ...rcompany.Mount-Notification          0x00001bea _start + 216
    11  ...rcompany.Mount-Notification          0x00001b11 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x98989382 kevent + 10
    1   libSystem.B.dylib                       0x98989a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x98988f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x98988cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x98988781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x989885c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x98988412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x989889a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x989885c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x9302d585  ecx: 0xa0aed540  edx: 0x0000003b
      edi: 0xa0325ab0  esi: 0x02804010  ebp: 0xbffff4d8  esp: 0xbffff4c0
       ss: 0x0000001f  efl: 0x00000286  eip: 0x9409da37   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x000ee000
    Binary Images:
        0x1000 -     0x2ff3 +com.yourcompany.Mount-Notification 9.5.0 (1) <0F8175C9-BB2C-A871-3211-E967E973BCC0> /Library/Application Support/Paragon NTFS for Mac OS X/Mount Notification.app/Contents/MacOS/Mount Notification
        0x7000 -     0x7ff7  libgenkit.dylib ??? (???) <FDF812F2-B186-EB5F-037D-A8A90ED5771A> /usr/lib/libgenkit.dylib
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    0x90095000 - 0x903b5ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x903b6000 - 0x903fafe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x903fc000 - 0x9047cfeb  com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9047d000 - 0x90492fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90493000 - 0x904fdfe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x90b53000 - 0x90c5ffe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90c60000 - 0x90c6dff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90c6e000 - 0x90dabfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90dac000 - 0x90dacff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90dad000 - 0x90dfcfe7  libTIFF.dylib ??? (???) <D0EB31DC-40E6-9A97-64D3-9867605DC3DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90e09000 - 0x90e4fff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x90ea1000 - 0x90ea1ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91c1b000 - 0x91c1dff7  libRadiance.dylib ??? (???) <98EC06D5-1A02-EDEF-BF9D-2C986761AD54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c1e000 - 0x92034ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92035000 - 0x9229bff7  com.apple.security 6.1.2 (55002) <E999CCEF-B769-4355-3E68-6003FCF6FE2B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9229c000 - 0x92b7fff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92b80000 - 0x92b8afe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92b8b000 - 0x92b95ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92b96000 - 0x92be6ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92be7000 - 0x92bf7ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x92bf8000 - 0x92cf8fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x92cf9000 - 0x92d00ff3  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
    0x92d04000 - 0x92d08ff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92d09000 - 0x92d8bffb  SecurityFoundation ??? (???) <A8D248DE-8670-970D-39E3-A9738CFDBEE1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92e08000 - 0x92ee2fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92ee3000 - 0x93011fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93023000 - 0x930d0fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x937f4000 - 0x93838ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93865000 - 0x9391dfeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x93f7e000 - 0x940f9fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x940fa000 - 0x9415bfe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9415c000 - 0x9419eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9419f000 - 0x941d9ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x941da000 - 0x941daff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x941db000 - 0x9421eff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94238000 - 0x9423bff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94420000 - 0x94425ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94cd4000 - 0x94d4efff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x94d4f000 - 0x950baff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x951e7000 - 0x951f8ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x951f9000 - 0x9521afe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x952d2000 - 0x952f2fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x95436000 - 0x95458fef  com.apple.DirectoryService.Framework 3.6 (621.14) <A24C9308-4EB3-456D-1691-43DDB6F9A79F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95459000 - 0x9545cfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x95567000 - 0x95602fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95623000 - 0x956d1ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x957b1000 - 0x95820ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9599e000 - 0x95a4afe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95ac9000 - 0x95b94fef  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
    0x95b9d000 - 0x95d60feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <87750C2B-193F-56A6-AB97-0842A2D02092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95d61000 - 0x95d6dff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x95d6e000 - 0x95e00fe7  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
    0x95e51000 - 0x95eeefe3  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
    0x95eef000 - 0x95f42ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95f43000 - 0x95febffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96055000 - 0x96060ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96069000 - 0x96081ff7  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
    0x96387000 - 0x963e4ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97420000 - 0x97420ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97421000 - 0x97692fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x97693000 - 0x97697ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x97698000 - 0x976e5feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x979ab000 - 0x979b1fff  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
    0x97b96000 - 0x97bbaff7  libJPEG.dylib ??? (???) <5F2343E4-C268-B9AE-1BC3-466F5A614648> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97c27000 - 0x97c27ff7  com.apple.Carbon 150 (152) <2539A94A-34D9-45CB-8F3E-AD53149E0BD5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97c28000 - 0x97c8cffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97d3b000 - 0x97e3dfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x9805f000 - 0x98073ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9836f000 - 0x98378ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x983c9000 - 0x987feff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98962000 - 0x98b09ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x98b29000 - 0x98b45fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98c6c000 - 0x98c94ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x98cc9000 - 0x98ccaff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x98d80000 - 0x98d92ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x98fe2000 - 0x9909efff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9909f000 - 0x99221fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x99299000 - 0x992b8ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x99813000 - 0x99846ff7  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
    0x99851000 - 0x9990afe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9990b000 - 0x99929fe7  libPng.dylib ??? (???) <45185287-25AD-C239-AA58-8FA53DF55B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9992a000 - 0x9993efe7  libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x99a80000 - 0x99b18fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99cac000 - 0x99cacff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x99d27000 - 0x99d58ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x99e82000 - 0x99e83ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99ea6000 - 0x99eaaff7  libGIF.dylib ??? (???) <5D29E5F4-30B9-5A24-55E7-BCBA30499093> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x99eab000 - 0x99eb9ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x99eba000 - 0x99efdff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x99efe000 - 0x99f0cfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x99f0d000 - 0x99f10ffb  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
    0x99f11000 - 0x99f37ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x99f3a000 - 0x99f3aff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99f3b000 - 0x9a25ffef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9a2a4000 - 0x9aa93557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9aa94000 - 0x9ab74fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9abd8000 - 0x9abd8ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9abd9000 - 0x9abdbff7  com.apple.securityhi 4.0 (36638) <E7D83480-77BB-72F9-72F3-AEE198CE589F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9ac70000 - 0x9ac76fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9ac77000 - 0x9acb4ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 6 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 7
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0xfa120000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 3

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the grey Apple icon and a progress bar appear. The boot up is significantly slower than normal.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Permissions Troubleshooting
    Step by Step to Fix Your Mac

  • TS3297 ITunes for IOS does not display any content in the iTunes store

    iTunes for IOS does not display any content in any section (other than Genius tab).
    NB: I am signed in with my Apple ID &amp; have an Internet connection.
    On selecting say the "Music" tab the display briefly say's "Loading ...", but nothing displays, just a white screen.
    I have tried signing out of iTunes &amp; re-setting the iPad, but this does not fix the problem.
    (The App Store is working fine!)

    Status is :540672
    <REQUESTRESULT>
    <RESULT>
    <UID></UID>
    <STATUS>CAPI_STAT_DATA_ICAL</STATUS>
    </RESULT>
    <FAILURE>
    <UID></UID>
    <STATUS>CAPI_STAT_DATA_ICAL</STATUS>
    </FAILURE>
    <PARSE ERROR>
    <MESSAGE>VALUE?TE</MESSAGE>
    <STATUS>CAPI_STAT_DATA_ICAL_PARAMVALUE</STATUS>
    <VTEXT>VALUE?TE:20060830
    END:VEVENT
    END:VCALENDAR
    </VTEXT>
    </PARSE ERROR>
    <PARSE ERROR>
    <MESSAGE>VALUE?TE</MESSAGE>
    <STATUS>CAPI_STAT_DATA_ICAL_PARAMNAME</STATUS>
    <VTEXT>(null)</VTEXT>
    </PARSE ERROR>
    <PARSE ERROR>
    <MESSAGE>VALUE?TE</MESSAGE>
    <STATUS>CAPI_STAT_DATA_ICAL_PARAMNAME</STATUS>
    <VTEXT>(null)</VTEXT>
    </PARSE ERROR>
    </REQUESTRESULT>

  • Tcodes for Sales order confirmation, Adv  shipping notification, del note?

    i wanna  know   where  do  we create  sales  docs  like shipping notification, delivery schedule, invoice or billing document, po confirmation , sales order confirmation etc etc.  which   are  not the  regular    sales  documents like  the sales  order(va01), delivery (vl01n), billing (vf01)  which   have their  regular  Tcodes.  so i wanna   are  there   tcodes  which  can create  the above   documents . i guess not. so  how  do  we create these  and  send  them to  our  customers
    thanks
    n. bhardwaj
    SD

    Hi Neha,
    Just look in table TSTC and TSTCT for the transactions. In these tables you can search based on the description.
    Regards,
    Atish

  • Want to know the sale order report for Delivery bclok at header level

    Dear,
    i would like to know some reports
    1). I would like to know  is ther any  SAP std report  is available for Sale order if Blocked for delivery(VBAK-LIFSK)??
    2). is ther any report for knowing the Sale order  if header/item text  is maintained??
    Pl advice if any std report is available.
    Thanks in advance

    Dear Pradyumna,
    Thanks for your reply, I did't find any Header r item text in the report.
    Pl suggest is there any other report is availble???
    Thanks in adv.

  • Order report for all components & services with plan/actual price

    Dear all Hi,
    I want to see a report which should give me the all the details of components & services cunsumed with their paln& actual costs for a production order, please suggest/help.
    Thanks in advance.

    Hi,
    You can get order wise costing report as following :
    Go to Production-->Shop Floor Control>Information System>Controlling Reports->Product Cost by Order where you will different drilldown options for getting costing report for orders.
    Hope this helps.
    Regards,
    Tejas

  • Pending Order Report for Milestone Value - Order Related Billing

    Hi Experts,
                    Is there any Report for Pending Order Value  for billing for Order Related Billing
    Thanks,
    Tom

    HI,
    Please raise message to SAP through service marketplace.
    Thanks,
    Vrajesh

  • Report for the list of materials with component & assembly scrap

    Dear Experts ,
    I have been told to generate a report for the materials which are subjected to component and assembly scrap . Please guide me for the same . Many thanks in advance.
    Yours
    Aman Khan

    Dear Aman,
    It you are maintaining both assembly scrap  & component scrap both in MM you can read MARC table by creating simple query.
    Read Field MARC-AUSSS & MARC-KAUSF.
    If you are maintaining component scrap in BOM item read STPO-AUSCH.
    [Query Creation|How do create query in SAP?]

  • MD4C - order report

    Dear all,
    I have a question about MD4C report.
    I'm using it for check the production situation but I have a question.
    I I have seen that it is possibile to change/create new profiles and, for each profile it is possible to set ATP logic.
    What ATP logic is used? The system check the material master parameter (MARC-MTVFP) and the parameter defined in production order (Checking Rule define in OPJK). Is it right?
    Another question. If I remember correctly when I run availability check with COHV the system runs the availability sequentially (for example sorted by start date). Is it right? and in MD4C transaction?
    Thank you a lot,
    CM

    Cristiano Maggioni wrote:
    I I have seen that it is possibile to change/create new profiles and, for each profile it is possible to set ATP logic.
    If you're talking about profiles defined in OPPF and making the ATP logic as default way of checking material availability then yes.
    What ATP logic is used? The system check the material master parameter (MARC-MTVFP) and the parameter defined in production order (Checking Rule define in OPJK). Is it right?
    You're right, it will use the group you mentioned in material master (but defined in OPJJ) and the corresponding checking rule mentioned in OPJK

  • Planned Order Report for WBS

    Hi expert,
    Is there any standard report to list planned order for one WBS ?
    Thanks and Regards
    Shubin

    Hi Balachandar,
    Thanks a lot for your support, I would like to have report which could be export to Excel. By MD16, we see there are more than 50 pages, we could not export to Excel easily.
    Thanks and Regards
    Shubin

  • Sales order report for on time and in full.

    Dear All,
    Is there any existing report or does anyone have a report that allows a person to measure if the items on a sales order was delivered in full and on the required delivery date?
    Regards,
    Ottley

    Dear Ottley,
    I think, Your requirement would get satisfied by Report: VL06O
    Click Tab: List of Outbound Deliveries.
    On to next screen, go to each Tab (Sorry, this time my Router-String is Down, so can't assist with exact Filed-Values) and maintain Filtering Criterias, like:
    If, I remember correctly, there is one Tab: Doc. Data; there is a Field: Order (If, you wish to list out Delivery, for selected Sales Orders)
    Another Tab, related to various Dates. Maintain appropriate Field(s), say Actual GI Date & Planned GI Date; and so on so forth...
    Now execute (F8), report.
    From, Selection Criteria, Key-in more Fields as reqd.
    Best Regards,
    Amit

Maybe you are looking for

  • Messages folder only shows e-mails not SMS messages.

    Hi I have just changed from a pearl to a Curve 8900 and I am having a little trouble in getting the same functuionality. My messages folder only shows the e-mails I have sent and received and not the SMS or MMS messages that I have sent and received.

  • Trouble Creating Migration Endpoint

    We are attempting to migrate from an SBS 2003 Exchange environment to Exchange Online.  When we run the Exchange Remote Connectivity Analyzer, we pass everything with one warning: "The Microsoft Connectivity Analyzer can only validate the certificate

  • Customize EDI

    hi everyone I have to send PO details to a 3rd party through EDI via XML I wanted to ask if I have to do configurations  just like IDOC i.e. 1) create logical system 2) create port 3) create partner profile The for the XML conversion, I dont know Can

  • How to design a mutliple view's in SAP ui5 similiar to TabStrip.

    I have created two views both should be displayed in the below mentioned format view1   view2 (Similiar to tabstrip) But in my case view2 is displayed below the view1 view1 view2 i have added my index.html file  and screenshot is available on attachm

  • 5.0.2 Will Not Launch The Organizer in Vista

    I have Photoshop Elements 5.0.2 for Vista. It has been running great for 2yrs, then it broke. Repeated uninstall/installs have not cured the problem. Organizer will not launch and I get error message: The action you have requested could not be comple