ADD ATTACHMENT TO AUTO MAIL SENT DURING BIDDER CREATION

HOW TO ADD ATTACHMENT TO AUTO MAIL SENT DURING BIDDER CREATION (CREATE CONTACT PERSON) IN SRM PORTAL..

HOW TO ADD ATTACHMENT TO AUTO MAIL SENT DURING BIDDER CREATION (CREATE CONTACT PERSON) IN SRM PORTAL..

Similar Messages

  • Cannot add attachment to e-mail since updating firefox

    when trying to add attachment to yahoo e-mail, no window comes up to allow me to select the attachment. When I click attachment nothing happens.

    Can anyone help me, please??? I check'd all possible settings but i can't solve this be my self.

  • To Add attachment to the Mail

    Hi Gurus,
    I am using the folwing program to sent mail to sapusers.
    In that i want to add Attachments. i dont know how to do?
    Can anyone Help me.
    *& Report  ZMAIL1                                                      *
    report yvenkatesh_send_express_mail .
    Internal Tables                                                     *
    For Sending the express mail
    data: itab_objhead          like soli       occurs 0 with header line,
          itab_objcont          like soli       occurs 0 with header line,
          itab_objpara          like selc       occurs 0 with header line,
          itab_objparb          like soop1      occurs 0 with header line,
          itab_receivers        like soos1      occurs 0 with header line.
    Work Areas                                                          *
    For Sending the express mail
    data: w_object_hd_change   like sood1.
    counters
    data: w_ok_count(10)       type n.
    data: w_err_count(10)      type n.
    data: w_tot_count(10)      type n.
    start-of-selection                                                  *
    start-of-selection.
      w_ok_count = 200.
      w_err_count = 300.
      w_tot_count = 500.
    End-of-selection                                                    *
    end-of-selection.
    Initialize the fields
      clear: w_object_hd_change.
      clear: itab_objcont, itab_objhead, itab_objpara,
             itab_objparb, itab_receivers.
      refresh: itab_objcont, itab_objhead, itab_objpara,
               itab_objparb, itab_receivers.
    Fill the message text
      concatenate 'Number of records processed:' w_tot_count
             into itab_objcont-line separated by space.
      append itab_objcont.
      concatenate 'Number of records processed Correctly:' w_ok_count
             into itab_objcont-line separated by space.
      append itab_objcont.
      concatenate 'Number of records Errored Out:' w_err_count
             into itab_objcont-line separated by space.
      append itab_objcont.
    Fill w_object_hd_change structure
      w_object_hd_change-objla   = sy-langu.
      w_object_hd_change-objnam  = sy-repid.
      w_object_hd_change-objdes  = 'Job ABC results'.
      w_object_hd_change-objsns  = 'F'.
      w_object_hd_change-vmtyp   = 'T'.
      w_object_hd_change-skips   = 'X'.
      w_object_hd_change-acnam   = 'SP01'. "Transaction to execute Special-Code
      w_object_hd_change-objcp   = 'X'.
    Specify the receivers
      itab_receivers-rcdat = sy-datum.
      itab_receivers-rctim = sy-uzeit.
      itab_receivers-recnam = sy-uname.    "Send to UserId"
      itab_receivers-rtunam = sy-uname.
      itab_receivers-sndex  = 'X'.         "Express mail message.
      append itab_receivers.
    Specify the spool info.     "Special-Code
      itab_objpara-name = 'SPI'.  "Special-Code
      itab_objpara-low  = sy-spono. "Special-Code
      append itab_objpara. "Special-Code
      call function 'SO_OBJECT_SEND'
           exporting
                object_hd_change = w_object_hd_change
                object_type      = 'RAW'
                owner            = sy-uname
           tables
                objcont          = itab_objcont
                objhead          = itab_objhead
                objpara          = itab_objpara
                objparb          = itab_objparb
                receivers        = itab_receivers
           exceptions
                others           = 01.
    Regards,
    Bhuvana.

    Hello,
    Check this sample code.
    REPORT ZV_SEND_MAIL .
    TABLES: EKKO.
    PARAMETERS: P_EMAIL   TYPE SOMLRECI1-RECEIVER
                                      DEFAULT '[email protected]'.
    TYPES: BEGIN OF T_EKPO,
      EBELN TYPE EKPO-EBELN,
      EBELP TYPE EKPO-EBELP,
      AEDAT TYPE EKPO-AEDAT,
      MATNR TYPE EKPO-MATNR,
    END OF T_EKPO.
    DATA: IT_EKPO TYPE STANDARD TABLE OF T_EKPO INITIAL SIZE 0,
          WA_EKPO TYPE T_EKPO.
    TYPES: BEGIN OF T_CHAREKPO,
      EBELN(10) TYPE C,
      EBELP(5)  TYPE C,
      AEDAT(8)  TYPE C,
      MATNR(18) TYPE C,
    END OF T_CHAREKPO.
    DATA: WA_CHAREKPO TYPE T_CHAREKPO.
    DATA:   IT_MESSAGE TYPE STANDARD TABLE OF SOLISTI1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   IT_ATTACH TYPE STANDARD TABLE OF SOLISTI1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
            T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
            T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            W_CNT TYPE I,
            W_SENT_ALL(1) TYPE C,
            W_DOC_DATA LIKE SODOCCHGI1,
            GD_ERROR    TYPE SY-SUBRC,
            GD_RECIEVER TYPE SY-SUBRC.
    *START_OF_SELECTION
    START-OF-SELECTION.
    *   Retrieve sample data from table ekpo
      PERFORM DATA_RETRIEVAL.
    *   Populate table with detaisl to be entered into .xls file
      PERFORM BUILD_XLS_DATA_TABLE.
    *END-OF-SELECTION
    END-OF-SELECTION.
    * Populate message body text
      PERFORM POPULATE_EMAIL_MESSAGE_BODY.
    * Send file by email as .xls speadsheet
      PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                                   TABLES IT_MESSAGE
                                          IT_ATTACH
                                    USING P_EMAIL
                                          'Example .xls documnet attachment'
                                          'XLS'
                                          'filename'
                                 CHANGING GD_ERROR
                                          GD_RECIEVER.
    *   Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM INITIATE_MAIL_EXECUTE_PROGRAM.
    *&      Form  DATA_RETRIEVAL
    *       Retrieve data form EKPO table and populate itab it_ekko
    FORM DATA_RETRIEVAL.
      SELECT EBELN EBELP AEDAT MATNR
       UP TO 10 ROWS
        FROM EKPO
        INTO TABLE IT_EKPO.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_XLS_DATA_TABLE
    *       Build data table for .xls document
    FORM BUILD_XLS_DATA_TABLE.
      CONSTANTS: CON_CRET TYPE X VALUE '0D',  "OK for non Unicode
                 CON_TAB TYPE X VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
    *    con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
    *    con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
             INTO IT_ATTACH SEPARATED BY CON_TAB.
      CONCATENATE CON_CRET IT_ATTACH  INTO IT_ATTACH.
      APPEND  IT_ATTACH.
      LOOP AT IT_EKPO INTO WA_CHAREKPO.
        CONCATENATE WA_CHAREKPO-EBELN WA_CHAREKPO-EBELP
                    WA_CHAREKPO-AEDAT WA_CHAREKPO-MATNR
               INTO IT_ATTACH SEPARATED BY CON_TAB.
        CONCATENATE CON_CRET IT_ATTACH  INTO IT_ATTACH.
        APPEND  IT_ATTACH.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
    *       Send email
    FORM SEND_FILE_AS_EMAIL_ATTACHMENT TABLES PIT_MESSAGE
                                              PIT_ATTACH
                                        USING P_EMAIL
                                              P_MTITLE
                                              P_FORMAT
                                              P_FILENAME
                                              P_ATTDESCRIPTION
                                              P_SENDER_ADDRESS
                                              P_SENDER_ADDRES_TYPE
                                     CHANGING P_ERROR
                                              P_RECIEVER.
      DATA: LD_ERROR    TYPE SY-SUBRC,
            LD_RECIEVER TYPE SY-SUBRC,
            LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
            LD_EMAIL LIKE  SOMLRECI1-RECEIVER,
            LD_FORMAT TYPE  SO_OBJ_TP ,
            LD_ATTDESCRIPTION TYPE  SO_OBJ_NAM ,
            LD_ATTFILENAME TYPE  SO_OBJ_DES ,
            LD_SENDER_ADDRESS LIKE  SOEXTRECI1-RECEIVER,
            LD_SENDER_ADDRESS_TYPE LIKE  SOEXTRECI1-ADR_TYP,
            LD_RECEIVER LIKE  SY-SUBRC.
      LD_EMAIL   = P_EMAIL.
      LD_MTITLE = P_MTITLE.
      LD_FORMAT              = P_FORMAT.
      LD_ATTDESCRIPTION      = P_ATTDESCRIPTION.
      LD_ATTFILENAME         = P_FILENAME.
      LD_SENDER_ADDRESS      = P_SENDER_ADDRESS.
      LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
    * Fill the document data.
      W_DOC_DATA-DOC_SIZE = 1.
    * Populate the subject/generic message attributes
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME  = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
      W_DOC_DATA-SENSITIVTY = 'F'.
    * Fill the document data and get size of attachment
      CLEAR W_DOC_DATA.
      READ TABLE IT_ATTACH INDEX W_CNT.
      W_DOC_DATA-DOC_SIZE =
         ( W_CNT - 1 ) * 255 + STRLEN( IT_ATTACH ).
      W_DOC_DATA-OBJ_LANGU  = SY-LANGU.
      W_DOC_DATA-OBJ_NAME   = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR  = LD_MTITLE.
      W_DOC_DATA-SENSITIVTY = 'F'.
      CLEAR T_ATTACHMENT.
      REFRESH T_ATTACHMENT.
      T_ATTACHMENT[] = PIT_ATTACH[].
    * Describe the body of the message
      CLEAR T_PACKING_LIST.
      REFRESH T_PACKING_LIST.
      T_PACKING_LIST-TRANSF_BIN = SPACE.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 0.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = 'RAW'.
      APPEND T_PACKING_LIST.
    * Create attachment notification
      T_PACKING_LIST-TRANSF_BIN = 'X'.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM   = 1.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE   =  LD_FORMAT.
      T_PACKING_LIST-OBJ_DESCR  =  LD_ATTDESCRIPTION.
      T_PACKING_LIST-OBJ_NAME   =  LD_ATTFILENAME.
      T_PACKING_LIST-DOC_SIZE   =  T_PACKING_LIST-BODY_NUM * 255.
      APPEND T_PACKING_LIST.
    * Add the recipients email address
      CLEAR T_RECEIVERS.
      REFRESH T_RECEIVERS.
      T_RECEIVERS-RECEIVER = LD_EMAIL.
      T_RECEIVERS-REC_TYPE = 'U'.
      T_RECEIVERS-COM_TYPE = 'INT'.
      T_RECEIVERS-NOTIF_DEL = 'X'.
      T_RECEIVERS-NOTIF_NDEL = 'X'.
      APPEND T_RECEIVERS.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = W_DOC_DATA
                PUT_IN_OUTBOX              = 'X'
                SENDER_ADDRESS             = LD_SENDER_ADDRESS
                SENDER_ADDRESS_TYPE        = LD_SENDER_ADDRESS_TYPE
                COMMIT_WORK                = 'X'
           IMPORTING
                SENT_TO_ALL                = W_SENT_ALL
           TABLES
                PACKING_LIST               = T_PACKING_LIST
                CONTENTS_BIN               = T_ATTACHMENT
                CONTENTS_TXT               = IT_MESSAGE
                RECEIVERS                  = T_RECEIVERS
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                DOCUMENT_TYPE_NOT_EXIST    = 3
                OPERATION_NO_AUTHORIZATION = 4
                PARAMETER_ERROR            = 5
                X_ERROR                    = 6
                ENQUEUE_ERROR              = 7
                OTHERS                     = 8.
    * Populate zerror return code
      LD_ERROR = SY-SUBRC.
    * Populate zreceiver return code
      LOOP AT T_RECEIVERS.
        LD_RECEIVER = T_RECEIVERS-RETRN_CODE.
      ENDLOOP.
    ENDFORM.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
    *       Instructs mail send program for SAPCONNECT to send email.
    FORM INITIATE_MAIL_EXECUTE_PROGRAM.
      WAIT UP TO 2 SECONDS.
      SUBMIT RSCONN01 WITH MODE = 'INT'
                    WITH OUTPUT = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
    *        Populate message body text
    FORM POPULATE_EMAIL_MESSAGE_BODY.
      REFRESH IT_MESSAGE.
      IT_MESSAGE = 'Please find attached a list test ekpo records'.
      APPEND IT_MESSAGE.
    ENDFORM.                    " POPULATE_EMAIL_MESSAGE_BODY
    Cheers,
    Vasanth

  • How to add attachment to a mail from client side to an account

    hi all,
    i am using java mail api for my web-application. what i have done is that when the user submits a weekly-report form , the contents of form are mailed to a specific address acount in gmail from where i can retrieve all mails. i am able to achieve this.
    what i want now is that the user should be able to attach some file to the report-form and that file comes as attachmernt to the gmail account.
    How can i pass value to FileDataSource for filename as it looks for that in my local machine and not on client machine.
    Please help and if u can give a sample code for reference also.
    here is code snippet for jsp form and servlet for reference:-
    jsp form code is:-
    <FORM method="post" enctype="multipart/form-data" action="SendMailServlet">
    <CENTER><TABLE BORDER=0 CELLPADDING=5 WIDTH="95%" >
    <TR>
         <TD WIDTH="25%"><B>Name:</B></TD>     
         <TD WIDTH="25%"><INPUT type="text" name="name" size="20"></TD>
    </tr>
    <tr>
         <TD WIDTH="25%"><B>Comment: </B></TD>     
         <TD WIDTH="20%"><textarea cols="40" rows="4" name="comment"></textarea></TD>
    </TR>
    <tr>
         <TD WIDTH="25%"><B>Attachment: </B></TD>
         <TD WIDTH="20%"><INPUT type="file" name="file" size="20"></TD>
    </TR>
    corresponding code for servlet is:-
    MimeBodyPart p1=new MimeBodyPart();
    p1.setText( "FeedBack Sent From :- "+senderName+CR+
                   "Comment Given is :- "+comment+CR);
    //Set the attachments
    MimeBodyPart p2=new MimeBodyPart();
    FileDataSource fds=new FileDataSource(file);
    p2.setDataHandler(new DataHandler(fds));
    p2.setFileName(fds.getName());
    Multipart mp=new MimeMultipart();
    mp.addBodyPart(p1);
    mp.addBodyPart(p2);
    msg.setContent(mp);
    msg.saveChanges();
    Transport.send(msg);
    Any help in this regard will be highly useful
    thanks in advance
    rahul

    Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/list.html]How to Use Lists. It has an example of dynamically adding an item to the list. There is also a tutorial on "How to Use File Choosers" if thats your problem.
    Start with the basics and read the tutorial.

  • Attachment name in mail sent through Bursting

    Hi Gurus,
    We have a requirement to Burst the output of a program and store the file in UNIX as well as mail. But the file name in UNIX is different from the one that has to appear in e-mail attachment. I am only able to set the file name same for UNIX and email attachment. Could someone help?
    EBS version: R12
    Bursting control file:
    <xapi:delivery>
    <xapi:filesystem output="${F_OUTPUT}" />
    <xapi:email server="${HOST_NAME}" port="25" from="${F_MAIL_ID}" reply-to="">
    <xapi:message id="123" to="${MAIL_TO}" attachment="true" subject="${F_MAIL_SUBJECT}">${F_MAIL_BODY}</xapi:message>
    </xapi:email>
    <xapi:document key="${F_ORDER_NUMBER}" output-type="pdf" delivery="123">
    <xapi:template type="rtf" locale="${CURR_FORMAT}" location="${TEMP_LOC}" />
    </xapi:document>
    </xapi:delivery>

    Add output key in the document key element as below
    <xapi:document key="${F_ORDER_NUMBER}" output-type="pdf" output="FileName you want.pdf" delivery="123">
    This should do the trick. Let me know if you still have issues.
    Thanks
    Shree

  • Add Signature to E-Mails Sent from Preview

    When I e-mail a document from Preview my signature is not automatically added to the e-mail. I can add it quickly from the signatures on the right, but I am running a small business and don't want the risk of forgetting to add it.
    Mail automatically adds the signature to new messages and to replies, it just doesn't add it from an e-mail created in Preview.
    To duplicate: open an image or PDF in Preview. Click on File --> Mail Image. A new mail message is created with the document attached, but the new e-mail does not automatically include my signature.
    I am using OS X 10.5.8, Mail 3.6 (936), and Preview 4.2 (469.5).

    Yes, same here, but the funny thing is that it tries to add it, (can tell because if the signature has external links, then Little Snitch will ask if Mail can connect to it just like composing a new one that does display it), but the signature drop down always says None & it doesn't display.
    Copying the text of the PDF in Preview & using Services>Mail>Sand Selection does add the signature, but of course no PDF layout, just the text.
    Only workaround I found is lots more work... Open PDF in Acrobat or Reader, File>Attach to Mail... new window opens without sig, Select All of the body, copy, close mail, CMD+n for a New mail, click in body, paste, sig is there.
    I don't expect that to be a workable solution.

  • I can't use the add attachment options in mail

    Hi all,
    Im having a little bit of trouble here. Everything was working fine. but all of a sudden I can't add attachments to an email in Mac mail by using the add attachments shortcut button or by file add attachments.
    All that happens is after aproximatley 30 secs the button or 'file' is depressed and i can continue using mail but no attachments window ever appears.
    Its not the end of the world as i can still drag and drop files into the email but it can become a pain when having to scroll through the network to find the attachments i require in finder.
    Please Help.
    Ben

    Please follow these instructions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click the line below to select it, then copy it to the Clipboard (command-C):
    ~/Library/Containers/com.apple.mail
    Quit Mail.
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar. Paste (command-V) into the box that opens, then press return. A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Relaunch Mail and test. If the problem is resolved, you'll have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.

  • Can't open PDF attachment in e-mail sent from Outlook, says I need to save first, how?

    Cannot open PDF attachment in webmail sent from Outlook, says I need to save first; how do I save the link?

    Looks like another user asked similar question with over 600 views and no replies ... hmmm.  When I click on the attachment, it says I must save it to my disk; with one button mouse just click once and save?  I've tried dragging and saving the attachment to word doc but opened up with a page of garbled words/symbols,etc.  Any ideas are welcome.

  • Cant add attachements in yahoo mail since upgrade

    Ever since upgrading my attachements seem to hang forever in yahoo mail. happens with safari as well as firefox. Not being able to attach photos to email is a major  problem for me

    Hi,
    You can consider the [https://support.mozilla.org/en-US/kb/reset-firefox-easily-fix-most-problems Reset Firefox] feature via '''Help''' ('''Alt''' + '''H''') > '''Troubleshooting Information'''. You can also try to temporarily switch to Yahoo classic mail whenever this problem occurs.

  • I can't open documents attached to e-mails sent me

    When I receive e-mails with an attachment e.g. Microsoft Word or a PDF document, I can't download it and open it.

    Where is the answer to my question?

  • Safari crashing down when trying to add attachment to online mail service

    hi,
    when i trying to add attachments suddenly the safari crashing down and exit.
    then i need to a reopen, try again and yet crashing down.
    it happens on me service, gmail,yahoo and many others.
    please your help.
    thanks oria
    here is the log:
    Process: Safari [2827]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.2 (6533.18.5)
    Build Info: WebBrowser-75331805~5
    Code Type: X86-64 (Native)
    Parent Process: launchd [523]
    Date/Time: 2010-11-13 22:17:20.230 +0200
    OS Version: Mac OS X 10.6.5 (10H574)
    Report Version: 6
    Interval Since Last Report: 17212 sec
    Crashes Since Last Report: 284
    Per-App Interval Since Last Report: 16415 sec
    Per-App Crashes Since Last Report: 10
    Anonymous UUID: D0D74029-A541-4757-8974-44BE971C6C8E
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000000
    Crashed Thread: 5
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff8778dfca _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff8778de59 nanosleep + 148
    2 libSystem.B.dylib 0x00007fff8778ddc3 usleep + 57
    3 ...ple.CoreServices.OSServices 0x00007fff81bda82e BonjourBrowser::cancel() + 92
    4 ...ple.CoreServices.OSServices 0x00007fff81bda9bf BonjourBrowser::~BonjourBrowser() + 15
    5 ...ple.CoreServices.OSServices 0x00007fff81bdaafc _destroy_block_invoke1 + 26
    6 com.apple.CoreFoundation 0x00007fff812d5a49 __CFRunLoopDoBlocks + 297
    7 com.apple.CoreFoundation 0x00007fff81297e76 __CFRunLoopRun + 3046
    8 com.apple.CoreFoundation 0x00007fff81296dbf CFRunLoopRunSpecific + 575
    9 com.apple.HIToolbox 0x00007fff8667191a RunCurrentEventLoopInMode + 333
    10 com.apple.HIToolbox 0x00007fff8667171f ReceiveNextEventCommon + 310
    11 com.apple.HIToolbox 0x00007fff866715d8 BlockUntilNextEventMatchingListInMode + 59
    12 com.apple.AppKit 0x00007fff84501e64 _DPSNextEvent + 718
    13 com.apple.AppKit 0x00007fff845017a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    14 com.apple.Safari 0x00000001000165d4 0x100000000 + 91604
    15 com.apple.AppKit 0x00007fff844c748b -[NSApplication run] + 395
    16 com.apple.AppKit 0x00007fff844c01a8 NSApplicationMain + 364
    17 com.apple.Safari 0x000000010000a4a0 0x100000000 + 42144
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff8776c16a kevent + 10
    1 libSystem.B.dylib 0x00007fff8776e03d dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff8776dd14 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff8776d83e dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff8776d168 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff8776d005 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff8778dfca _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff87791de1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff85172d49 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff8516ee4c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff877532da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8775394d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff81297932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff81296dbf CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002fa3d 0x100000000 + 195133
    5 com.apple.Safari 0x000000010002f9cd 0x100000000 + 195021
    6 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 4: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff8778dfca _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff87791de1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff862c0400 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001be849 0x100000000 + 1828937
    4 com.apple.Safari 0x000000010004750b 0x100000000 + 292107
    5 com.apple.Safari 0x0000000100047389 0x100000000 + 291721
    6 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 5 Crashed:
    0 com.apple.CoreFoundation 0x00007fff81279a20 CFWriteStreamClose + 80
    1 com.apple.Foundation 0x00007fff88e8d97f spoolingClose + 74
    2 com.apple.CoreFoundation 0x00007fff81279aa0 _CFStreamClose + 64
    3 com.apple.CFNetwork 0x00007fff869cbfec HTTPNetStreamInfo::closeRequestResources() + 118
    4 com.apple.CFNetwork 0x00007fff869cbc0b HTTPNetConnection::transmitRequest(HTTPNetStreamInfo*, __CFWriteStream*, CFStreamError*, unsigned char) + 1173
    5 com.apple.CFNetwork 0x00007fff869cab56 HTTPNetConnection::requestStreamCallback(void*, __CFWriteStream*, unsigned long) + 70
    6 com.apple.CFNetwork 0x00007fff869caaad NetConnection::connectionRequest(__CFWriteStream*, unsigned long) + 71
    7 com.apple.CoreFoundation 0x00007fff812f9373 _signalEventSync + 115
    8 com.apple.CoreFoundation 0x00007fff812fa0c9 cfstream_sharedsignalEventSync + 553
    9 com.apple.CoreFoundation 0x00007fff812992ad __CFRunLoopDoSources0 + 1021
    10 com.apple.CoreFoundation 0x00007fff812975f9 __CFRunLoopRun + 873
    11 com.apple.CoreFoundation 0x00007fff81296dbf CFRunLoopRunSpecific + 575
    12 com.apple.Foundation 0x00007fff88d7a07f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    13 com.apple.Foundation 0x00007fff88cfb0a5 _NSThread__main_ + 1429
    14 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    15 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 6: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x00007fff87796e92 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff812b9498 __CFSocketManager + 824
    2 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff877532da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8775394d mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff841733d2 CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff84173312 thread_fun + 34
    4 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 8: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0 libSystem.B.dylib 0x00007fff877532da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8775394d mach_msg + 59
    2 libSystem.B.dylib 0x00007fff877921d2 machport_extractmember + 94
    3 com.apple.CoreFoundation 0x00007fff8129b036 CFRunLoopRemoveSource + 790
    4 com.apple.CoreFoundation 0x00007fff812825b2 _CFSetApplyFunction_block_invoke1 + 18
    5 com.apple.CoreFoundation 0x00007fff81276ae5 CFBasicHashApply + 213
    6 com.apple.CoreFoundation 0x00007fff8128256f CFSetApplyFunction + 191
    7 com.apple.CoreFoundation 0x00007fff8129af51 CFRunLoopRemoveSource + 561
    8 com.apple.LaunchServices 0x00007fff83d36c58 LSSharedFileListRemoveObserver + 245
    9 ...ple.CoreServices.OSServices 0x00007fff81bea18a ManagedBrowser::stop() + 116
    10 ...ple.CoreServices.OSServices 0x00007fff81bdd3c3 NodeBrowser::unloadManaged() + 73
    11 ...ple.CoreServices.OSServices 0x00007fff81bde2f9 NodeBrowser::~NodeBrowser() + 91
    12 ...ple.CoreServices.OSServices 0x00007fff81bde4a1 _destroy_block_invoke3 + 26
    13 libSystem.B.dylib 0x00007fff8778f2c4 dispatch_call_block_andrelease + 15
    14 libSystem.B.dylib 0x00007fff8776de32 dispatch_queuedrain + 251
    15 libSystem.B.dylib 0x00007fff8776dc94 dispatch_queueinvoke + 57
    16 libSystem.B.dylib 0x00007fff8776d83e dispatch_workerthread2 + 252
    17 libSystem.B.dylib 0x00007fff8776d168 pthreadwqthread + 353
    18 libSystem.B.dylib 0x00007fff8776d005 start_wqthread + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff8776cf8a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8776d39c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8776d005 start_wqthread + 13
    Thread 10:
    0 libSystem.B.dylib 0x00007fff8775333a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x00007fff87791cd2 pthread_condwait + 1015
    2 com.apple.CoreVideo 0x00007fff82e2dde6 CVDisplayLink::waitUntil(unsigned long long) + 252
    3 com.apple.CoreVideo 0x00007fff82e2d2a2 CVDisplayLink::runIOThread() + 644
    4 com.apple.CoreVideo 0x00007fff82e2cfe3 startIOThread(void*) + 139
    5 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    6 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 11:
    0 libSystem.B.dylib 0x00007fff877532da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8775394d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff81297932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff81296dbf CFRunLoopRunSpecific + 575
    4 com.apple.CoreFoundation 0x00007fff81296b46 CFRunLoopRun + 70
    5 com.apple.DesktopServices 0x00007fff85f17646 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 514
    6 ...ple.CoreServices.CarbonCore 0x00007fff82af0411 PrivateMPEntryPoint + 63
    7 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    8 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 12:
    0 libSystem.B.dylib 0x00007fff8776cf8a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8776d39c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8776d005 start_wqthread + 13
    Thread 13: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff877532da machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8775394d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff81297932 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff81296dbf CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff88d358e4 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff88d357c3 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x00000001000903ef 0x100000000 + 590831
    7 com.apple.Foundation 0x00007fff88cfb0a5 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff8778c536 pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff8778c3e9 thread_start + 13
    Thread 5 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000400 rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000024
    rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x0000000117762f90 rsp: 0x0000000117762f80
    r8: 0x00007fff70cb7928 r9: 0x0000000000000000 r10: 0x0000000117846070 r11: 0x00007fff869cc04a
    r12: 0x0000000000000000 r13: 0x0000000100e41530 r14: 0x000000011776b0b0 r15: 0x0000000100e41530
    rip: 0x00007fff81279a20 rfl: 0x0000000000010287 cr2: 0x0000000000000000
    Binary Images:
    0x100000000 - 0x1006b0fe7 com.apple.Safari 5.0.2 (6533.18.5) <8387031E-6288-7B8A-DF4B-59412EDE5098> /Applications/Safari.app/Contents/MacOS/Safari
    0x1177e7000 - 0x1177e7fff com.apple.JavaPluginCocoa 13.3.0 (13.3.0) <FE297F73-9063-3507-BA4D-B02306F4A3C2> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1177eb000 - 0x1177f4fff com.apple.JavaVM 13.3.0 (13.3.0) <36BCE3E0-67EB-184B-3831-78287E8C58A1> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x11a983000 - 0x11a9a9fff GLRendererFloat ??? (???) <0310BFE5-B3DE-BCD8-EFD7-42C574EBF776> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x11b15c000 - 0x11b161fff com.apple.qldisplay.Generic 2.3 (327.6) <F497227C-B37C-2338-CB60-75B91133B1ED> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/Generic.qldisplay/Contents/MacOS/Ge neric
    0x11b174000 - 0x11b305fff GLEngine ??? (???) <BB46BB42-B574-1E54-101B-A68E43576B26> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x11b336000 - 0x11b740fe7 com.apple.ATIRadeonX2000GLDriver 1.6.24 (6.2.4) <B6C9B074-7AE7-0F15-8997-0AE28FC18539> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <DB8B8AB0-0C97-B51C-BE8B-B79895735A33> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80124fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff80125000 - 0x7fff80129ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <63F77AC8-84CB-0C2F-8D2B-190EE5CCDB45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff8014e000 - 0x7fff8014fff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff80150000 - 0x7fff80185fef com.apple.framework.Apple80211 6.2.3 (623.1) <2168CFEF-BABB-AA55-1059-5C7723B976A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff80349000 - 0x7fff8038cff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8038d000 - 0x7fff8038efff liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
    0x7fff8038f000 - 0x7fff803c8fef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <97F968EB-80ED-36FB-7819-D438B489E46E> /usr/lib/libcups.2.dylib
    0x7fff803c9000 - 0x7fff80bd3fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff80bf0000 - 0x7fff80c61ff7 com.apple.AppleVAFramework 4.10.12 (4.10.12) <1B68BE43-4C54-87F5-0723-0B0A14CD21E8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8108e000 - 0x7fff8109ffff SyndicationUI ??? (???) <38522C02-AE1B-EEA7-D74C-544D54CB6641> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff810c1000 - 0x7fff81121fe7 com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff81128000 - 0x7fff81171fef libGLU.dylib ??? (???) <EB4255DD-A9E5-FAD0-52A4-CCB4E792B86F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8124b000 - 0x7fff813c2fe7 com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff813c3000 - 0x7fff8142bfff com.apple.MeshKitRuntime 1.1 (49.2) <A490FE03-313D-1317-A9B8-25EF75CB1A81> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff8142c000 - 0x7fff81473fff com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8147c000 - 0x7fff814c3ff7 com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8151c000 - 0x7fff8159efff com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff818e3000 - 0x7fff81900ff7 libPng.dylib ??? (???) <14043CBC-329F-4009-299E-DEE411E16134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff81901000 - 0x7fff8191afff com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8191b000 - 0x7fff81954ff7 com.apple.MeshKit 1.1 (49.2) <B85DDDC7-4053-4DB8-E1B5-AA0CBD4CDD1C> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff81955000 - 0x7fff8199afff com.apple.CoreMediaIOServices 133.0 (1158) <53F7A2A6-78CA-6C34-0BB6-471388019799> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff8199b000 - 0x7fff81a2afff com.apple.iLifeMediaBrowser 2.5.2 (468) <9380B9E5-5C80-990F-FC10-A9E338C8C2B5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x7fff81a2b000 - 0x7fff81a41fef libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
    0x7fff81a42000 - 0x7fff81a47fff libGFXShared.dylib ??? (???) <A94DE483-A586-A172-104F-1CFC5F0BFD57> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff81a48000 - 0x7fff81a4bff7 com.apple.securityhi 4.0 (36638) <0234B95B-A339-4576-BB0D-A568634B50F5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff81a4c000 - 0x7fff81a5bfff libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
    0x7fff81a5c000 - 0x7fff81b75fef libGLProgrammability.dylib ??? (???) <13E8114C-6E07-A66E-35E6-C185E54840AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff81b76000 - 0x7fff81b77ff7 com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff81b78000 - 0x7fff81c35ff7 com.apple.CoreServices.OSServices 357 (357) <8D588EB3-92CC-3DB8-61E7-637CECCF7688> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff81c36000 - 0x7fff81c45fff com.apple.NetFS 3.2.1 (3.2.1) <DE59FB56-8536-9999-352A-2016ADCF4FCF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff81c46000 - 0x7fff81c76fef com.apple.shortcut 1.1 (1.1) <0A20F092-6161-4EA7-D8E6-859B5C350DE7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff81c77000 - 0x7fff81c82fff com.apple.CrashReporterSupport 10.6.5 (252) <0895BE37-CC7E-1939-8020-489BFCB3E2C6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff81d48000 - 0x7fff81d4efff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <4EE16374-A094-D542-5BC5-7E846D0CE56E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff81d4f000 - 0x7fff81d9efef libTIFF.dylib ??? (???) <AE9DC484-1382-F7AD-FE25-C28082FCB5D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff81e3f000 - 0x7fff82343fe7 com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff82344000 - 0x7fff823a6fe7 com.apple.datadetectorscore 2.0 (80.7) <C3A68083-AFB0-CFC6-8AA5-517C9D1489B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff823bd000 - 0x7fff823eefff libGLImage.dylib ??? (???) <57DA0064-4581-62B8-37A8-A07ADEF46EE2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff823ef000 - 0x7fff823f4ff7 com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff82532000 - 0x7fff82581ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <F5B744D7-AEAF-6B66-43CF-6E31CDA18EAB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff82582000 - 0x7fff826f1fe7 com.apple.QTKit 7.6.6 (1756) <250AB242-816D-9F5D-94FB-18BF2AE9AAE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff826f2000 - 0x7fff826f2ff7 com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff826f3000 - 0x7fff826f5fff libRadiance.dylib ??? (???) <76438F90-DD4B-9941-9367-F2DFDF927876> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff826f6000 - 0x7fff828b4fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <781E7B63-2AD0-E9BA-927C-4521DB616D02> /usr/lib/libicucore.A.dylib
    0x7fff8292a000 - 0x7fff829a7fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff829a8000 - 0x7fff82a25fef com.apple.backup.framework 1.2.2 (1.2.2) <BB72F0C7-20E2-76DC-6764-5B93A7AC0EB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff82a26000 - 0x7fff82a26ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff82a27000 - 0x7fff82a34fe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff82ae9000 - 0x7fff82e1dfff com.apple.CoreServices.CarbonCore 861.23 (861.23) <08F360FA-1771-4F0B-F356-BEF68BB9D421> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff82e1e000 - 0x7fff82e2afff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <ECA200F9-9C46-579A-6447-16B8BFB93D96> /usr/lib/libbz2.1.0.dylib
    0x7fff82e2b000 - 0x7fff82e50ff7 com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff82e9c000 - 0x7fff82f52fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <1960E662-D35C-5D98-EB16-D43166AE6A22> /usr/lib/libobjc.A.dylib
    0x7fff82f5c000 - 0x7fff82f62ff7 com.apple.DiskArbitration 2.3 (2.3) <AAB5CC56-334A-3C60-3C27-54E8F34D754E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff82f63000 - 0x7fff82fb8fef com.apple.framework.familycontrols 2.0.1 (2010) <66C68564-8AF3-2A03-B5B2-594CD6781CEA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff82fc5000 - 0x7fff83142ff7 com.apple.WebKit 6533.18 (6533.18.1) <6B55A3A4-CE83-BB0B-9EDE-B6AC8B2907AB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff83143000 - 0x7fff83180fff com.apple.LDAPFramework 2.0 (120.1) <F3B7B267-D580-F287-6DE7-8AC91C92AB35> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff83183000 - 0x7fff831a6fff com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8326b000 - 0x7fff8326dfff com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8326e000 - 0x7fff83279ff7 com.apple.HelpData 2.0.4 (34) <AB4C41BA-E7A9-DE25-CAE2-21D0A5F909D1> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff8327a000 - 0x7fff8327aff7 com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8327b000 - 0x7fff83282fff com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff83283000 - 0x7fff832c0ff7 libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff832c1000 - 0x7fff832c5ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff832c6000 - 0x7fff8330fff7 com.apple.securityinterface 4.0.1 (37214) <08DB37D6-A716-DC37-536C-7889999EF395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff83310000 - 0x7fff83358ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff83359000 - 0x7fff8345dfff com.apple.PubSub 1.0.5 (65.20) <DA852327-4B80-B49A-666C-835410273DE3> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8345e000 - 0x7fff834a1fef libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
    0x7fff834d3000 - 0x7fff83916fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff83917000 - 0x7fff83920ff7 com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff83921000 - 0x7fff83ad8fef com.apple.ImageIO.framework 3.0.4 (3.0.4) <2CB9997A-A28D-80BC-5921-E7D50BBCACA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff83ad9000 - 0x7fff83b58fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff83b59000 - 0x7fff83b88fff com.apple.quartzfilters 1.6.0 (1.6.0) <52D41730-D485-A7AE-4937-FE37FC732F65> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff83b89000 - 0x7fff83bdafef com.apple.HIServices 1.8.1 (???) <BE479ABF-3D27-A5C7-800E-3FFC1731767A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff83cc1000 - 0x7fff83d61fff com.apple.LaunchServices 362.1 (362.1) <CC3BE120-AF3C-FE7E-342D-EB2A208AE20E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff83d62000 - 0x7fff83d9dfff com.apple.AE 496.4 (496.4) <CB905496-4D6B-F26A-399D-840D26DBEE5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff83d9e000 - 0x7fff83dbeff7 com.apple.DirectoryService.Framework 3.6 (621.9) <FF6567B5-56BD-F3EC-E59D-1EC583C3CF73> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff83dbf000 - 0x7fff84001fef com.apple.AddressBook.framework 5.0.3 (875) <78FDBCC6-8F4C-C4DF-4A60-BB038572B870> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff84002000 - 0x7fff8408efef SecurityFoundation 36840.0.0 (compatibility 1.0.0) <105C82B6-A1C7-9082-ECA6-AEA08C1948C6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8408f000 - 0x7fff840d0ff7 com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff840d1000 - 0x7fff840d4ff7 libCoreVMClient.dylib ??? (???) <B1F41E5B-8B59-DB81-1654-C1F9B11E885F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff840d5000 - 0x7fff8411fff7 com.apple.Metadata 10.6.3 (507.12) <9231045A-E2E3-B0C2-C81A-92C9EA98A4DF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff84120000 - 0x7fff844bdfe7 com.apple.QuartzCore 1.6.3 (227.34) <215222AF-B30A-7CE5-C46C-1A766C1D1D2E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff844be000 - 0x7fff84eb4fff com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff84eb5000 - 0x7fff84f6afe7 com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff84f6b000 - 0x7fff84f79ff7 libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
    0x7fff84f7a000 - 0x7fff84f90fe7 com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84fc1000 - 0x7fff8503dff7 com.apple.ISSupport 1.9.4 (52) <93A57F16-3BD5-25AD-5CFF-00007A141129> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff8503e000 - 0x7fff85118fff com.apple.vImage 4.0 (4.0) <B5A8B93B-D302-BC30-5A18-922645DB2F56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8516c000 - 0x7fff85ddfff7 com.apple.WebCore 6533.18 (6533.18.1) <E98598FB-8C73-1334-7C30-216CC49B889E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff85e0a000 - 0x7fff85e1bfff com.apple.DSObjCWrappers.Framework 10.6 (134) <CF1D9C05-8D77-0FFE-38E8-63D8A23E92E1> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff85f15000 - 0x7fff85ffafef com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff85ffb000 - 0x7fff85ffbff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff85ffc000 - 0x7fff8600efe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
    0x7fff8600f000 - 0x7fff8609efff com.apple.PDFKit 2.5.1 (2.5.1) <C0E3AE4B-E71A-16D8-0D51-FB7D3E3AD793> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff860e9000 - 0x7fff86155ff7 com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8616f000 - 0x7fff862adfff com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff862ae000 - 0x7fff86496ff7 com.apple.JavaScriptCore 6533.18 (6533.18.1) <C6F7B4E1-1DF6-414A-5A17-B334A814B2A0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff865f8000 - 0x7fff86607fff com.apple.opengl 1.6.11 (1.6.11) <43D5BE71-E1F6-6974-210C-17C68919AE08> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff86608000 - 0x7fff86642fff libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
    0x7fff86643000 - 0x7fff86941fe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff86942000 - 0x7fff869acfe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff869ad000 - 0x7fff86a7ffe7 com.apple.CFNetwork 454.11.5 (454.11.5) <B3E2BE12-D7AA-5940-632A-1E5E7BF8E6E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff86a80000 - 0x7fff86b97fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <AFE91118-DBF3-6313-37B8-8A2002C6A46B> /usr/lib/libxml2.2.dylib
    0x7fff86ba3000 - 0x7fff86c64fe7 libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff86dd7000 - 0x7fff86e23fff libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
    0x7fff86e24000 - 0x7fff86e24ff7 com.apple.Carbon 150 (152) <586B20CD-AEB9-57F1-F2C1-BB14BE70C5B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff86e25000 - 0x7fff870abfef com.apple.security 6.1.1 (37594) <17CF7858-52D9-9665-3AE8-23F07CC8BEA1> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff870ac000 - 0x7fff870defff libTrueTypeScaler.dylib ??? (???) <B9ECE1BD-A716-9F65-6466-4444D641F584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff870df000 - 0x7fff870f4ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff870f5000 - 0x7fff87185fff com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff87186000 - 0x7fff87560fff com.apple.RawCamera.bundle 3.4.1 (546) <F7865FD2-4869-AB19-10AA-EFF1B3BC4178> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8766d000 - 0x7fff8766dff7 com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8766e000 - 0x7fff876f3ff7 com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff876f4000 - 0x7fff876fffff com.apple.corelocation 12.1 (12.1) <0B15767B-D752-7DA6-A8BB-5A1C9C39C5C8> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff87700000 - 0x7fff8771bff7 com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff87752000 - 0x7fff87913fff libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
    0x7fff87914000 - 0x7fff8792afff com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8792b000 - 0x7fff87b66fef com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff87b67000 - 0x7fff87c16fff edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff87c17000 - 0x7fff87cccfe7 com.apple.ColorSync 4.6.3 (4.6.3) <5A7360A8-D495-1E8D-C4B4-A363AF989ADE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff87ccd000 - 0x7fff87d0efff com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff87d0f000 - 0x7fff87d8dfff com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff87db6000 - 0x7fff87e6ffff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
    0x7fff87e70000 - 0x7fff87e9bff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <6589F0FC-41DB-8494-CA8B-487F4E328EB9> /usr/lib/libxslt.1.dylib
    0x7fff87e9c000 - 0x7fff87fc2fff com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff87fc3000 - 0x7fff8805dfff com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8805e000 - 0x7fff88063fff libGIF.dylib ??? (???) <9A2723D8-61F9-6D65-D254-4F9273CDA54A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff880a8000 - 0x7fff880b9ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <5BAFAE5C-2307-C27B-464D-582A10A6990B> /usr/lib/libz.1.dylib
    0x7fff880ba000 - 0x7fff881e2ff7 com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff881f2000 - 0x7fff88213fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9B7AEE96-D18E-5ECF-9837-BD5CFD397831> /usr/lib/libresolv.9.dylib
    0x7fff88214000 - 0x7fff88214ff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff88215000 - 0x7fff88218fff com.apple.help 1.3.1 (41) <AEDDF93F-BAC0-0308-68FD-039A99F3A158> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff88219000 - 0x7fff8891606f com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff88917000 - 0x7fff8893dfe7 libJPEG.dylib ??? (???) <6690F15D-E970-2678-430E-590A94F5C8E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8893e000 - 0x7fff88ba8fef com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff88ba9000 - 0x7fff88bd1fff com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff88bd2000 - 0x7fff88bddff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff88bde000 - 0x7fff88be4ff7 IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff88c29000 - 0x7fff88c3dfff libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff88c59000 - 0x7fff88c5afff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <EC039008-5367-090D-51FD-EA4D2623671A> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff88c5b000 - 0x7fff88c5bff7 com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff88c63000 - 0x7fff88ca7fe7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <913FFA89-0AC8-0A8D-CC2A-364CB0F303BA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff88ca8000 - 0x7fff88ce9fef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff88cea000 - 0x7fff88f6dff7 com.apple.Foundation 6.6.4 (751.42) <9A99D378-E97A-8C0F-3857-D0FAA30FCDD5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88f6e000 - 0x7fff89078ff7 com.apple.MeshKitIO 1.1 (49.2) <D7227401-9DC9-C2CB-C83B-C2B10C61D4E4> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff89079000 - 0x7fff8908dff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3500418AS, 465.76 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd110000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Desktop USB Drive, 0x18a5, 0x0216, 0xfa130000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215, 0xfa111000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa120000
    Message was edited by: Oria Maymon

    Hi
    when i upgrade to the latest software update 10.6.5 the problem is back!
    10.6.5 is responsible for that.
    It does seem so, yes - assuming that no other software at all was added, & no migration from a backup.
    Odd that this forum isn't crammed with people finding the same issue, I can only suggest trying an earlier Flash build, or perhaps trying Safari in 32 bit mode rather than rolling back to 10.6.3 again.
    http://kb2.adobe.com/cps/142/tn_14266.html older versions here.
    These crashes persist with everything unplugged bar the keyboard & mouse (if usb) ?

  • Attaching workitem to mail step

    Dear all,
    I am working on a scenario in which when ever Notification of Type 'N' is created , a workflow get triggered and the workitem goes for approval to a authorized person, now that person can  attach a note to that workitem and make rejection or approval at his wich.
    Now i want to send a mial to the user in SAP inbox only which should have the attachment that the approver has ,made..
    Is it possible if yes then please guide me.
    Thanks and Regards,
    Rachit khanna

    Hi Rachit,
    There are 2 options.
    One is adding the container element to the body of email sent to workflow.
    That is the reject reason entered by the manager is stored in a varaible and you can import that data into a container element and that container element can be added at task level to the body of mail, which will appear in the body of mail.
    Second option is using a SELFITEM-NOTE_CREATE instead of giving the manager an option to enter the reason.
    Allowing him to Enter the subject and body of the mail, which will be mandatory. You need to import attachment from the approval task to workflow and then that attachment to be exported to the mail task, which will have the attachment to the mail sent.
    Let, me know if you need more description or any other clarifications.
    bye,
    Sudhir.

  • Auto mail sending

    Hi Gurus, Please see the below scenario and reply. We have create a zreport for PM order Compliance report calculating that is order type or work center wise, including that client required the list of order Auto mail sent to particular recipient when we execute the z program, So now Abaper ask me pls provide the FS like table name and field name. Please suggest how can i solve this issue ? give some idea to provide the Fs. Best Rajeev

    I just know we can do it by shell scripting.
    Please let me know how to do this and how should I define a concurrent program for that, so as to call it in my script with parameters.\Why shell scripting and define a concurrent program for it if you can do it via PL/SQL? Please see these links for details.
    http://forums.oracle.com/forums/search.jspa?threadID=&q=UTL_SMTP&objID=c84&dateRange=all&userID=&numResults=15&rankBy=10001
    http://forums.oracle.com/forums/search.jspa?threadID=&q=UTL_MAIL&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Add attachment in mail

    We have a workflow which triggers on PO creation/change , and sends a mail to the PR creator for which the PO has been created .
    We have a new requirement to add an attachment which contains the PO created in PDF form , in the mail sent to the PR.
    Can someone let me know how can the attachment be added in the mail .
    also , if there is any alternate or standard SAP method to do this .
    Thanks
    Sheetal

    To build the pdf attachment, you need to copy and modify the routine that prints the PO:
    For
    <b>1. SAPSCRIPT</b>
    Pass the TDGETOTF set to X, it is on OPTIONS structure that refers to ITCPO of FM OPEN_FORM, the OTF data is returned in CLOSE_FORM FM
    <b>2. SMARTFORM</b>
    The smartform's generated FM needs to be called with GETOTF set to X again, it is on the CONTROL_PARAMETERS, the OTF data is received into JOB_OUTPUT_INFO-OTF data.
    Once the above is done you need to convert this OTF to PDF, search the ABAP forums for this otherwise I will have to dig through and revert to you.
    Good Luck
    Ravi

  • Auto mail of RFQ to vendor with attachment

    Hi experts
    We are using auto mail of RFQ (ME9A) functionality through which a pdf file (as attachment) is emailed to the vendor's email address. I want to send one more attachment (for eg. a JPG file) in same mail along with the RFQ document. Please help how the same can be done
    thanks in advance

    Hi Rajat,
    I think maybe you need to use tr-code "NACE".
    1. Choose Application "EA" (Purchasing RFQ)
    2.Click "Output types" or press "F5"
    3.Choose Output Types "NEU" (RFQ)
    4.Click "Processing routines" to check whether below red part are have forms.
    If not have, I think you may need to copy program "SAPFM06P" to a z* program and change the form name here as z* and add your PDF forms here.
    Regards

Maybe you are looking for