Ebs User names for Org Ids

Hello All,
I wanna know which user belongs to what Organization_id. So, I used 2 tables PER_ORGANIZATION_LIST & FND_USER, which have common column user_id.
But, my PER_ORGANIZATION_LIST table doesn't have data for USER_ID column. Now, what is other way round to find out the users?? Please suggest me.
Regards,

Hi,
Check the value of "MO: Operating Unit" profile option to determine the default organization unit.
You can use the script in the following document to list the profile option value at all levels.
Note: 803587.1 - Script To List The Values Of A Profile Option At All Levels
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=803587.1
If you want to get the organization name for each user/employee, try this query:
SQL> SELECT DISTINCT EMPLOYEE_NUMBER, FULL_NAME, U.USER_NAME, D.NAME ORGANIZATION_NAME
FROM APPS.PER_PEOPLE_F A, APPS.PER_ASSIGNMENTS_F C, APPS.HR_ALL_ORGANIZATION_UNITS D, APPS.FND_USER U
WHERE A.PERSON_ID = C.PERSON_ID
AND A.PERSON_ID = U.EMPLOYEE_ID (+)
AND C.ORGANIZATION_ID = D.ORGANIZATION_ID
AND SYSDATE BETWEEN A.EFFECTIVE_START_DATE AND A.EFFECTIVE_END_DATE
AND SYSDATE BETWEEN C.EFFECTIVE_START_DATE AND C.EFFECTIVE_END_DATE
AND U.END_DATE IS NULL
ORDER BY 1;Regards,
Hussein

