IDoc outbound errors - mail send step in WF to send info-mail to enduser

Hello specialists
I searched quite a lot in the forums now. I found lot of info but nothing regarding my issue.
I need to send an info-mail to the end user creating purchase orders. But only if the idoc (outbound ORDERS) could not be sent (failing for some reason, i.e. if rfc connection fails). This is what I've done to achieve this:
- in WE40 I linked my WF to process code EDIO
- the WF-BATCH user has an email address assigned to it (in SU01)
- the mail sending step in my WF is configured like this:
recipient type = G (organizational object)
Expression = &_WORKITEM.CREATEDBYUSER.ID& (this contains the enduser id)
subject = Test for &WORKITEM.CREATEDBYUSER.ID&
When testing the mail can not be delivered (error SO23).
When setting recipient type to U (E-Mail address) and giving a valid e-mail address, then it works fine (SCOT, etc. is configured and mailing to external systems works). But setting the e-mail address hard coded style in the mail send step is not an option here!
It seems that the send mail step (SELFITEM.SENDTASKDESCRIPTION) always requires a valid e-mail address. Is it not able to handle SAP user id's ?
Thanks in advance for some guideance on this one.
Renaud
Edited by: Renaud Desarzens on Feb 11, 2010 3:00 PM

Hello and thanks for your help.
I was able to solve it like this:
- don't use mail send step
- instead, add new activity with a new task (SELFITEM.SENDTASKDESCRIPTION)
- in the bindings (workflow -> step) set:
     B --> &TYPEID&
     &_WORKITEM.CREATEDBYUSER.ID& --> &ADDRESSSTRINGS&
Seems that the mail send step doesn't allow TYPEID to be "B" because each time I tried to tweak the generated bindings that way it messed up the recipient type and expression I set before.
Regards
Renaud