Similar Messages

  • I do NOT want Firefox to remember my sign-on user name for my e-mail account. How can I get rid of this?

    When I start typing my user name for hotmail, it automatically pops up. I do NOT want this. How do I get rid of it?

    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    *https://support.mozilla.com/kb/make-firefox-remember-usernames-and-passwords
    * https://support.mozilla.com/kb/Form+autocomplete

  • Get User Names and Mail Ids present in Exchange Server

    Hello All,
    Can we get all the names and mail ids present in the exchange Server global address book?
    I tried one example but it is giving error.
    Exception in thread "main" javax.naming.CommunicationException: [LDAP: error
                code 2 - Protocol Error]; remaining name 's=satheesh'
    Code is given below:
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://mailserver:389");
    DirContext ctx = new InitialDirContext(env);
    Attributes answer = ctx.getAttributes("s=satheesh");
    Any example code to get user names and mail ids will be helpful.
    Thanks in advance.
    Regards,
    Satheesh A
    [email protected]

    Hi Satheesh,
    I am new to LDAP. I am facing the exact same problem as you mentioned. Did you solve your problem?
    Thanks for any help you can provide.
    Hello All,
    Can we get all the names and mail ids present in the
    exchange Server global address book?
    I tried one example but it is giving error.
    Exception in thread "main"
    read "main" javax.naming.CommunicationException:
    [LDAP: error
    code 2 - Protocol Error]; remaining name
    aining name 's=satheesh'
    Code is given below:
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL,
    "ldap://mailserver:389");
    DirContext ctx = new InitialDirContext(env);
    Attributes answer = ctx.getAttributes("s=satheesh");
    Any example code to get user names and mail ids will
    be helpful.
    Thanks in advance.
    Regards,
    Satheesh A
    [email protected]

  • JOB_OPEN - SUBMIT - JOB_CLOSE - User Name for the Job

    Hi,
    I have a code like that:
    CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = lv_jobname
        IMPORTING
          jobcount         = lv_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
    * Call Update PO from Sales Order
      SUBMIT zpcc_mm_upo3
        WITH p_vbeln = puv_vbeln
        USER lc_uname
        VIA JOB lv_jobname NUMBER lv_jobcount
        AND RETURN.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = lv_jobcount
          jobname              = lv_jobname
          strtimmed            = lc_true
        EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          OTHERS               = 8.
    In this code as you see I can run the SUBMIT program with a specified user. But the creator of the job always becomes SY-UNAME. So is there a way to specify the user name for a job creator? I don't want to use SY-UNAME.
    Thanks,

    Hio try this way...
    CALL FUNCTION 'JOB_OPEN'
         EXPORTING
           jobname          = lv_jobname
         IMPORTING
           jobcount         = lv_jobcount
         EXCEPTIONS
           cant_create_job  = 1
           invalid_job_data = 2
           jobname_missing  = 3
           OTHERS           = 4.
    "Comment this
    * Call Update PO from Sales Order
       SUBMIT zpcc_mm_upo3
         WITH p_vbeln = puv_vbeln
         USER lc_uname
         VIA JOB lv_jobname NUMBER lv_jobcount
         AND RETURN.
    "Comment end
    * Call function to submit the job
      CALL FUNCTION 'JOB_SUBMIT'
           EXPORTING
                authcknam                   = wa_authchknam        "Pass the Other User name you want
                jobcount                    =  lv_jobcount
                jobname                     = lv_jobname
                REPORT                      = 'zpcc_mm_upo3'
                VARIANT                     = jobs-variant  "Create Varaqint
                PRIPARAMS                   = wa_PRI_PARAMS
          EXCEPTIONS
               BAD_PRIPARAMS               = 1
               BAD_XPGFLAGS                = 2
               INVALID_JOBDATA             = 3
               JOBNAME_MISSING             = 4
               JOB_NOTEX                   = 5
               JOB_SUBMIT_FAILED           = 6
               LOCK_FAILED                 = 7
               PROGRAM_MISSING             = 8
               PROG_ABAP_AND_EXTPG_SET     = 9
               OTHERS                      = 10
       CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
           jobcount             = lv_jobcount
           jobname              = lv_jobname
           strtimmed            = lc_true
         EXCEPTIONS
           cant_start_immediate = 1
           invalid_startdate    = 2
           jobname_missing      = 3
           job_close_failed     = 4
           job_nosteps          = 5
           job_notex            = 6
           lock_failed          = 7
           OTHERS               = 8.
    Prabhudas

  • Using a single user name for RADIUS

    I have a WLAN with 5 1200 Series AP (A/G) configured for Fast Roaming using the Cisco supplied documentation. Can I use one user name for all of my devices to connect to the Internal Radius Server? This would be similar to having a passphrase for WPA. Thank you for taking the time to read my post.

    Chris:
    I understood you have autonoomus/standalone APs wiht WDS (Wireless Domain Server) configured for FSR. right?
    You can use same username from multiple devices if your Radius does not prohipit more than one session per username.
    Make sure that your RADIUS server allows multiple sessions for the user you want to use and it should work.
    Note please that using same username with multuple users is not the same of using PSK (talking from security perspective). using 802.1x is usually more secure.
    HTH
    Amjad

  • Is there any query to know the multiple users name from their ids?

    is there any query to know the multiple users name from their ids?

    Hi,
    Goto TCode SUIM  Select Users  Select Users by Address Data
    It will give you the users list
    Regards,
    Sankaran

  • Cant Get Mail error message because password or user name for iCloud is incorrect.  Ive gone and tried to change it and been successful -I think- but am still getting this message continually.

    I keep receiving an error message: "Can't Get Mail" because the  "password or user name for iCloud is incorrect". Ive gone and tried to change the password and been successful -I think- but am still getting this message continually.

    To reset your Google password
    https://www.google.com/accounts/recovery/?ard=AHwGkRmuwaiAewp9JAmQTmcye_kbUor9v4 iKaP0sQVuYYOlYgTdGmUFl2Z_KkETd7Jjh1GqzGS4BBOQvbURZwzUTEViJmKtt4DfEyx6T2yfVxXT72X gwXT2dP7PfeGI08YvGtutrlCBol7hOXTQt7Wd9lZ6NVdxhjA
    If problem with link, just Google for reset gmail password

  • Changing User Name for an Exchange Mailbox

    Does anyone know how to edit the username information when viewing "Preferences" >> "Accounts" under iMail?  I need to add the @xxx.com to the end of the user name and cannot figure out how to change it.

    Yes, this is the worst OS release ever..
    I have no clue why Apple is making that field greyed out. On all the other releases, its always setup with the wrong "username" but at least you can change it. Not sure why Apple greyed this field out.
    ANyways, here is how you can change it, but just to let you know, as soon as i change it, launch mail, when i click on the inbox, mail will crash (Crash log below)
    but, here is how you can try it.
    1. Close mail
    2. Go to ~/library/Mail/V2/Maildata
    3. Edit Accounts.plist and find your account for the exchange
    Look for the below
    <key>Username</key>
      <string>davidpetree</string>
      <key>uniqueId</key>
    So, just add the @domain.com (after the name)
    so example, mine would be
    <key>Username</key>
      <string>[email protected]</string>
      <key>uniqueId</key>
    Anyways, Save that and reopen mail. It should connect (unless you run into the same crash bullcrap as mine)
    Process:               Mail [2209]
    Path:                  /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:            com.apple.mail
    Version:               8.0 (1990.1)
    Build Info:            Mail-1990001000000000~3
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Mail [2209]
    User ID:               501
    Date/Time:             2014-10-19 12:48:27.224 -0500
    OS Version:            Mac OS X 10.10 (14A389)
    Report Version:        11
    Anonymous UUID:        FF7E0DD4-0EAC-2312-CD8A-18578C8BBEB5
    Sleep/Wake UUID:       69D58CAC-648C-4F35-BF47-E01FF1E1047D
    Time Awake Since Boot: 13000 seconds
    Time Since Wake:       5900 seconds
    Crashed Thread:        2  Dispatch queue: MFEWSAccountRequestResponseQueue :: NSOperation 0x618000481630 (QOS: LEGACY)
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Root Folder Id changed from AAMkADAxNDVlNGJhLTc2ZTUtNGZhYS05NGUzLWZlZDMzZTgxZDQyZgAuAAAAAAC+1xFQ/J+NT48d034 ueS5xAQBbm4TKEUzoT5Xhi4iisjzwAAAAbeztAAA= to AAMkADIyZWM0Mjc2LTNjNzAtNDI4OC1iMWUxLTdhNTQ5NWU0NWU2YQAuAAAAAADxETICcwsOQaIIJQp RNPUIAQBg4pVxwsbVSo2CkIszS55bAAAAtDjzAAA=: once an account is created, the root folder id shouldn't change on the server'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff9493864c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff99e216de objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff9493842a +[NSException raise:format:arguments:] + 106
    3   Foundation                          0x00007fff92f7f5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
    4   Mail                                0x00007fff91868e01 -[MFEWSAccount setRootFolderId:] + 316
    5   Mail                                0x00007fff9186f9a9 -[MFEWSConnection _connectAndAuthenticateDiscoveringBestSettings:] + 2194
    6   Mail                                0x00007fff9186ebf4 -[MFEWSConnection connectDiscoveringBestSettings:] + 87
    7   Mail                                0x00007fff91864f0e -[MFEWSAccount connectAndAuthenticate:] + 449
    8   Mail                                0x00007fff91864ced -[MFEWSAccount authenticatedConnection] + 393
    9   Mail                                0x00007fff91880699 -[MFEWSGateway connection] + 64
    10  Mail                                0x00007fff9187dc3d -[MFEWSGateway sendMessage:forRequest:] + 82
    11  Mail                                0x00007fff918993a7 -[MFEWSRequestOperation executeOperation] + 178
    12  MailCore                            0x00007fff9430b54e -[MCMonitoredOperation main] + 234
    13  Foundation                          0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    14  Foundation                          0x00007fff92e941a3 __NSOQSchedule_f + 184
    15  libdispatch.dylib                   0x00007fff93b97c13 _dispatch_client_callout + 8
    16  libdispatch.dylib                   0x00007fff93b9b365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib                   0x00007fff93b9cecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib                   0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib                   0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib             0x00007fff99d8e6cb _pthread_wqthread + 729
    21  libsystem_pthread.dylib             0x00007fff99d8c4a1 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff99da652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff99da569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94848b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94847fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94847838 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff9039343f RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff903931ba ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff90392ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit               0x00007fff9a026821 _DPSNextEvent + 964
    9   com.apple.AppKit               0x00007fff9a025fd0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.AppKit               0x00007fff9a019f73 -[NSApplication run] + 594
    11  com.apple.AppKit               0x00007fff9a005424 NSApplicationMain + 1832
    12  libdyld.dylib                 0x00007fff9671c5c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff99dac22e kevent64 + 10
    1   libdispatch.dylib             0x00007fff93b9aa6a _dispatch_mgr_thread + 52
    Thread 2 Crashed:: Dispatch queue: MFEWSAccountRequestResponseQueue :: NSOperation 0x618000481630 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99dab282 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff92760b73 abort + 129
    2   libc++abi.dylib               0x00007fff98706a21 abort_message + 257
    3   libc++abi.dylib               0x00007fff9872e9d1 default_terminate_handler() + 267
    4   libobjc.A.dylib               0x00007fff99e256c6 _objc_terminate() + 103
    5   libc++abi.dylib               0x00007fff9872c0a1 std::__terminate(void (*)()) + 8
    6   libc++abi.dylib               0x00007fff9872c113 std::terminate() + 51
    7   libobjc.A.dylib               0x00007fff99e254ef objc_terminate + 9
    8   libdispatch.dylib             0x00007fff93b97c27 _dispatch_client_callout + 28
    9   libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    10  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    11  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    12  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    13  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    14  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 4:: -[MFAosImapAccount _fetchUnreadCountsCheckForNewMessages:]  Dispatch queue: NSOperationQueue 0x618000240c00 :: NSOperation 0x618000249450 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99dab132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff92ef7bd0 -[__NSOperationInternal _waitUntilFinishedOrTimeout:outer:] + 245
    2   com.apple.IMAP                 0x00007fff98a94e7d -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 209
    3   com.apple.IMAP                 0x00007fff98ab6e37 -[IMAPGateway waitUntilClientOperationIsFinished:] + 173
    4   com.apple.IMAP                 0x00007fff98ab6d65 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 487
    5   com.apple.IMAP                 0x00007fff98aa017a -[IMAPConnection _authenticateWithSaslClient:] + 128
    6   com.apple.MailCore             0x00007fff9429f4d7 -[MCConnection _authenticateWithAuthenticationMechanisms:allowPlainText:] + 309
    7   com.apple.MailCore             0x00007fff9429ec2a -[MCConnection authenticate] + 484
    8   com.apple.IMAP                 0x00007fff98aa009f -[IMAPConnection authenticate] + 65
    9   com.apple.Mail.framework       0x00007fff918b05bb -[MFIMAPAccount connectAndAuthenticate:] + 1137
    10  com.apple.IMAP                 0x00007fff98aad41c -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 388
    11  com.apple.IMAP                 0x00007fff98aaa392 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 393
    12  com.apple.Mail.framework       0x00007fff918b183c -[MFIMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 507
    13  com.apple.Mail.framework       0x00007fff918b11b7 -[MFIMAPAccount _gatewayForMailbox:name:options:] + 303
    14  com.apple.Mail.framework       0x00007fff918b0ce9 -[MFIMAPAccount gatewayForMailbox:options:] + 122
    15  com.apple.Mail.framework       0x00007fff918b975b -[MFIMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 172
    16  com.apple.CoreFoundation       0x00007fff9481133c __invoking___ + 140
    17  com.apple.CoreFoundation       0x00007fff94811192 -[NSInvocation invoke] + 290
    18  com.apple.MailCore             0x00007fff9430b08c -[MCMonitoredInvocation invoke] + 242
    19  com.apple.MailCore             0x00007fff94335194 -[MCThrowingInvocationOperation main] + 48
    20  com.apple.MailCore             0x00007fff942bd6cd -[_MCInvocationOperation main] + 426
    21  com.apple.Foundation           0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    22  com.apple.Foundation           0x00007fff92e941a3 __NSOQSchedule_f + 184
    23  libdispatch.dylib             0x00007fff93b97c13 _dispatch_client_callout + 8
    24  libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    25  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    26  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    27  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    28  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    29  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 7:: -[MFAosImapAccount _synchronizeMailboxListDuringMailCheck]  Dispatch queue: NSOperationQueue 0x608000054fd0 :: NSOperation 0x6180006439c0 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99dab162 __psynch_mutexwait + 10
    1   com.apple.Foundation           0x00007fff92e97ee1 -[NSLock lock] + 145
    2   com.apple.Mail.framework       0x00007fff918b1191 -[MFIMAPAccount _gatewayForMailbox:name:options:] + 265
    3   com.apple.Mail.framework       0x00007fff918b0ce9 -[MFIMAPAccount gatewayForMailbox:options:] + 122
    4   com.apple.Mail.framework       0x00007fff918b5771 -[MFIMAPAccount _listingForMailbox:listAllChildren:onlySubscribed:highPriority:] + 153
    5   com.apple.Mail.framework       0x00007fff918b6761 -[MFIMAPAccount _listingForMailbox:listAllChildren:highPriority:] + 104
    6   com.apple.Mail.framework       0x00007fff918b4ae2 -[MFIMAPAccount _synchronizeMailboxListHighPriority:] + 71
    7   com.apple.Mail.framework       0x00007fff918b5697 -[MFIMAPAccount _synchronizeMailboxListDuringMailCheck] + 261
    8   com.apple.CoreFoundation       0x00007fff9481133c __invoking___ + 140
    9   com.apple.CoreFoundation       0x00007fff94811192 -[NSInvocation invoke] + 290
    10  com.apple.MailCore             0x00007fff9430b08c -[MCMonitoredInvocation invoke] + 242
    11  com.apple.MailCore             0x00007fff94335194 -[MCThrowingInvocationOperation main] + 48
    12  com.apple.MailCore             0x00007fff942bd6cd -[_MCInvocationOperation main] + 426
    13  com.apple.Foundation           0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    14  com.apple.Foundation           0x00007fff92e941a3 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff93b97c13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 10:: Dispatch queue: MFEWSAccountRequestResponseQueue :: NSOperation 0x618000481d60 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99da652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff99da569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94848b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94847fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94847838 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff92ef6ab9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.apple.ExchangeWebServices 0x00007fff932076e2 -[SOAPRequest sendSynchronously:] + 467
    7   com.apple.ExchangeWebServices 0x00007fff931ecbb4 -[EWSExchangeServiceBinding _sendSynchronousMessage:withTimeout:error:] + 89
    8   com.apple.Mail.framework       0x00007fff9187196b -[MFEWSConnection _sendMessage:error:] + 406
    9   com.apple.Mail.framework       0x00007fff91870fc6 -[MFEWSConnection sendMessage:forRequest:] + 96
    10  com.apple.Mail.framework       0x00007fff9187dc6b -[MFEWSGateway sendMessage:forRequest:] + 128
    11  com.apple.Mail.framework       0x00007fff918993a7 -[MFEWSRequestOperation executeOperation] + 178
    12  com.apple.MailCore             0x00007fff9430b54e -[MCMonitoredOperation main] + 234
    13  com.apple.Foundation           0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    14  com.apple.Foundation           0x00007fff92e941a3 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff93b97c13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 12:: Dispatch queue: NSOperationQueue 0x60800062d3a0 :: NSOperation 0x600000670c80 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99dab132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff92ef97ae -[__NSOperationInternal _waitUntilFinished:] + 131
    2   com.apple.Mail.framework       0x00007fff918812e0 -[MFEWSGateway syncFolderItemsFromFolderIdString:syncState:forStore:] + 769
    3   com.apple.Mail.framework       0x00007fff9189f765 -[MFEWSStore _fetchChangesFromServer] + 514
    4   com.apple.Mail.framework       0x00007fff91866438 __50-[MFEWSAccount _synchronizeMailboxesSynchronously]_block_invoke + 177
    5   com.apple.Foundation           0x00007fff92fc92e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
    6   com.apple.Foundation           0x00007fff92eb5905 -[NSBlockOperation main] + 97
    7   com.apple.MailCore             0x00007fff94334eb6 -[MCTaskOperation main] + 862
    8   com.apple.Foundation           0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    9   com.apple.Foundation           0x00007fff92e941a3 __NSOQSchedule_f + 184
    10  libdispatch.dylib             0x00007fff93b97c13 _dispatch_client_callout + 8
    11  libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    12  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    13  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    14  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    15  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    16  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 29:: -[MFEWSStore openSynchronously]  Dispatch queue: NSOperationQueue 0x60000025cbf0 :: NSOperation 0x608000449300 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99dab132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff92ef97ae -[__NSOperationInternal _waitUntilFinished:] + 131
    2   com.apple.Mail.framework       0x00007fff918812e0 -[MFEWSGateway syncFolderItemsFromFolderIdString:syncState:forStore:] + 769
    3   com.apple.Mail.framework       0x00007fff9189f765 -[MFEWSStore _fetchChangesFromServer] + 514
    4   com.apple.Mail.framework       0x00007fff9189b816 -[MFEWSStore openSynchronouslyUpdatingMetadata:] + 112
    5   com.apple.CoreFoundation       0x00007fff9481133c __invoking___ + 140
    6   com.apple.CoreFoundation       0x00007fff94811192 -[NSInvocation invoke] + 290
    7   com.apple.MailCore             0x00007fff9430b08c -[MCMonitoredInvocation invoke] + 242
    8   com.apple.MailCore             0x00007fff94335194 -[MCThrowingInvocationOperation main] + 48
    9   com.apple.MailCore             0x00007fff942bd6cd -[_MCInvocationOperation main] + 426
    10  com.apple.Foundation           0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    11  com.apple.Foundation           0x00007fff92e941a3 __NSOQSchedule_f + 184
    12  libdispatch.dylib             0x00007fff93b97c13 _dispatch_client_callout + 8
    13  libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    14  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    15  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    16  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    17  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    18  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 30:: -[MFEWSAccount fetchSynchronouslyIsAuto:]  Dispatch queue: NSOperationQueue 0x608000054fd0 :: NSOperation 0x60800005bb10 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99dab132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff92ef97ae -[__NSOperationInternal _waitUntilFinished:] + 131
    2   com.apple.Mail.framework       0x00007fff91866342 -[MFEWSAccount _synchronizeMailboxesSynchronously] + 967
    3   com.apple.Mail.framework       0x00007fff91865dbd -[MFEWSAccount fetchSynchronouslyIsAuto:] + 456
    4   com.apple.CoreFoundation       0x00007fff9481133c __invoking___ + 140
    5   com.apple.CoreFoundation       0x00007fff94811192 -[NSInvocation invoke] + 290
    6   com.apple.MailCore             0x00007fff9430b08c -[MCMonitoredInvocation invoke] + 242
    7   com.apple.MailCore             0x00007fff94335194 -[MCThrowingInvocationOperation main] + 48
    8   com.apple.MailCore             0x00007fff942bd6cd -[_MCInvocationOperation main] + 426
    9   com.apple.Foundation           0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    10  com.apple.Foundation           0x00007fff92e941a3 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff93b97c13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 31:: Dispatch queue: NSOperationQueue 0x6000000d2b40 :: NSOperation 0x6000000bd9a0 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x00007fff99da652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff99da569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94848b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94847fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94847838 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff92ef6ab9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.apple.MailCore             0x00007fff94330473 -[MCSocket readBytes:maxLength:error:] + 947
    7   com.apple.MailCore             0x00007fff942a05c8 -[MCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 119
    8   com.apple.MailCore             0x00007fff9429fe6f -[MCConnection _fillBuffer:] + 367
    9   com.apple.MailCore             0x00007fff9429fad4 -[MCConnection _readLineIntoData:error:] + 194
    10  com.apple.IMAP                 0x00007fff98a9e6ff -[IMAPConnection _readLineIntoData:error:] + 54
    11  com.apple.IMAP                 0x00007fff98aa7f97 -[IMAPConnection(MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 148
    12  com.apple.IMAP                 0x00007fff98ae4c1e +[IMAPResponse newIMAPResponseWithConnection:error:] + 101
    13  com.apple.IMAP                 0x00007fff98a9e828 -[IMAPConnection _copyNextServerResponse:] + 39
    14  com.apple.IMAP                 0x00007fff98a9e93a -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 183
    15  com.apple.IMAP                 0x00007fff98aa0825 -[IMAPConnection executeAuthenticate:] + 1209
    16  com.apple.IMAP                 0x00007fff98a9d589 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1213
    17  com.apple.IMAP                 0x00007fff98ab6832 -[IMAPGateway _allowClientOperationThrough:] + 1101
    18  com.apple.IMAP                 0x00007fff98ab6379 -[IMAPGateway allowClientOperationThrough:] + 460
    19  com.apple.IMAP                 0x00007fff98a919fa -[IMAPClientOperation main] + 69
    20  com.apple.Foundation           0x00007fff92e9459c -[__NSOperationInternal _start:] + 653
    21  com.apple.Foundation           0x00007fff92e941a3 __NSOQSchedule_f + 184
    22  libdispatch.dylib             0x00007fff93b97c13 _dispatch_client_callout + 8
    23  libdispatch.dylib             0x00007fff93b9b365 _dispatch_queue_drain + 1100
    24  libdispatch.dylib             0x00007fff93b9cecc _dispatch_queue_invoke + 202
    25  libdispatch.dylib             0x00007fff93b9a6b7 _dispatch_root_queue_drain + 463
    26  libdispatch.dylib             0x00007fff93ba8fe4 _dispatch_worker_thread3 + 91
    27  libsystem_pthread.dylib       0x00007fff99d8e6cb _pthread_wqthread + 729
    28  libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 32:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 33:
    0   libsystem_kernel.dylib         0x00007fff99dab946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff99d8c4a1 start_wqthread + 13
    Thread 34:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff99da652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff99da569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94848b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94847fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94847838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff9ac85e90 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff92ef4b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff99d8e2fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff99d8e279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff99d8c4b1 thread_start + 13
    Thread 35:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff99dab3f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff99d8e2fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff99d8e279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff99d8c4b1 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib         0x00007fff99da652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff99da569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff94848b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff94847fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff94847838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff9a1898f7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff99d8e2fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff99d8e279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff99d8c4b1 thread_start + 13
    Thread 2 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000102ce07c8  rdx: 0x0000000000000000
      rdi: 0x0000000000001703  rsi: 0x0000000000000006  rbp: 0x0000000102ce07f0  rsp: 0x0000000102ce07c8
       r8: 0x6e6f697470656378   r9: 0x00007fff9278ad90  r10: 0x000000000c000000  r11: 0x0000000000000206
      r12: 0x0000000102ce0950  r13: 0x000060000046e840  r14: 0x0000000102ce1000  r15: 0x0000000102ce0830
      rip: 0x00007fff99dab282  rfl: 0x0000000000000206  cr2: 0x00007fff7cc76fd8
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x1026ee000 -        0x102a83fff  com.apple.mail (8.0 - 1990.1) <9D8003D6-7A0C-3D7F-AD09-FC5D1D135273> /Applications/Mail.app/Contents/MacOS/Mail
           0x106a7e000 -        0x106a7efef +cl_kernels (???) <5B216E76-5DF8-4CD8-9011-0A6C19D0AD77> cl_kernels
           0x106a8a000 -        0x106a8aff5 +cl_kernels (???) <81AC7FA9-E2D2-4B36-8DEA-A4C09B7C6FDF> cl_kernels
           0x106a8c000 -        0x106b72fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x1081d5000 -        0x1081ddfff  com.apple.SyncedDefaults (2.0 - 212) <F74E6622-CD11-3714-848A-47A12A002930> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x108e23000 -        0x108e27ff7  com.apple.DirectoryServicesSource (9.0 - 1498) <D64EBEF7-35CF-3357-8A40-362E924ABD58> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x108e2d000 -        0x108e2ffff  com.apple.addressbook.POIPlugin (9.0 - 1498) <33728181-6E16-35F8-BCE1-6D0B0AAE7E44> /System/Library/Address Book Plug-Ins/POIPlugin.sourcebundle/Contents/MacOS/POIPlugin
           0x108e5e000 -        0x108e5ffff  com.apple.AddressBook.LocalSourceBundle (9.0 - 1498) <DB868358-DF07-30E8-8486-81EB314934A7> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x108f7b000 -        0x108fc8ff3  com.apple.AddressBook.CardDAVPlugin (10.9 - 434) <18E3E345-BF5A-38B6-82EB-B79162A24C65> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x108ff6000 -        0x10902efff  com.apple.ExchangeSource (9.0 - 1498) <AFAA767B-0743-30EA-94A2-863C17692767> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
           0x109961000 -        0x109961ffe +cl_kernels (???) <35F8AB3E-8AB4-4009-B9DA-D372276A0808> cl_kernels
           0x109a7e000 -        0x109a7efe7 +cl_kernels (???) <2EBDACB2-F696-4A44-9361-78230D6CE6A0> cl_kernels
           0x109fc5000 -        0x10a0a5ff7  unorm8_rgba.dylib (2.4.5) <A8805102-8A21-3A5E-AE22-63C0DEC8CB6F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x10a0ed000 -        0x10a0effff  apop.so (183) <45C50E60-97D1-3FE0-93F5-145F489AAF50> /usr/lib/sasl2/apop.so
           0x10a0f3000 -        0x10a0f4fff  atoken.so (183) <0F3DB480-6B1A-3AD6-B3E4-CEAB75436788> /usr/lib/sasl2/atoken.so
           0x10a0fc000 -        0x10a10dffb  dhx.so (183) <4BE28005-1AE3-3D6D-875F-9AD9F69E79F1> /usr/lib/sasl2/dhx.so
           0x10a120000 -        0x10a122fff  libanonymous.2.so (193) <3CBC6ECD-E78C-3A19-BEF9-628B49C85047> /usr/lib/sasl2/libanonymous.2.so
           0x10a167000 -        0x10a170fff  digestmd5WebDAV.so (183) <A0405C97-15BE-31CA-9CD2-D258F4B30C37> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10a188000 -        0x10a18aff7  libcrammd5.2.so (193) <2B573E51-8264-36FD-AABA-0599FCC776AD> /usr/lib/sasl2/libcrammd5.2.so
           0x10a18e000 -        0x10a18ffff  plain-clienttoken.so (183) <12B2FD79-5F8D-31E5-9A53-B5E3D03F9D36> /usr/lib/sasl2/plain-clienttoken.so
           0x10a197000 -        0x10a19cfff  libgssapiv2.2.0.18.so (193) <46C161D0-74D2-38FB-934B-6EE044961C53> /usr/lib/sasl2/libgssapiv2.2.0.18.so
           0x10a252000 -        0x10a25bfff  libdigestmd5.2.so (193) <85C0F6CC-7333-3394-AD8D-4E7BD3712C52> /usr/lib/sasl2/libdigestmd5.2.so
           0x10a260000 -        0x10a262fff  libplain.2.so (193) <1E8EFAF4-1D23-3530-A04F-5AFBCCBC40F9> /usr/lib/sasl2/libplain.2.so
           0x10a2d6000 -        0x10a2dbfff  libntlm.so (193) <B257700E-17B1-3DE7-A764-BC7786564B5C> /usr/lib/sasl2/libntlm.so
           0x10a2e0000 -        0x10a2e2fff  login.so (193) <DF41E250-01D0-31F4-8A80-9B6EE6B7C0D1> /usr/lib/sasl2/login.so
           0x10a2e6000 -        0x10a2e9ff7  mschapv2.so (183) <F758C957-FB59-3E55-8798-44016F79E520> /usr/lib/sasl2/mschapv2.so
           0x10a2ee000 -        0x10a30fffb  com.apple.DirectoryService.PasswordServerFramework (10.10 - 44) <13610720-24EC-39D5-93FE-9AAA707D5B15> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10a321000 -        0x10a32bfff  com.apple.DirectoryServer (10.10 - 59) <61A473DD-D803-3C6A-BA6F-E8BB5CE5AED7> /System/Library/PrivateFrameworks/DirectoryServer.framework/Versions/A/Director yServer
           0x10a333000 -        0x10a33efff  com.apple.AccountPolicy (1.0 - 1) <9C8D47AD-A299-34C4-8305-BA966E7F8689> /System/Library/PrivateFrameworks/AccountPolicy.framework/Versions/A/AccountPol icy
           0x10a347000 -        0x10a353ff7  com.apple.directoryserver.CFDirectoryServer (10.10 - 59) <05D571A8-5741-3307-ACAC-F4314495B6EF> /System/Library/PrivateFrameworks/DirectoryServer.framework/Frameworks/CFDirect oryServer.framework/Versions/A/CFDirectoryServer
           0x10a35f000 -        0x10a365fff  com.apple.HeimODAdmin (4.0 - 2.0) <8A8F50F3-0BA1-30ED-B79B-464DE78926E1> /System/Library/PrivateFrameworks/HeimODAdmin.framework/Versions/A/HeimODAdmin
           0x10a36e000 -        0x10a36ffff  com.apple.CFAccountPolicy (1.0 - 1) <8202A049-7ED7-39A3-987E-FD5093DB7890> /System/Library/PrivateFrameworks/AccountPolicy.framework/Frameworks/CFAccountP olicy.framework/Versions/A/CFAccountPolicy
           0x10a374000 -        0x10a376fff  pwauxprop.so (419) <5F54667E-8C54-3445-9D1D-7C8A423DDE7C> /usr/lib/sasl2/pwauxprop.so
           0x10a37a000 -        0x10a37cfff  shadow_auxprop.so (183) <4E05B744-F0DB-314A-886C-172E7864B5F7> /usr/lib/sasl2/shadow_auxprop.so
           0x10a381000 -        0x10a384fff  smb_ntlmv2.so (183) <231397CF-F819-30D6-9238-A111137F97A2> /usr/lib/sasl2/smb_ntlmv2.so
           0x10a63d000 -        0x10a63efff  com.apple.heimdalodpac (10.10 - 205) <3BFA6B1E-76CE-3A05-9D38-6AA1BA9CD2A2> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/heimdalodpac.bundle/Co ntents/MacOS/heimdalodpac
           0x10a643000 -        0x10a644ffb  com.apple.kerberos.reachability (4.0 - 2.0) <B7F38EFD-F824-3E54-A64D-1B6E0231FB6C> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/Reachability.bundle/Co ntents/MacOS/Reachability
           0x10a648000 -        0x10a649fff  com.apple.kerberos.sckerberosconfig (4.0 - 1) <840BFCA4-4E3B-3C00-80D0-1AD470E47B63> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/SCKerberosConfig.bundl e/Contents/MacOS/SCKerberosConfig
        0x7fff63f40000 -     0x7fff63f76837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8bca3000 -     0x7fff8bcbdff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8bcbe000 -     0x7fff8bceeffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8bcef000 -     0x7fff8bd03ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8bd04000 -     0x7fff8bd09ff7  com.apple.EmailAddressing (8.0 - 1990.1) <80DA660C-D2B2-3273-BEF6-2CEEBC666909> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff8bd0a000 -     0x7fff8bd0bff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8bd1f000 -     0x7fff8bd22ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8bd23000 -     0x7fff8bda4ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8bda5000 -     0x7fff8bdddff7  com.apple.PassKit (1.0 - 50) <1B397DE6-9B0F-3FC3-B144-402B21EC9161> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
        0x7fff8be39000 -     0x7fff8becaff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff8becb000 -     0x7fff8befcfff  libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
        0x7fff8befd000 -     0x7fff8beffff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8c0cf000 -     0x7fff8c0cfff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff8c0d0000 -     0x7fff8c0d4fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8c0d5000 -     0x7fff8c0d5fff  com.apple.WebKit2 (10600 - 10600.1.25) <32C26838-0090-388F-B5E3-DFB597B9B37B> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8c0d6000 -     0x7fff8c208ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8c209000 -     0x7fff8c4b5fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8c4b6000 -     0x7fff8c5fcfef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff8c5fd000 -     0x7fff8c7adff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8c7ae000 -     0x7fff8c805ff7  com.apple.MailUI (8.0 - 1990.1) <82631324-82C3-32CB-AC2A-D4CED2A8172B> /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI
        0x7fff8c806000 -     0x7fff8c810fff  com.apple.KerberosHelper (4.0 - 1.0) <DA8D89D2-3185-3527-9E36-AA17F018B776> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8c811000 -     0x7fff8c8a7ffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c8a8000 -     0x7fff8c8aaff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff8c8ed000 -     0x7fff8c8f1fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8d2ad000 -     0x7fff8d2b8ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
        0x7fff8d2b9000 -     0x7fff8d2e7fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d32b000 -     0x7fff8d379fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff8d39f000 -     0x7fff8d619ff3  com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8d61a000 -     0x7fff8d61afff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8d61b000 -     0x7fff8d61dfff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8d61e000 -     0x7fff8d626ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8d627000 -     0x7fff8d634ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8d635000 -     0x7fff8d639fff  com.apple.FindMyMac (3.1 - 3.1) <3D5525AC-E3C4-3C3D-B5FF-A0451192B0CA> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8d63a000 -     0x7fff8d74cff7  libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8d74d000 -     0x7fff8d865ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8d8a3000 -     0x7fff8d9b2ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8d9b3000 -     0x7fff8d9bdfff  com.apple.corerecents (1.0 - 1) <1D3AB6D9-2C43-31F3-A223-E637DE2CD791> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
        0x7fff8d9be000 -     0x7fff8ddeefff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8df58000 -     0x7fff8e007fe7  libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8e008000 -     0x7fff8e010ffb  com.apple.CloudServices (1.0 - 1) <D278BECB-AEC3-3D32-BEC8-E949EB89D66B> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff8e011000 -     0x7fff8e02dff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff8e02e000 -     0x7fff8e035ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8e036000 -     0x7fff8e3a1fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8e3a2000 -     0x7fff8e3a8ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8e3d7000 -     0x7fff8e3eeff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8e41e000 -     0x7fff8e65eff7  com.apple.AddressBook.framework (9.0 - 1498) <EFCD7F23-4654-3B3F-997B-88054D29D442> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8e66c000 -     0x7fff8e670ff7  com.apple.LoginUICore (3.0 - 3.0) <86C742AF-8F8A-3AD6-AFD3-DEC66815B5C0> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8e671000 -     0x7fff8e671fff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8e672000 -     0x7fff8e6c3ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8e6c4000 -     0x7fff8e72eff7  com.apple.imfoundation (10.0 - 1000) <1810C42E-B06B-385B-9D17-FDB9C9D91E90> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8e72f000 -     0x7fff8e757fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff8e758000 -     0x7fff8e7bdfff  com.apple.framework.internetaccounts (2.1 - 210) <DC8D9230-B7C8-3100-8B2F-399B51A4483A> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8e8cb000 -     0x7fff8e8d2fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8e8d3000 -     0x7fff8f10cff3  com.apple.CoreGraphics (1.600.0 - 772) <936D081F-37B3-3DA3-B725-118D0B07DDD2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8f118000 -     0x7fff8f169ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8f16a000 -     0x7fff8f17bff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8f17c000 -     0x7fff8f182fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8f18d000 -     0x7fff8f18ffff  com.apple.marco (10.0 - 1000) <ECD31951-F96E-3F5C-B468-729BBEBDCCE3> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8f190000 -     0x7fff8f198fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8f199000 -     0x7fff8f1b2fff  com.apple.ContactsUI (9.0 - 1498) <41F12AEE-F0EA-3D9B-9F8D-6AE5E3814787> /System/Library/PrivateFrameworks/ContactsUI.framework/Versions/A/ContactsUI
        0x7fff8f1b3000 -     0x7fff8f1e0fff  com.apple.notificationcenter (1.0 - 393) <BA346328-3183-337B-9E2C-E9CA146E0247> /System/Library/Frameworks/NotificationCenter.framework/Versions/A/Notification Center
        0x7fff8f1e1000 -     0x7fff8f1f3ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8f1f4000 -     0x7fff8f1faff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8f1fb000 -     0x7fff8f260ff7  com.apple.ids (10.0 - 1000) <12E5717E-8D63-3B70-BB46-A60AFB02CCAE> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8f26e000 -     0x7fff8f2a9fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8f2aa000 -     0x7fff8f7d3ff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8f7d4000 -     0x7fff8f7d5ff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
        0x7fff8f7d6000 -     0x7fff8f7deff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff90116000 -     0x7fff90116fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff90117000 -     0x7fff90122fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff90123000 -     0x7fff90136ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff90137000 -     0x7fff9016aff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff90173000 -     0x7fff9018cfff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9018d000 -     0x7fff9031bfff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff90334000 -     0x7fff90338fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff90339000 -     0x7fff90364fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff90365000 -     0x7fff90667fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff90668000 -     0x7fff90682ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0

  • How to create a user name for iTunes reviews?

    I just noticed that almost every iTunes review is posted under an anonymous user name... except for mine!
    How do I add a user name to my profile/account so that my real full name isn't automatically posted under every review?
    I had this same issue with my apple message boards user name, and Apple told me that I had to create an entirely new account. Not a big deal for the forums. But creating a whole new iTunes account means losing all my movies, music and apps. Not gonna happen.
    So hopefully there's some way to add an alias name for my reviews.
    Any thoughts?
    Thanks in advance!!

    I was about to post an iPhone app review and couldn't see what name was going to be displayed. In searching for that I found your question. You've probably solved this by now but in case you haven't you need to turn off Ping in iTunes. Go to the iTunes store and open the preferences. Under "Parental" click to disable "Ping". When they added Ping they made it use your real name. After you have disabled Ping you can edit your nickname. At the bottom of the iTunes window click on "Account" under "Manage". At the bottom of that page you'll see an option to edit your Nickname in the settings section.

  • HT204053 I changed my internet service provider and no longer have the email that is the user name for my apple id. Is this just anecdotal, or is it going to cause me problems in the future? I no longer receive any of the mail sent to that address.

    At first I thought I had to change the user name on my apple id, but I guess that is not possible.  If I want my apple id to be linked to my current email address which is a gmail, I guess I am basically creating a new apple id, with all the complications that brings, right?
    I have the same issue with my iCloud.
    Should I do anything about this?

    Roger, thank you.  I wish I had sent out this question a month ago, when I committed the folly of creating another apple id with my alternate email address.  Since then, I had realized that I didn't seem to need it, hence today's post.
    So now what do I do?  Is there anyway to delete that unecessary apple id?
    And it is even worse than that...the secondary address listed currently in our apple id is a mobile me one that my husband created, but never uses, never checks, and probably doesn't even remember the password for. 

  • How to track the user name for audit trail ?

    Hi all,
    I chance the new user name from existing user code, How can i track the document that made by the old user name and the current username. Because when the username change, all the historical will be changed to the current.
    Thanks in advance
    Regards
    Jia shun

    Hi ,
    the problem is usersign is only connect to userid of OUSR. And the changes is on User Name field.
    For example know i make a document PO by using user code manager , user name Jason Butler.
    After that i change my user name become Alex, but the user code still same "manager".
    After that i re-login and update the Qty in PO doc, that i made before. After that i change again the username, the user code still same. After that i click the show history of the document that i made before. The Updated by and created by are always followed by the current user name that i change.
    thanks and regards
    Jia shun

  • Using odiRef in ODI package to get current user name for Subject in OdiSendmail Step

    Hi,
    I am trying to do something simple and include the user name in a subject line of an OdiSendMail Step.  In the Expression editor for the Subject I use the following but to no avail.
    Push Data to HFM Started by <%=odiRef.getUser( String )%>
    What amI missing here?  Do I need to replace String with something like "UserName" or is there a different parameter to pass?  I tried Username but it didn't work.  Is this syntax correct or do I have to code it a different way?
    Thanks,
    T.

    Hi
    getUser has a parameter which is the property name to retrieve, you probably want the user name;
    http://docs.oracle.com/cd/E14571_01/integrate.1111/e12645/odiref_reference.htm#autoId70
    Something like....
    <%=odiRef.getUser( "USER_NAME" )%>
    Cheers
    David

  • How to change your user name for the Ipod nano...

    Can anyone please explain how to change the user name on your Ipod nano?

    hiya!
    do you mean the nano's name in the ipod source list?
    if so, select the ipod in the itunes sourcelist. click on it once, and pause for a second or so. you should then be able to type in what you please.
    love, b

  • Firefox is not remembering my user name for loging into gmail.

    Part of the problem is I already have one gmail account/ user name and have recently added another user name. However I have other websites where firefox remembers more than one user name. I am running on windows XP.

    FFox 3;6;13 sux.
    It dropped the memory of my favourite forums Username and PWord today.
    Redid it all,and now it only remembers my PWord,and not Username.IE is OK.I hate IE so fix this please.It is a PIA,and DLing the old version after all the Flashplayer crap will OD my DL allowance.
    In the saved PWords area of FFox,this forum is the only entry without a Username listed.
    And why does Mozilla have to go for faster browsers,bells and whistles etc,when the security is still so lame?
    I have had several attacks from an AV8 like scam.I use Avast and Mwarebytes.
    Unstable FFox,yet again.Time to send it to the recycle bin with its fat cousin AVG Free.
    Sad,but Chrome is looking real good now.
    Am also getting stupid window asking if I want to Save or Open a PHP file when I click on Open In New Tab on the same forum.
    The forum owner says all is OK at the Forum.

  • When opening the email client on my iPad3 I occasionally receive a dialog box that states "the user name or password or user name for Bellsouth are incorrect".  This condition usually lasts for 2 or 3 days.

    I am using the correct user name and password as I can access email via the web.  This situation is on all email clients except the web, ie; Outlook and iPhone also.

    Hi Kitbear,
    Thanks for visiting Apple Support Communities.
    See this article for some troubleshooting steps you can try on your iPhone and iPad:
    iOS: Unable to send or receive email
    http://support.apple.com/kb/ts3899
    Best Regards,
    Jeremy

Maybe you are looking for