Similar Messages

  • BPM Send Step with acknowledgment: ID: sender agreement?

    Hello everybody,
    I have a send step in BPM and I expect a acknowledgement from the receiver.
    Do I have to configure a sender agreement?
    Thanks a lot
    Regards Mario

    mario,
    I have tried to use a Sen Synchronous Step to a JDBC adapter from a BPM and it works fine.
    <i>After changing the send step in BPM from async to sync with acknowledgement, I get not response message</i>.
    When you select MODE as SEND SYNCHRONOUS in your Send Step, there is no option to Select ACKNOWLEDGEMENT.
    When you select the MODE as SEND ASYNCHRNOUS , you can have acknowledgements.
    But, as you are using a RECEIVER  JDBC adapter , you need to have a SEND SYNCHRNOUS step that will get the response back from the JDBC adapter. This response will double up as Acknowledgemet.
    You can surround this Send Synchrnous Step with an Exceptuion Handler to handle any exception that might occur.
    Regards,
    Bhavesh

  • IDOC OutBound Error 29: Entry in outbound table not found?

    Dear All,
            I configed the customized IDOC,and used BD64,WE20 Generate Partner Profile.the partner type is u2018LSu2019,In We20,I clicked the check button .There is no error in check.Other config also correct.
    My outbound program main code is :
      WA_IDOC_CONTROL_RECORD-MESTYP = 'ZMSGTYPE_WE81'.              
      WA_IDOC_CONTROL_RECORD-IDOCTP = 'ZIDOCTYPE_WE30'.
    Receiver
      WA_IDOC_CONTROL_RECORD-RCVPOR = 'A000000003'.           "Port
      WA_IDOC_CONTROL_RECORD-RCVPRN = 'target100'.        "Partner number
      WA_IDOC_CONTROL_RECORD-RCVPRT = 'LS'."Partner type
      WA_IDOC_CONTROL_RECORD-RCVPFC = 'LS'."Partner function
    Sender
      wa_idoc_control_record-sndpor = 'A000000001'.           "Port
      wa_idoc_control_record-sndprn = 'source500'.           "Partner number
      wa_idoc_control_record-sndprt = 'LS'.             "Partner type
      WA_IDOC_CONTROL_RECORD-SNDPFC = 'LS'."Partner function
      DATA L_ITEM TYPE I.
      LOOP AT GT_IDOC.
        L_ITEM = L_ITEM + 1.
        WA_EDIDD-SEGNAM = 'ZSEG_WE31'.
        WA_EDIDD-SEGNUM = L_ITEM.
        WA_EDIDD-SDATA = GT_IDOC.
        APPEND WA_EDIDD TO IT_EDIDD.
      ENDLOOP.
      CLEAR L_ITEM.
      SORT IT_EDIDD BY SEGNUM.
      CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
           EXPORTING
                MASTER_IDOC_CONTROL            = WA_IDOC_CONTROL_RECORD
              OBJ_TYPE                       = ''
              CHNUM                          = ''
           TABLES
              COMMUNICATION_IDOC_CONTROL     = IT_COMMUNICATION_IDOC_CONTROL
                MASTER_IDOC_DATA               = IT_EDIDD
           EXCEPTIONS
                ERROR_IN_IDOC_CONTROL          = 1
                ERROR_WRITING_IDOC_STATUS      = 2
                ERROR_IN_IDOC_DATA             = 3
                SENDING_LOGICAL_SYSTEM_UNKNOWN = 4
                OTHERS                         = 5
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.

    hi Sun,
    The value 'X' means ABAP_TRUE, which means the outbound ALE settings for your message type are OK.
    Did you check the sy-subrc value after the FM 'MASTER_IDOC_DISTRIBUTE' is called ? and if yes what is the value ?
    Also did u check the IT_EDIDD table, whether is contains any values ?
    If all of the above is fine then call the FM 'EDI_DOCUMENT_DEQUEUE_LATER' by passing the document number of the outbound IDoc created, this number you will from the 'communication_idoc_control' table which you need to pass to your FM MASTER_IDOC_DISTRIBUTE.
    for your reference attached is code for it
        CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
          EXPORTING
            master_idoc_control            = wf_edidc
          TABLES
            communication_idoc_control     = int_comm_cntl
            master_idoc_data               = int_edidd
          EXCEPTIONS
            error_in_idoc_control          = 1
            error_writing_idoc_status      = 2
            error_in_idoc_data             = 3
            sending_logical_system_unknown = 4
            OTHERS                         = 5.
    if sy-subrc = 0.
      APPEND LINES OF lt_idoc_comm_control TO g_idoc_comm_control.
    endif.
      LOOP AT g_idoc_comm_control.
        CALL FUNCTION 'EDI_DOCUMENT_DEQUEUE_LATER'
          EXPORTING
            docnum = g_idoc_comm_control-docnum.
      ENDLOOP.
    {/code}
    hope this will solve your problem
    Edited by: Ashwinee on Dec 26, 2008 12:09 PM

  • File to Idoc - Outbound Error

    Hi,
       I am doing File to IDOC scenario. I got error
    in "Message has error status at outbound status" .. When
    I opend that messeage then i got this ...
    <SAP:IDOCTYP>ZIDOCIN</SAP:IDOCTYP>
      <SAP:CIMTYP />
      <SAP:MESTYP>ZMTIDOCIN</SAP:MESTYP>
      <SAP:MESCOD />
      <SAP:MESFCT />
      <SAP:SNDPOR>SAPX11</SAP:SNDPOR>
      <SAP:SNDPRN>Logi_01</SAP:SNDPRN>
      <SAP:SNDPRT>LS</SAP:SNDPRT>
      <SAP:SNDPFC />
      <SAP:RCVPOR>SAPA11</SAP:RCVPOR>
      <SAP:RCVPRN>A11CLNT200</SAP:RCVPRN>
      <SAP:RCVPRT>LS</SAP:RCVPRT>
      <SAP:RCVPFC />
      <SAP:TEST />
      Can any one tell me what to do to solve this.
    thx,
    Ansar.

    Hi,
    There is somethig worng with your Partner Function while defining the the Partner Profile, please check it. The Partner function is optionla and see if you need it
    Go thru the link,
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b80b543d711d1893e0000e8323c4f/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cdded790-0201-0010-6db8-beb9bb2b2660
    Thanks,
    Prakash
    Thanks,
    Prakash

  • SAP to XI IDoc Outbound Error

    Hi,
    I am sending an IDoc from SAP R/3 to SAP XI . In WE02 IDoc showing Status as 03 (sucess) but in SM58 it showing as Error
    *No service for system SAPTI2, client 030 in Integration Directory *
    Any Info?

    Got answer from XI forum

  • ALE / IDOC Outbound Error Handling

    Hi Experts,
    I got an error in Outbound Process.
    An IDOC gets the status 36 - Timed out.
    Can anyone tell me how can i resolve this Error?.
    Thanks in advance,
    Sudhakar

    Hi ,
            Best option is to keep a sql trace on the outbound idoc which will tell you at which perform or functional module ,the performance is taking time to fetch .
    all check with basis in terms of timed out ,they would have set a paramater for time out in terms of mins or hrs.

  • Mail crashes when i wanted to send a mail

    I don't what happen, but i recently update my OS, and now when i want to send a mail from my app mail, it closed inmediatley, i obtain this information from the console, could you help me?
    Thanks a lot
    Process:         Mail [382]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.3 (1878.6)
    Build Info:      Mail-1878006000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [168]
    Responsible:     Mail [382]
    User ID:         501
    Date/Time:       2014-09-22 19:20:08.344 -0500
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  0AC8739E-4EB0-5EBD-6AE2-AB675DDAC737
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000011c373000
    VM Regions Near 0x11c373000:
        WebKit Malloc          000000011c273000-000000011c373000 [ 1024K] rw-/rwx SM=PRV 
    --> WebKit Malloc          000000011c373000-000000011c374000 [    4K] ---/rwx SM=NUL 
        JS VM register file (r 000000011c374000-000000011c774000 [ 4096K] rw-/rwx SM=NUL  reserved VM address space (unallocated)
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_platform.dylib       0x00007fff8ec589a9 _platform_bzero$VARIANT$Ivybridge + 41
    1   com.apple.WebCore             0x00007fff8be1e0cc WebCore::getPropertyNameAtomicString(WebCore::CSSPropertyID) + 108
    2   com.apple.WebCore             0x00007fff8be1e040 WebCore::getPropertyNameString(WebCore::CSSPropertyID) + 16
    3   com.apple.WebCore             0x00007fff8c7320f2 WebCore::StylePropertySet::PropertyReference::cssName() const + 66
    4   com.apple.WebCore             0x00007fff8c65b588 WebCore::PropertySetCSSStyleDeclaration::item(unsigned int) const + 40
    5   com.apple.WebCore             0x00007fff8c191496 -[DOMCSSStyleDeclaration item:] + 54
    6   com.apple.mail                 0x000000010f7695ef 0x10f6ca000 + 652783
    7   com.apple.mail                 0x000000010f7693dd 0x10f6ca000 + 652253
    8   com.apple.mail                 0x000000010f764175 0x10f6ca000 + 631157
    9   com.apple.mail                 0x000000010f75fcaf 0x10f6ca000 + 613551
    10  com.apple.CoreFoundation       0x00007fff86c0d9ac __invoking___ + 140
    11  com.apple.CoreFoundation       0x00007fff86c0d814 -[NSInvocation invoke] + 308
    12  com.apple.MailCore             0x00007fff8fc3f448 -[MCThrowingInvocationOperation main] + 40
    13  com.apple.MailCore             0x00007fff8fbeb578 -[MCMainThreadInvocationOperation main] + 55
    14  com.apple.Foundation           0x00007fff90c0d7ce __NSThreadPerformPerform + 229
    15  com.apple.CoreFoundation       0x00007fff86c535b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    16  com.apple.CoreFoundation       0x00007fff86c44c62 __CFRunLoopDoSources0 + 242
    17  com.apple.CoreFoundation       0x00007fff86c443ef __CFRunLoopRun + 831
    18  com.apple.CoreFoundation       0x00007fff86c43e75 CFRunLoopRunSpecific + 309
    19  com.apple.HIToolbox           0x00007fff8d60ca0d RunCurrentEventLoopInMode + 226
    20  com.apple.HIToolbox           0x00007fff8d60c7b7 ReceiveNextEventCommon + 479
    21  com.apple.HIToolbox           0x00007fff8d60c5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    22  com.apple.AppKit               0x00007fff892e724e _DPSNextEvent + 1434
    23  com.apple.AppKit               0x00007fff892e689b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    24  com.apple.AppKit               0x00007fff892da99c -[NSApplication run] + 553
    25  com.apple.AppKit               0x00007fff892c5783 NSApplicationMain + 940
    26  libdyld.dylib                 0x00007fff8d88c5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8530b662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8730b421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8730b136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff85306a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85305d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff86c44f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff86c44539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff86c43e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff8948705e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff85306a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85305d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff86c44f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff86c44539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff86c43e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff90c10ff7 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff90c10dfb __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8530a9aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff86c90a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 7:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff85306a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85305d18 mach_msg + 64
    2   com.apple.QuartzCore           0x00007fff87188377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore           0x00007fff871882ad thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 9:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cceccb5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff8530ae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f7aef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8f7b1fb9 start_wqthread + 13
    Thread 22:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced106 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore       0x00007fff8ccecc25 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 23:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 24:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 25:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 26:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 27:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 28:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8530a716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8f7afc3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff8cced727 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff8cced5b8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8cce1f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8f7ad899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8f7ad72a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8f7b1fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000011c283108  rcx: 0x0000000115f7f7a8  rdx: 0x000000011c283108
      rdi: 0x000000011c373000  rsi: 0x0000000000000000  rbp: 0x00007fff50533fe0  rsp: 0x00007fff50533fe0
       r8: 0x8ef87693e9c0f76e   r9: 0x9af87692e670282b  r10: 0x1400000000087dc5  r11: 0x8ef8096c9c866c7e
      r12: 0x00006000008310e0  r13: 0x000000010fa6c548  r14: 0x00007fff7547f9a8  r15: 0x00000000000000a3
      rip: 0x00007fff8ec589a9  rfl: 0x0000000000010206  cr2: 0x000000011c373000
    Logical CPU:     0
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
           0x10f6ca000 -        0x10f9bcfff  com.apple.mail (7.3 - 1878.6) <84C51E40-00C5-3710-8A99-04A0F6D078F5> /Applications/Mail.app/Contents/MacOS/Mail
           0x10fba3000 -        0x10fbaefff  com.apple.Notes.iaplugin (2.0 - 284) <BF5A1CB0-1040-3781-B19B-C7C4C864DFEC> /System/Library/InternetAccounts/Notes.iaplugin/Contents/MacOS/Notes
           0x10fbdf000 -        0x10fbebff7  com.apple.calendar.iaplugin (7.0 - 1366) <C5D4A563-A116-3442-98A9-D71B17F1E211> /System/Library/InternetAccounts/Calendar.iaplugin/Contents/MacOS/Calendar
           0x10fbf4000 -        0x10fc00ff7  com.apple.reminders.iaplugin (7.0 - 1366) <746ABED7-9075-34FA-B938-19D19FAF06B9> /System/Library/InternetAccounts/Reminders.iaplugin/Contents/MacOS/Reminders
           0x10fd09000 -        0x10fd0affa +cl_kernels (???) <A72E8C15-79F0-4DED-9C67-8AC3F910D6DC> cl_kernels
           0x111997000 -        0x11199afff  libspindump.dylib (161.2) <E16E9BFB-8F34-366F-BE10-48993F5843BC> /usr/lib/libspindump.dylib
           0x113d30000 -        0x113d37fff  com.apple.SyncedDefaults (1.3 - 91.30.1) <26F0AD10-86CC-31A4-899C-097269680E05> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x114044000 -        0x114045fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1371.2) <E63CFFBD-3CC0-329C-BB89-17996C9F75E4> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x114058000 -        0x11405cfff  com.apple.DirectoryServicesSource (8.0 - 1371.2) <BDB90569-EC4F-379E-948A-C354C9467E86> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x115971000 -        0x115973fff  apop.so (170.1) <97DD24EE-D5F4-34EB-B521-D7BA883D2606> /usr/lib/sasl2/apop.so
           0x115977000 -        0x115987ff7  dhx.so (170.1) <E4299F4A-F42C-397A-A306-58161EFD7686> /usr/lib/sasl2/dhx.so
           0x115993000 -        0x11599bfff  digestmd5WebDAV.so (170.1) <B11199EC-EF62-3592-AE51-38EBD1B6282F> /usr/lib/sasl2/digestmd5WebDAV.so
           0x1159a0000 -        0x1159a2fff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x1159a9000 -        0x1159abfff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x1159b0000 -        0x1159b8ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x1159bd000 -        0x1159c1fff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x1159c6000 -        0x1159c8fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x1159cc000 -        0x1159d1fff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x1159d6000 -        0x1159ddfff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x1159e6000 -        0x1159e8fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x1159ec000 -        0x1159f0ffd  libpps.so (170.1) <C7604F07-E966-33F7-8727-93F000CBA92F> /usr/lib/sasl2/libpps.so
           0x1159f7000 -        0x1159fafff  mschapv2.so (170.1) <C79F63BB-E66D-3552-9C4C-2D3EB14CEE01> /usr/lib/sasl2/mschapv2.so
           0x1159ff000 -        0x115a27ff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x115a58000 -        0x115a5afff  pwauxprop.so (400.1) <B95FA3F5-0EE9-335E-BBC7-FDEDEB7F18F0> /usr/lib/sasl2/pwauxprop.so
           0x115a5f000 -        0x115a61fff  shadow_auxprop.so (170.1) <E02127CB-F9C0-3E3B-ABBB-473EC0CB6DE7> /usr/lib/sasl2/shadow_auxprop.so
           0x115a66000 -        0x115a68fff  smb_nt.so (170.1) <B508FD03-CE31-3B93-91D7-440BEDAD9581> /usr/lib/sasl2/smb_nt.so
           0x115a6d000 -        0x115a6ffff  smb_ntlmv2.so (170.1) <938D40AF-BEB3-3F55-B409-C84E3C2886FD> /usr/lib/sasl2/smb_ntlmv2.so
           0x11611a000 -        0x11611aff6 +cl_kernels (???) <2F7A6D46-E7D1-473F-88AF-D79337614301> cl_kernels
           0x116120000 -        0x116121fe2 +cl_kernels (???) <61E6B6D6-2A2E-4CF0-8BF5-F1337427C6F8> cl_kernels
           0x11612a000 -        0x11612bff9 +cl_kernels (???) <631959F5-8590-4EEF-8839-546AD88CFE23> cl_kernels
           0x11613d000 -        0x11613dfe7 +cl_kernels (???) <3362B985-4C58-41FC-9D88-5A12F09590BA> cl_kernels
           0x116142000 -        0x116143fef +cl_kernels (???) <0CE4F291-DF4B-4C41-9F78-4B82F0AD3FEE> cl_kernels
           0x11614b000 -        0x11614bffd +cl_kernels (???) <53F40B9A-61A6-4779-B32F-7A6273CDE82D> cl_kernels
           0x11614f000 -        0x11614ffff +cl_kernels (???) <859328A3-27E3-4910-9C00-C37E6B944B52> cl_kernels
           0x1161e1000 -        0x1161e2fee +cl_kernels (???) <EC89AF23-8B67-4251-8CD9-37CBEE16E752> cl_kernels
           0x11644e000 -        0x116534fef  unorm8_bgra.dylib (2.3.58) <280D6FDD-8CA5-36EC-9EA1-D7DC09598E20> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x1165f9000 -        0x1166defe7  unorm8_argb.dylib (2.3.58) <7B4A2580-C169-3ABC-8F62-B766914C59DD> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
           0x116720000 -        0x116800ff7  unorm8_rgba.dylib (2.3.58) <8252DC3E-7434-34C6-B4B9-CFD59B923D12> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x116c6b000 -        0x116c6bfeb +cl_kernels (???) <E9C54640-61CA-4550-B708-95E427DD4A0E> cl_kernels
           0x116d70000 -        0x116d71fe4 +cl_kernels (???) <2C33F03C-8EC6-4468-86FA-DFF86930A4B4> cl_kernels
           0x116ddd000 -        0x116ddefe3 +cl_kernels (???) <5326C2B5-0810-4822-9248-FEA10AF8C60F> cl_kernels
           0x116eb0000 -        0x116eb0fe3 +cl_kernels (???) <A08B208F-058B-43B1-AE00-230E64EDC009> cl_kernels
           0x116ee9000 -        0x116eeaff0 +cl_kernels (???) <41ACDB97-728C-4BBF-8686-6419DB20F0A1> cl_kernels
           0x116f09000 -        0x116f0aff4 +cl_kernels (???) <ED0FF59F-48E9-429E-AB8C-5E21F7CF2F8C> cl_kernels
           0x117289000 -        0x117289fec +cl_kernels (???) <916BBE3D-D5EE-4F55-B89D-8C2526435531> cl_kernels
           0x117349000 -        0x11734afeb +cl_kernels (???) <DC3386B3-2BE2-4562-B58B-8E44454708C4> cl_kernels
           0x11734f000 -        0x117350ffa +cl_kernels (???) <D8B4DDBF-5F91-40DF-ABF6-52F312B1EE7A> cl_kernels
           0x117355000 -        0x117356fe6 +cl_kernels (???) <5A439907-2C3F-4CF3-8F43-52FA7E3E6B7C> cl_kernels
           0x11735a000 -        0x11735aff3 +cl_kernels (???) <B4759B96-32F6-4F1D-85DF-095E368B2431> cl_kernels
           0x117c3f000 -        0x117c43fff  com.apple.google.iaplugin (2.1 - 210) <28AA2815-EB62-347A-B7F6-8F06AB25EBAB> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x117ead000 -        0x117eafff7  com.apple.qq.iaplugin (1.1 - 110) <165AD1AD-7191-3A9B-A761-988DC0AB2114> /System/Library/InternetAccounts/QQ.iaplugin/Contents/MacOS/QQ
           0x117eb4000 -        0x117ebbfff  com.apple.twitter.iaplugin (1.1 - 110) <93EBF687-26AC-3296-938D-61E07B438599> /System/Library/InternetAccounts/TwitterPlugin.iaplugin/Contents/MacOS/TwitterP lugin
           0x117ec4000 -        0x117ef9fff  com.apple.sociald.Social (87 - 87) <25F8FA83-E8DB-3082-93AC-0868A7B46607> /System/Library/Frameworks/Social.framework/Versions/A/Social
           0x117f35000 -        0x117f80ff7  com.apple.accounts.AccountsDaemon (113 - 113) <248F6C14-DDEA-3E8F-B016-E760E9B1E599> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
           0x117faf000 -        0x117fb7ff7  com.apple.xpcobjects (103 - 103) <268F4950-61A2-3A14-9697-C121E1798D18> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
           0x117fc9000 -        0x117fcefff  com.apple.tencentweibo.iaplugin (1.1 - 110) <E81524DB-B266-3056-A69E-94B4F86B58CB> /System/Library/InternetAccounts/TencentWeibo.iaplugin/Contents/MacOS/TencentWe ibo
           0x117fd5000 -        0x117fdafff  com.apple.osxserver.iaplugin (2.1 - 210) <0EE1331E-8734-3A26-9B93-3CE35D61CA74> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
           0x117fe2000 -        0x117fe3ffe  libACSClient.dylib (65) <B068CA41-5A0E-31F9-AFB3-6194620B983D> /usr/lib/libACSClient.dylib
           0x117fe8000 -        0x117febff7  com.apple.yahoo.iaplugin (2.1 - 210) <AA361E32-4E61-30BE-BFB5-57D97C93DAA6> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
           0x117ff1000 -        0x117ff9fff  com.apple.facebook.iaplugin (1.1 - 110) <CDE70454-4A46-387C-8EBD-D9566359E558> /System/Library/InternetAccounts/Facebook.iaplugin/Contents/MacOS/Facebook
           0x118003000 -        0x118005ff7  com.apple.126.iaplugin (1.1 - 110) <6C8CD06A-0779-3D6E-A0C4-21C298557074> /System/Library/InternetAccounts/126.iaplugin/Contents/MacOS/126
           0x11800a000 -        0x118010fff  com.apple.tudou.iaplugin (1.1 - 110) <73468E5A-3303-3110-8660-E46CF3E92F89> /System/Library/InternetAccounts/Tudou.iaplugin/Contents/MacOS/Tudou
           0x118019000 -        0x118023ff7  com.apple.flickr.iaplugin (1.1 - 110) <B178A6C4-369F-3A5C-95A8-96EEDD58DCA6> /System/Library/InternetAccounts/Flickr.iaplugin/Contents/MacOS/Flickr
           0x11802e000 -        0x118030ff7  com.apple.aol.iaplugin (2.1 - 210) <45BC8C0E-A0CF-3695-B612-9ACDA2C98A42> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x118035000 -        0x11803bfff  com.apple.vimeo.iaplugin (1.1 - 110) <FD922DDC-6D4A-3B76-9AB2-489C532241EA> /System/Library/InternetAccounts/Vimeo.iaplugin/Contents/MacOS/Vimeo
           0x118044000 -        0x118046ff7  com.apple.163.iaplugin (1.1 - 110) <2B71CC0B-6C16-399E-9758-D1E2A0A689C5> /System/Library/InternetAccounts/163.iaplugin/Contents/MacOS/163
           0x11804b000 -        0x118051ff7  com.apple.youku.iaplugin (1.1 - 110) <C8ED7EFB-F2D9-376B-95DE-7725466F8986> /System/Library/InternetAccounts/Youku.iaplugin/Contents/MacOS/Youku
           0x11805a000 -        0x118079ff7  com.apple.icloud.iaplugin (426 - 460) <F6012E71-1AC7-3B16-81AB-AA5FDC55D8F9> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x118091000 -        0x118117fff  com.apple.AOSUI (1.2 - 273) <92D761D5-1ABC-3A29-9306-018570EF6005> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x118187000 -        0x11818ffff  com.apple.exchange.iaplugin (2.1 - 210) <37CA9806-DE80-3399-8B36-179AB6455B3F> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x118199000 -        0x1181a1fff  com.apple.linkedin.iaplugin (1.1 - 110) <B0EF0D29-E605-36F0-9CEA-70AF9BCF28CA> /System/Library/InternetAccounts/LinkedIn.iaplugin/Contents/MacOS/LinkedIn
           0x1181ab000 -        0x1181b1ff7  com.apple.weibo.iaplugin (1.1 - 110) <C405B6A9-FF5B-3044-9E84-3C5C00622711> /System/Library/InternetAccounts/Weibo.iaplugin/Contents/MacOS/Weibo
           0x11864a000 -        0x11864bfe6 +cl_kernels (???) <C069D7B4-EABD-4446-8DDA-98E3E4F57024> cl_kernels
           0x118924000 -        0x11892cfff  com.apple.contacts.iaplugin (8.0 - 1371.2) <3264DC1C-2056-3741-9B7E-D28275D17751> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x11b8c8000 -        0x11b914ff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <15AC9317-8E7D-3DC3-A68F-89C546648E25> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
        0x7fff665c0000 -     0x7fff665f3817  dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
        0x7fff83749000 -     0x7fff8374aff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8374b000 -     0x7fff837baff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff837bb000 -     0x7fff837c6fff  libkxld.dylib (2422.115.4) <3C678B75-F7C5-3DBB-8DBD-48483AD54D5C> /usr/lib/system/libkxld.dylib
        0x7fff837c7000 -     0x7fff837f6ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff837f7000 -     0x7fff837f9fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff837fa000 -     0x7fff837fafff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff837fb000 -     0x7fff83805ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff83806000 -     0x7fff8383bffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff83855000 -     0x7fff8385afff  com.apple.NetFSServer (2.0 - 1) <9B7BAA23-4D4D-30A2-8538-DFD3B1E347A6> /System/Library/PrivateFrameworks/NetFSServer.framework/Versions/A/NetFSServer
        0x7fff8385b000 -     0x7fff83c3cffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff83c3d000 -     0x7fff83df5ffb  libicucore.A.dylib (511.35) <6F097DA7-147C-32A1-93D2-728A64CF0DC2> /usr/lib/libicucore.A.dylib
        0x7fff83df6000 -     0x7fff83e0fff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83e10000 -     0x7fff83e34ff7  libJPEG.dylib (1044) <BE0ED4E1-F7FC-3038-86D3-0456DD173FCB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff83ecc000 -     0x7fff83f1dff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83f1e000 -     0x7fff83f27ff7  com.apple.MailService (7.3 - 1878.6) <9D8CEFF2-6ABD-3654-B70D-D878BB61EBD3> /System/Library/PrivateFrameworks/MailService.framework/Versions/A/MailService
        0x7fff83f28000 -     0x7fff83f28ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff83f29000 -     0x7fff83f29fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff83f2a000 -     0x7fff83f2bffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff83f54000 -     0x7fff83fb1fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff83fb2000 -     0x7fff84083ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <DCCAADEC-35D5-3968-8B39-358ACC56ADC4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8408b000 -     0x7fff840c7ff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff840c8000 -     0x7fff840f8fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff840f9000 -     0x7fff84103ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff84104000 -     0x7fff8414dfff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8414e000 -     0x7fff84183ffb  com.apple.datadetectors (5.0 - 246.0) <1C4C33FE-F364-3DBA-A1BC-4A53E594CFD3> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff84184000 -     0x7fff84184fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <6FD70177-7044-3EFE-905F-08F1D2D40ECA> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff84185000 -     0x7fff84273fff  libJP2.dylib (1044) <BE5FF765-5ECE-38B5-BF5D-BE806F5CAD18> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff84279000 -     0x7fff84294ff7  libPng.dylib (1044) <151BA92C-6E7C-3B69-8024-FDD1E2C89DD3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff84295000 -     0x7fff84295ff7  com.apple.frameworks.SleepServices (1.1 - 1.1) <4D9C44FF-5403-3372-A90E-CBF2A34D7CE7> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
        0x7fff84296000 -     0x7fff84346ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff84396000 -     0x7fff843d6fff  com.apple.PassKit (1.0 - 1) <CE4A0FC6-6E65-38AC-BC8E-74821D713B43> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
        0x7fff843d7000 -     0x7fff843d7ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff843d8000 -     0x7fff843dcff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff843dd000 -     0x7fff8442efff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8442f000 -     0x7fff84447ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff84448000 -     0x7fff844bffff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff844c0000 -     0x7fff84520fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff84521000 -     0x7fff84525fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff84526000 -     0x7fff84535ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff84536000 -     0x7fff84537fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff84538000 -     0x7fff8457efff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8457f000 -     0x7fff8460bff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8460c000 -     0x7fff8460ffff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff84610000 -     0x7fff84618ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff84619000 -     0x7fff84619fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff84659000 -     0x7fff84743fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff84744000 -     0x7fff84c67fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff84c68000 -     0x7fff84c7fffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff84c80000 -     0x7fff84ce5ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff84ce6000 -     0x7fff84d12ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff84d13000 -     0x7fff84d1fff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff84d20000 -     0x7fff84d32ff7  com.apple.MultitouchSupport.framework (245.13.1 - 245.13.1) <38262B92-C63F-35A0-997D-AD2EBF2F8338> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff84dc0000 -     0x7fff84f30ff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff84f31000 -     0x7fff84f3affb  libsystem_notify.dylib (121.20.1) <9B34B4FE-F5AD-3F09-A5F0-46AFF3571323> /usr/lib/system/libsystem_notify.dylib
        0x7fff84f3b000 -     0x7fff84f7bff7  com.apple.CalDAV (7.0 - 155.2) <B96DAB4A-7431-3FD2-971B-726A67F6E004> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff84f7c000 -     0x7fff84f7cfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff84f7d000 -     0x7fff84fbefff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff84fc5000 -     0x7fff8508fff7  com.apple.LaunchServices (572.28 - 572.28) <FC72C089-A069-3374-B80A-E041AF149F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff85090000 -     0x7fff852f4ffd  com.apple.security (7.0 - 55471.14.18) <83A9E8C8-06A1-3F6D-8514-C35CD0DBD370> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff852f5000 -     0x7fff85311ff7  libsystem_kernel.dylib (2422.115.4) <9EDE872E-2A9E-3A78-8E1D-AB790794A098> /usr/lib/system/libsystem_kernel.dylib
        0x7fff85bd6000 -     0x7fff85c25ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff85c61000 -     0x7fff85ccdfff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85d0d000 -     0x7fff85d21fff  com.apple.aps.framework (4.0 - 4.0) <2D42DCDD-055E-3EE1-97F8-FC447B495D3E> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8647f000 -     0x7fff86482ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff86516000 -     0x7fff865e1fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff865e2000 -     0x7fff865e5fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff865e6000 -     0x7fff8682eff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8682f000 -     0x7fff86830fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff86831000 -     0x7fff86836fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff86837000 -     0x7fff8683afff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff86bd4000 -     0x7fff86db9fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86e3f000 -     0x7fff86e5cff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff86e6d000 -     0x7fff86e7ffff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86e80000 -     0x7fff87114ff7  com.apple.RawCamera.bundle (5.07 - 760) <EA94F148-975D-32D7-8A20-B06017E5793B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff87115000 -     0x7fff87131fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff87132000 -     0x7fff87160ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff87161000 -     0x7fff872fdff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff872fe000 -     0x7fff87307ff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff87308000 -     0x7fff87322fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff87323000 -     0x7fff87325fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff87347000 -     0x7fff87349ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8734a000 -     0x7fff8761bff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8761c000 -     0x7fff8761cffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8761d000 -     0x7fff87624ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
        0x7fff87625000 -     0x7fff8764eff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8764f000 -     0x7fff87658fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff87659000 -     0x7fff87788fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff87789000 -     0x7fff877a2ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff877a5000 -     0x7fff877afff7  libcsfde.dylib (380.70.2) <3ACB87D7-A81C-3C45-B648-AD27F1B9D841> /usr/lib/libcsfde.dylib
        0x7fff877b0000 -     0x7fff87a41ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff87a42000 -     0x7fff87a4bffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff87a4c000 -     0x7fff87a4efff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff87a95000 -     0x7fff87a95fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff87a96000 -     0x7fff87a9eff3  libCGCMS.A.dylib (599.35.4) <67AD122A-B8DA-3C05-8B8C-1939F5064FAE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff87a9f000 -     0x7fff87aa4fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff87aa5000 -     0x7fff87addff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff87ade000 -     0x7fff87ae9ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <22A0C230-CF1E-38F5-A947-5ACDAEEE0DB6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff87aea000 -     0x7fff87b87fff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff87bf4000 -     0x7fff87bf8fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87bf9000 -     0x7fff87c14ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff87c15000 -     0x7fff87d06ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff87d07000 -     0x7fff87d30fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8810d000 -     0x7fff88139fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8813a000 -     0x7fff881c3ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff881c4000 -     0x7fff881c5ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff881c6000 -     0x7fff88297fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff88298000 -     0x7fff8829cfff  com.apple.FindMyMac (2.1 - 2.1) <57D589E9-B726-3519-BE99-1B38F7737ED6> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8829d000 -     0x7fff8845bfff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8845c000 -     0x7fff8845eff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8845f000 -     0x7fff8846afff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8846b000 -     0x7fff884b3ff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff884b4000 -     0x7fff884e5ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff884e6000 -     0x7fff884e8ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff884eb000 -     0x7fff8850ffff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8858f000 -     0x7fff88592fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff88593000 -     0x7fff885b7fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff885b8000 -     0x7fff885dafff  com.apple.framework.fa

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take an action that isn't working the way you expect. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • File BPM Webservice IDOC .........Error in BPM workflow(Sync send step)

    Hi all,
                      I have the same type scenario that is file initiates the bpm that invokes the Webservice.the file data goes into bpm as the input data of the webservice and webservice gives the response and then the web-service response is mapped to
    idoc and finally posted to R/3.
    The interface sI created:
    1.outbound Async  -
    >for file
    2. Abstract async----
    >bpm reciever step.
    3.Abstract sync----
    >bpm sync send step.
    4.inbound sync -
    >for the webservice to recieve the reqst and to send the response to Abstract sync
    5.Abstract async----
    >to send the data out of BPM
    6.inbound async----
    for idoc
    created 3 communication channel.
    1.file adapter: sender
    2.SOAP adapter: Recv
    3.IDOC adapter: Recv
    created 3 reciever determination
    Business process instance in ID
    reciever agreement(2)
    interface determaination
    But getting a problem in BPM.
    I think the scenario is logically correct as I have seen previous
    SDN suggestions.
    But getting the problem in BPM's sync step.and the SOAP rec channel is also inactive.in BPM workflow I can see the recv step is getting file req data but after that in the sync send step
    its stuck up.getting error.
    Please sir suggest me.

    Remove the interface you created for Idoc that is inbound async one. use the imported Idoc itself as the interface and also as the message type. Everything else looks good though i did not really evaluate ur ID configuration..
    VJ

  • Having problem with gmail smtp server.  Since going to google 2-step, and entering 16-digit code in gmail account, I can receive mail on my iMac, but cannot send.  What do I do?

    Having problem with gmail smtp outgoing server.  Since going to google 2-step, and entering 16-digit code in gmail account, I can receive mail on my iMac, but cannot send.  I keep getting an error message that Mail "Cannot send message using Gmail (my assigned name) server."  What do I do?

    Confirm you did this: https://support.google.com/mail/answer/1173270?hl=en
    You might also try removing all gmail passwords from your keychain in Keychain Access. Then connect again and enter the password code given by Google.

  • Error Handling in BPM - Send Step

    Hello,
    I would like to implement the following two error handlers using BPM:
    1. There is a send step which sends a message to an HTTP receiver. If the HTTP server is down I would like to add 3 retries and just in case after the third retry fails there should be an error Email sent. So I am wondering whether a communication error (which happens in the HTTP receiver communication channel) is delivered back to the process engine so that it can be handled using BPM.
    2. I also need to apply a validation using XML schema. So if validation fails the error should also be returned to the process engine so that it can be handled in the integration process.
    Are those two requirement possible as described (returning communication and validation errors)? Or do I have to follow another approach?
    Thank you very much!

    Hi Florian,
    >>2. When I activate transport acknowledgement and there is an error in XML validation outbound channel request I get an system error acknowledgement back however the error branch is NOT taken either!
    Correct send step using transport acknowledgment will check whether the message was transmitted or not
    Check this link http://help.sap.com/saphelp_nw04s/helpdata/EN/43/65ce41ae343e2be10000000a1553f6/content.htm
    >>3. And NOW it gets interesting: When I simulate step 2 again an cancel the error message afterwards then the error branch is taken! Not very useful in my opinion if error messages have to be canceled first. The error branch seems to be pretty useless for me in case of asynchronous send steps.
    Again when you cancelled the message it was not received successfully by the receiver system and hence it raised exception (as mentioned in the Exception of send step.)
    I will suggest you to try using Application Acknowledgment in send step. Also If you provide the steps of BPM then it will be more helpful.
    Also have a look at this :
    Asynchronous send step can raise exception only when
    1. Thrown when a permanent system error occurs:
    a. In the case of an asynchronous send step, the exception will only be triggered if an error occurs during the transfer to the pipeline. Errors that occur during mapping in the pipeline, do not trigger an exception.
    b . In the case of a synchronous send step, the exception is also triggered by permanent system errors that occur in the pipeline or while transporting the message to or from the pipeline.
    Regards
    Suraj
    Edited by: S.R.Suraj on Sep 8, 2009 6:41 AM

  • BPM error at send step

    hi experts,
    In a simple File to File using BPM Scenario, messages are processed up to send step (only 2 steps are there recv and send). The receive side is okay. i can monitor the messages that are being picked up in the monitor. In adapter both sender and receiver adapters are showing green.
    How to trouble shoot inside BPM errors; i tried SXMB_MONI -> selected PE from the message -> chose graphical description, where it shows red and an error in the send step.
    the SXMB_MONI shows error in outbound message side.  and the pipeline stops at Call Adapter.
    thanks in advance,
    nikhil
    Happy 2008

    hi Farooq!!
    Others are working.
    see, this is a simple scenario File BPM File and it uses simple message type and interface too. The interface mapping working fine. The Integration Process uses no correlations, just transferring the file as it is. IP is checked(F7) no errors found. when running, it picking the file and upto call Adapter it is working. in the SXMB_Moni it shows error in the outbound (PE) status. When we check it in the WorkFlow diagram, it shows error in the send step as Adapter Framework Server, still other scenarios are working fine with the BPM.
    please leave good suggestions and checks
    thanks,
    nikhil

  • Synchronous Send step showing errors in process designer

    Hi All,
    I have few questions in using a synchronous send step in
    BPM.
    Can I use a synchronous send step without opening Sync/async bridge.
    When is the sync/async bridge opened?
    Scenario:
    File async --> XI (receive async) --> sync send step to J2ee application (HTTP post) --> async response send to File
    Sync Abstract Interface:
    Input:
      Message type (same as outbound)
    Response:
    Message type (same as Http response)
    When I use the synchronous step, I see errors in the process designer saying
    Message to be sent and synchronous interface are not of the same type.  This happens for both request and response message.
    Please help me.
    Regards,
    Meher

    I think the Problem is with the INTERFACE Determination.
    You need a BPM for the above scenario, but not a Sync/Asynch Brindge
    In BPM
    Step 1 : Receive from File 1
    Step 2 : Do Transformation from File1 format to J2EE Request Format
    Step 3 :  Send a Synchronous send Step to J2EE
    Step 4 :  Transform the HTTP response to your File2 Format Response
    Step 5 :   Send the Response to File2
    Interface Determination
    File1 to j2ee Request
    J2ee Request/Response To  J2EE Request/Response
    J2ee Response to file 2
    Please check your Interface determination very closely.

  • IDOC send step not running with exception in BPM?

    Hello,
    hope this is a simple question, but we are running with a problem here which is not answered well in SAP help or sdn. Possibly I didn´t find the right blog.
    Situation:
    We created a BPM with a send step (IDOC receiver) in a block (after a receive step starting the BPM) (That´s simple so far!).
    The send step (async IDOC) in the block is connected in its attributes in field "system error" to an exception branch defined in the same block.
    In this except.branch the process should send back to sender system a message via RFC and the last step in this exception branch is to interrupt the proces.
    But now we tried to do a test. In this test we modified the receiver address of the send step (IDOC reciver) so that the receiver could not be reached, which results in a system error in SXMB_MONI (Service unavailable).
    But this doesn´t work. The BPM starts the send step to the unavailable receiver, SXMB_MONI shows a system error step, but then the BPM continues with the next step after the block without starting the exception branch.
    Any idea why the exception branch is not called?
    Best regards
    Dirk

    Hello again,
    we are one step further now.
    We did the same with an RFC instead of the IDOC send step.
    Same result:
    The service is not reachable. So the step results in an system error.
    But as we could see in the monitoring SXMB_MONI the block with the exception and this send step (RFC) is passed before the step gives back this error!
    So it looks like connection problems do not trigger an exception?
    Any help is welcome!
    Best regards
    Dirk

  • To send the error messages of an BAPI as an attachment in mail

    Hi all,
    I am running the BAPI_EXCHRATE_CREATEMULTIPLE to update the transaction OB08..I am able to do that.What i want now is that if there are error messages in the BAPIRET2 table then i collect these messages in a table and send these records as an attchment in the mail..
    I am using the FM   'SO_NEW_DOCUMENT_ATT_SEND_API1' to send the mail..
    Plz suggest how i should proceed..
    A sample code will be useful..
    <b><REMOVED BY MODERATOR></b>
    Thanks..
    Arun
    Message was edited by:
            Alvaro Tejada Galindo

    You should use the OO approach to sending email out of SAP.  There are several bcs_example* programs in the system.
    REPORT bcs_example_1.
    * This example shows how to send
    *   - a simple text provided in an internal table of text lines
    *   - to some internet email address.
    * All activities done via facade CL_BCS!
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: text               TYPE bcsy_text.
    DATA: document           TYPE REF TO cl_document_bcs.
    DATA: sender             TYPE REF TO cl_sapuser_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    DATA: bcs_exception      TYPE REF TO cx_bcs.
    DATA: sent_to_all        TYPE os_boolean.
    START-OF-SELECTION.
      PERFORM main.
    *       FORM main                                                     *
    FORM main.
      TRY.
    *     -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document -------------------------------
    *     create document from internal table with text
          APPEND 'Hello world!' TO text.
          document = cl_document_bcs=>create_document(
                          i_type    = 'RAW'
                          i_text    = text
                          i_length  = '12'
                          i_subject = 'test created by BCS_EXAMPLE_1' ).
    *     add document to send request
          CALL METHOD send_request->set_document( document ).
    *     --------- set sender -------------------------------------------
    *     note: this is necessary only if you want to set the sender
    *           different from actual user (SY-UNAME). Otherwise sender is
    *           set automatically with actual user.
          sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    *     --------- add recipient (e-mail address) -----------------------
    *     create recipient - please replace e-mail address !!!
          recipient = cl_cam_address_bcs=>create_internet_address(
                                            '[email protected]' ).
    *     add recipient with its respective attributes to send request
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient = recipient
              i_express   = 'X'.
    *     ---------- send document ---------------------------------------
          CALL METHOD send_request->send(
            EXPORTING
              i_with_error_screen = 'X'
            RECEIVING
              result              = sent_to_all ).
          IF sent_to_all = 'X'.
            WRITE text-003.
          ENDIF.
          COMMIT WORK.
    * *                     exception handling
    * * replace this very rudimentary exception handling
    * * with your own one !!!
        CATCH cx_bcs INTO bcs_exception.
          WRITE: text-001.
          WRITE: text-002, bcs_exception->error_type.
          EXIT.
      ENDTRY.
    ENDFORM.                    "main

  • BPM Error: Synchronous Send Step

    Hi All,
      I am getting the below error in the synchronous send step of my BPM.
    Interface urn:Haworthinc.com:India_Tax SIAA_IndiaTax_DBSelect_TICUSEXT has multiple operations
    I am trying to send a query and get data from a table in this step. I have an abstract synchronous interface attached to this step and I have an inbound synchronous interface at the configuration side as the receiver for the BPM sync. interface.
    The errored out interface is the abstract interface used as the response message at the BPM sync step.
    Does anyone has encountered this before?
    additional error info)(
    Work item 000000364714: Object CL_SWF_XI_MSG_BROKER method SEND_SYNCHRON cannot be executed
    Message no. WL821
    Diagnosis
    The calling of the object method for the work item ended with a return value for which no handling is modeled in the workflow.
    System Response
    The work item was forced into the error status.
    Procedure
    Refer to your workflow system administrator.
    Procedure for System Administration
    Also check the binding between the task container and the method container.
    Appreciate your help!
    Regards,
    Shiny

    Hi,
    e urn:Haworthinc.com:India_Tax SIAA_IndiaTax_DBSelect_TICUSEXT has multiple operations
    Are u using 7.1 versin of PI, if so can u check if u r consistently using operation name in interface
    Babu

Maybe you are looking for

  • How to add chapters to exported Apple TV movies

    (The process works with QuickTime 7.4 and Final Cut Express 4.0) To add chapters to movies exported from FCE using the "Apple TV" preset in the Export menu: In a text editor, like TextEdit in the Applications folder, type your list of chapters. Make

  • My 3 kids have itouches, i have an iphone 4 and an ipad.  i just lost all my notes on my ipad and iphone.  i synced both to my mac but i can't find them anywhere...advice?

    i synced both to my mac to see if they would come back and they do not.  i looked at other forums and most of the people that had success getting them back used gmail.  I do not.  My email is verizon.  The only notes that were on there before the syn

  • Reinstalling AD Directory Sync

    I started seeing a lot of sync errors in on my ADFS server with Directory Sync installed. At first I thought it was due to an expired password, which I reset. However, when I went to update the credentials in the Sync Tool, it was throwing errors (ar

  • Installing PShop on New MBP

    Just received my new MacBook Pro yesterday. I need to install PhotoShop, etc. Here's the problem: My initial purchase of P-Shop is 5.5 (OS 9). Since then I have continually upgraded thru CS2. I cannot install from the upgrades and the MBP will not ac

  • Flickering text print applet

    my news applet scrolls text across the screen, the text however is flickering. my draw code is below.           screen2D.clearRect(0,0,getSize().width,getSize().height); screen2D.drawString(obj.news[obj.currentItem],obj.x,obj.y);           repaint();