Finding Attached document URL

I'd like to find URL of attached document in CRM .
So I  found the URL using the class cl_crm_documents=>get_with_url  .
But URL Information had a problem.
For example,
this is the URL of attached document.
http://xxx/sap/bc/contentserver/300?get&pVersion=0046&
contRep=CRMORDER&
docId=40F9B6CE0CB4AF41BE10CE3CE0A30F70&
compId=%25EC%25A0%259C%25ED%2592%2588%25EA%25B2%2580%25EC%2588%2598.ppt&
accessMode=r&
authId=CN%3DRDV&
expiration=20100618103631&secKey=xxxxx
The problem is expiration .
When I executed  class cl_crm_documents=>get_with_url  , this expiration is updated with executed day.
If I  obtained that URL , today I can't use .
Because expiration was passed.
Can I solve this problem ?
Is there another method that finding URL of attatched documents ?
Please, help me ^^;;

Ok i know this thread is older but i have / had the same problem.
So there are two questions:
1.) How to access a document via a url which validy is expired.
2.) How to access a docmument via a url longer than 255 chars for macro porcessing.
Solution to Question 1: You can simply regenerate a url with a new expiration date, this works fine with the folliwing coding:
* Get URL
  cl_crm_documents=>get_with_url(
    exporting
      loio     = is_loio
      phio     = is_phio
      url_type = crmkw_url-standard
    importing
      url      = lv_uri
    exceptions
      no_io    = 1
      others   = 2
  if sy-subrc <> 0.
    return.
  endif.
* Calculate expiration time
lv_expiration = cl_abap_tstmp=>add( tstmp   = mv_now
                                            secs    = lv_exp_in_sec ).
* Regenerate Link with new expiration time
call function 'SCMS_URL_REGENERATE'
      exporting
        absolute_uri    = lv_uri
        expiration      = lv_expiration
      importing
        http_uri        = lv_uri_http
        https_uri       = lv_uri_https
      exceptions
        error_parameter = 1
        others          = 2.
Question 2:
I am facing the same problem at the moment but i have no solution....
I want to access a document for an excel macro processing by:
* open existing file
   call method of lr_excel 'Workbooks' = lr_workbooks.
   call method of lr_workbooks 'OPEN'
     exporting
       #1 = lv_uri_http.
But I am not able to open this document. If I copy the URL to the browser it works fine and I can access the document. I guess the problem is that the URL is longer than 255 chars. Did you found any solution for this problem yet? or a alternative way acccessing documents in the kw for a macro processing?
Thanks a lot!
Reagrds
Marc

Similar Messages

  • Find attached document or discussion

    Hello, is there a method with the PRC to retrieve all the discussions (or task lists) attached to a document?
    Thank you in advance.

    Hi,
    From the jCOM perspective accessing a java (or more specifically a WLS object -
    an EJB in this case) is no different whether you use a VB or VC++ client.
    However, as you've found, from the COM perspective the differences can be quite
    evident.
    The bottom line is you need to know how to construct IDispatch objects and use
    them. You need to understand the basics of COM implementation. VB is nice in
    this way since it takes care of all the ugliness for you. But at the same
    time, you lose nearly all control over how these objects are created and/or
    implemented. So there is a trade off to be made.
    There is a nice write up on the Intrinsyc site
    (http://www.intrinsyc.com/support/j-integra/doc/javafromcom/vc2java.html).
    Alternatively you can check out the tutorials on the MS Developer documentation
    sites. They have quite a number of COM examples.
    But here's a very quick and dirty example:
    HRESULT hr = CoGetObject(L"myserver:jndi:JCOMSrvrObjsBean",
    0, IID_IDispatch, (void**)&ejbDisp);
    if(hr){
    //handle the failure here...
    ejbHomeVar = new VARIANT();
    OLECHAR *ejbMethName = L"create";
    DISPPARAMS *p = new DISPPARAMS();
    DISPID dispID;
    p->cArgs=0;
    p->cNamedArgs=NULL;
    p->rgdispidNamedArgs=NULL;
    p->rgvarg=NULL;
    iDispatch->GetIDsOfNames(IID_NULL, &methodName, 1,
    LOCALE_USER_DEFAULT, &dispID);
    hr = iDispatch->Invoke(dispID, IID_NULL, LOCALE_USER_DEFAULT,
    DISPATCH_METHOD, p, ejbHomeVar, NULL, NULL);
    Once you've created the ejbHome you can begin invoking on it the same way you
    did to get the home in the first place. Only this time instead of using the
    variant (ejbHomeVar) you'll use it's dispatch member ejbHomeVar->pdispVal.
    But to reiterate, there is certainly more information about this on the MS and
    intrinsyc sites.
    I hope this helps.
    dan
    "sha.mo" wrote:
    Hi, I wanna talk to EJB beans from com coding with VisualC++ ,
    but it's difficult to find out some document or source about VC com client
    So , I am working very painful. who can help me ?
    Thanks and sorry for my poor English.

  • Business Document Navigator...attaching a URL

    hi all....
      We have requirement wherein we have to attach a URL to an object through OAOR (Business Document Navigator).
      As per SAP documentation on link below
    http://help.sap.com/saphelp_nw04s/helpdata/en/cb/a48d384ba2a767e10000009b38f8cf/frameset.htm
      it says this is possible using document type WWW address. We didn't find any such document type in the list of standard document types and not in the configuration settings for document types through SPRO.
    Can any one elaborate on this, how can be add a URL to an object through BDN. On clicking on the URL the internet address should open in a browser.
    As of today we can attach word documents, powerpoint presentation, web page(html), but we are unable to attach a URL.
    Thanks & Regards,
    Abhishek Pradhan

    hi all....
      We have requirement wherein we have to attach a URL to an object through OAOR (Business Document Navigator).
      As per SAP documentation on link below
    http://help.sap.com/saphelp_nw04s/helpdata/en/cb/a48d384ba2a767e10000009b38f8cf/frameset.htm
      it says this is possible using document type WWW address. We didn't find any such document type in the list of standard document types and not in the configuration settings for document types through SPRO.
    Can any one elaborate on this, how can be add a URL to an object through BDN. On clicking on the URL the internet address should open in a browser.
    As of today we can attach word documents, powerpoint presentation, web page(html), but we are unable to attach a URL.
    Thanks & Regards,
    Abhishek Pradhan

  • How to find list or folder name from SharePoint document URL

    I'm implementing the SharePoint client object model in my VSTO application in .NET framework 4.0(C#).
    Actually we open MS Word files from SharePoint site, we need to create a folder inside the opened documents list/folder and after it we want to upload/add some files to that created folder.
    My problem is that how to get list name/title and folder name of opened document by using the documents URL or Is there an another option to find the list or folder name of opened document.
    Any help will be appreciable.

    In document Library you can get the name of document library directly in URL. for folder name you can try below:
    using System;
    using Microsoft.SharePoint;
    namespace Test
    class ConsoleApp
    static void Main(string[] args)
    using (SPSite site = new SPSite("http://localhost"))
    using (SPWeb web = site.OpenWeb())
    if (web.DoesUserHavePermissions(SPBasePermissions.BrowseDirectories))
    // Get a folder by server-relative URL.
    string url = web.ServerRelativeUrl + "/shared documents/test folder";
    SPFolder folder = web.GetFolder(url);
    try
    // Get the folder's Guid.
    Guid id = folder.UniqueId;
    Console.WriteLine(id);
    // Get a folder by Guid.
    folder = web.GetFolder(id);
    url = folder.ServerRelativeUrl;
    Console.WriteLine(url);
    catch (System.IO.FileNotFoundException ex)
    Console.WriteLine(ex.Message);
    Console.ReadLine();
    http://msdn.microsoft.com/en-us/library/office/ms461676(v=office.15).aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/801d1a06-0c9b-429b-a848-dd6e24de8bb9/sharepoint-webservice-to-get-the-guid-of-the-folder?forum=sharepointdevelopmentlegacy
    You can also try below:
    http://blogs.msdn.com/b/crm/archive/2008/03/28/contextual-sharepoint-document-libraries-and-folders-with-microsoft-dynamics-crm.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d2d5d7cf-9bbd-4e0f-a772-ecdce4e6149f/how-to-fetch-document-guid-from-sharepoint-document-library-using-sharepoint-web-service?forum=sharepointdevelopmentlegacy
    http://stackoverflow.com/questions/2107716/how-to-get-guid-of-a-subfolder-in-a-document-library-programmatically

  • How to attach an URL to a CJ20N document ?

    Hello !
    I have succeeded in attach an URL to Purchase Order (ME21N) through this little BAPI I made :
    FUNCTION ZBAPI_PO_INSERT_URL.
    ""Interface locale :
    *"  IMPORTING
    *"     VALUE(W_URL) TYPE  SOLISTI1-LINE
    *"     VALUE(W_TITRE) TYPE  SODOCCHGI1-OBJ_DESCR
    *"     VALUE(W_NUMERO_COMMANDE) TYPE  SRGBTBREL-INSTID_A
    DATA: w_object type table of SOLISTI1,
          wa_object type SOLISTI1,
          w_doc_data type SODOCCHGI1,
          w_doc_info type SOFOLENTI1.
    concatenate '&KEY&' w_url into wa_object-line.
    append wa_object to w_object.
    w_doc_data-obj_name = 'INFORMATION'. "par défaut
    w_doc_data-obj_descr = w_titre.
    w_doc_data-obj_langu = 'FR'.
    CALL FUNCTION 'SO_DOCUMENT_INSERT_API1'
      EXPORTING
        FOLDER_ID = 'FOL32000000000004' "Référence du répertoire par 'défaut'
        DOCUMENT_DATA = w_doc_data
        DOCUMENT_TYPE = 'URL'
      IMPORTING
        DOCUMENT_INFO = w_doc_info
      TABLES
        OBJECT_CONTENT = w_object
    data : obj_role_1 like borident,
           obj_role_2 like borident,
           w_id type string.
    obj_role_1-objkey = W_NUMERO_COMMANDE.
    obj_role_1-objtype = 'BUS2012'.
    concatenate 'FOL32000000000004' w_doc_info-object_id into w_id.
    obj_role_2-objkey = w_id.
    obj_role_2-objtype = 'MESSAGE'.
    CALL FUNCTION 'BINARY_RELATION_CREATE_COMMIT'
      EXPORTING
        OBJ_ROLEA = obj_role_1
        OBJ_ROLEB = obj_role_2
        RELATIONTYPE = 'URL'
    ENDFUNCTION.
    I would like to do the same with the CJ20N ! It seems that the value of Object type is BUS2054 but it doesn't work at all.
    Must miss something...
    If you can help...
    Thanks for any clue !!
    EDIT : See my other post :
    Edited by: Smoltok on Sep 16, 2011 2:36 PM

    BMP image?
    Or Is it possible to insert any text instead of image?
    But I need to work just like the stamper sample present in sdk. that is when i click on the pdf document any text has to be inserted instead of the image. I should not be to type the text in the pdf, but it should work exactly similiar to the stamper sample, but text has to be inserted instead of an image.
    How can this be done? Is it possible to do?
    Please help.

  • Find out room ID with a given document URL

    Hi, Experts,
    I am new to KM.
    I wanna create an application, which can find out the room ID after given a document URL.
    doc URL short ID e.g.https://abc.com/irj/go/nui/sid/d02704ea-1111-2e10-f0b3-adf62453643d
    room ID e.g. 70823d8e-5d0b-6f10-a222-ec780d200f78
    the given URL will link to a document.
    I need to find out which room stores this document.
    based on the room ID found out, I will know the room admin
    Any idea or suggestions about which API or method I could use? to get the room ID after the doc URL given?
    Thanks a lot!

    Hi, Experts,
    I am new to KM.
    I wanna create an application, which can find out the room ID after given a document URL.
    doc URL short ID e.g.https://abc.com/irj/go/nui/sid/d02704ea-1111-2e10-f0b3-adf62453643d
    room ID e.g. 70823d8e-5d0b-6f10-a222-ec780d200f78
    the given URL will link to a document.
    I need to find out which room stores this document.
    based on the room ID found out, I will know the room admin
    Any idea or suggestions about which API or method I could use? to get the room ID after the doc URL given?
    Thanks a lot!

  • New user of Mountain Lion. I find that when I attach a URL as a link to Mail 6.0. The font and font size changes!!!!

    I have a problem with either Mountain Lion, Safari or Mail 6.0.
      When I try to attach a URL as a link that is taken from Safari to mail 6.0 the font and font size changes!!!!!
    It changes from comic sans 24 to heltvekia 12!!!! What the heck is going on??????
    Thanks for any help you can shed on this problem.
      BBC1050

    I also upgraded to Lion and do have font problems in Mail. Just in some mails, including my own signature.
    I just updated today with 10.7.1, but still have the font problem.
    Does anyone know if Apple will solve this?

  • How to find the attached docuements in po

    hi gurus,
    i have a typical issue, we r using ecc6.0.
    whenwe attach docuement to a sales docuement in sales order it has to be view in the production order.
    but we r not able to c the attachemnt in the production order pls help me in this.
    very urgent

    Hey,
    Plz ckeck out the schedule line category.whether is indicator tick on Requirement, Product allocation, availabilty check,assembly etc or not.
    If not plz do that and also check whether u have created Copy control setting or not.
    plz let me know.
    thanks
    mk

  • Attach document to KM Discussion

    Hi!
    I would like to know if there is a way to attach documents to KM Discussions.
    I'm migrating an application from MS Sharepoint Portal Server to SAP EP and this is a very strong requirement.
    Thanks in advance,
    Fede

    Hi Praveen,
    First of all, thanks for your answer!
    I've read the URL you gave and i've found something that worried me. It says "The repository attachment service is used by Collaboration to store attachments (documents) <b>for tasks.</b> ".
    Is it only for Tasks? I need it for discussions...
    I've navigated in my portal to System Administration => System Configuration => KM => CM => Repository Services
    The only service I see there is "feedback". Do I have to create a new one?
    I couldn't find any information at help.sap.com. Do you have more information about this?
    Tank you very much!!!

  • Attaching Documents

    Hi guys-
    I did a search and came up with some info for attaching
    documents when creating a CD, but I couldnt find anything for a
    LMS. I have a learning module that contains 2 attachments. I have
    attached them to "buttons" in captivate, but I can see from the
    button path that they are "linked" to my desktop.
    I tried putting the files in the folder that I will upload to
    our LMS, but that file needs to be zipped and I dont think the path
    will work....
    Any suggestions on how to attach these documents (short of
    hosting them on an external site and linking into our LMS)

    Hi Nathan
    By far the simplest method is to just type only the Document
    File Name where you specify the URL or File Name.
    Using that approach should make the link relative. This way
    the Captivate should only expect the document it is looking for to
    be in the same relative folder.
    Cheers... Rick

  • When I try to open the "Documents" folder on my toolbar it just crashes, also my web browsers crash when I try to attach documents to emails.

    As the title states my "Documents" folder crashes and when I try to attach documents to emails the browsers also crash.
    Here is my crash report
    Process:    
    Finder [1046]
    Path:       
    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier: 
    com.apple.finder
    Version:    
    10.7.5 (10.7.5)
    Build Info: 
    Finder_FE-751005001000000~21
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [141]
    Date/Time:  
    2013-02-14 10:12:19.104 -0800
    OS Version: 
    Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Crashed Thread:  4  Dispatch queue: TNodeEngine 0x10a889670
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    000000010a175000-000000010a67e000 [ 5156K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Application Specific Information:
    objc[1046]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff9a5e967a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff9a5e8d71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff9306a50c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff93072c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff93072486 CFRunLoopRunSpecific + 230
    5   com.apple.HIToolbox      
    0x00007fff8df0e2bf RunCurrentEventLoopInMode + 277
    6   com.apple.HIToolbox      
    0x00007fff8df1556d ReceiveNextEventCommon + 355
    7   com.apple.HIToolbox      
    0x00007fff8df153fa BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit         
    0x00007fff908e4779 _DPSNextEvent + 659
    9   com.apple.AppKit         
    0x00007fff908e407d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    10  com.apple.AppKit         
    0x00007fff908e09b9 -[NSApplication run] + 470
    11  com.apple.AppKit         
    0x00007fff90b5ceac NSApplicationMain + 867
    12  com.apple.finder         
    0x000000010a17b12f 0x10a175000 + 24879
    13  com.apple.finder         
    0x000000010a17b0f4 0x10a175000 + 24820
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff9a5eb7e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff96a51786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff96a50316 _dispatch_mgr_thread + 54
    Thread 2:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x00007fff9a5eadf2 __select + 10
    1   com.apple.CoreFoundation 
    0x00007fff930bbc8b __CFSocketManager + 1355
    2   libsystem_c.dylib        
    0x00007fff936198bf _pthread_start + 335
    3   libsystem_c.dylib        
    0x00007fff9361cb75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff9a5eb192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff9361b594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff9361cb85 start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: TNodeEngine 0x10a889670
    0   com.apple.DesktopServices
    0x00007fff8e7eb438 BTreeIterator::PushForward(Page*) + 30
    1   com.apple.DesktopServices
    0x00007fff8e7eb3f3 BTreeIterator::BuildStack(IAOrderedStorable const*) + 81
    2   com.apple.DesktopServices
    0x00007fff8e7eb377 BTreeIterator::BTreeIterator(BTree*) + 31
    3   com.apple.DesktopServices
    0x00007fff8e7eb338 BTree::MakeIterator() + 34
    4   com.apple.DesktopServices
    0x00007fff8e7e940e TPropertyInfo::MakeProperties(TPropertyInfoList*, unsigned char*, unsigned int, bool) + 216
    5   com.apple.DesktopServices
    0x00007fff8e874cf4 TPropertyInfo::CreatePropertyList(TCountedPtr<TFSInfo> const&, double&, long long&, bool, bool, TPropertyInfoList*) + 422
    6   com.apple.DesktopServices
    0x00007fff8e874afa TPropertyInfo::CreatePropertyList(TCountedPtr<TCFURLInfo> const&, double&, long long&, bool, bool, TPropertyInfoList*) + 154
    7   com.apple.DesktopServices
    0x00007fff8e7e924e THFSPlusPropertyStore::Open(bool, bool) const + 130
    8   com.apple.DesktopServices
    0x00007fff8e7e91ae THFSPlusPropertyStore::GetProperties(bool) const + 38
    9   com.apple.DesktopServices
    0x00007fff8e7e8aa4 TNode::GetExtendedPropertyStore(bool) const + 208
    10  com.apple.DesktopServices
    0x00007fff8e7e8917 TNode::GetExtendedProperty(unsigned int, TPropertyReference&, bool) const + 39
    11  com.apple.DesktopServices
    0x00007fff8e7e7566 TNode::GetProperty(unsigned int, TPropertyReference&, unsigned int) const + 578
    12  com.apple.DesktopServices
    0x00007fff8e7e70b6 TNode::GetProperty(unsigned int, TPropertyReference&, OpaqueNodeRequest* const&, unsigned int) const + 68
    13  com.apple.DesktopServices
    0x00007fff8e7e7017 GetNodeProperty(OpaqueNodeRef*, unsigned int, TPropertyReference&, OpaqueNodeRequest*, unsigned int) + 162
    14  com.apple.DesktopServices
    0x00007fff8e7eeeed GetNodePropertyAsBoolean + 75
    15  com.apple.finder         
    0x000000010a1976e4 0x10a175000 + 141028
    16  com.apple.finder         
    0x000000010a197618 0x10a175000 + 140824
    17  com.apple.finder         
    0x000000010a1bff75 0x10a175000 + 307061
    18  com.apple.finder         
    0x000000010a1bdfb3 0x10a175000 + 298931
    19  com.apple.finder         
    0x000000010a1bde91 0x10a175000 + 298641
    20  com.apple.finder         
    0x000000010a196968 0x10a175000 + 137576
    21  libdispatch.dylib        
    0x00007fff96a4fa82 _dispatch_call_block_and_release + 18
    22  libdispatch.dylib        
    0x00007fff96a512d2 _dispatch_queue_drain + 264
    23  libdispatch.dylib        
    0x00007fff96a5112e _dispatch_queue_invoke + 54
    24  libdispatch.dylib        
    0x00007fff96a50928 _dispatch_worker_thread2 + 198
    25  libsystem_c.dylib        
    0x00007fff9361b3da _pthread_wqthread + 316
    26  libsystem_c.dylib        
    0x00007fff9361cb85 start_wqthread + 13
    Thread 5:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib   
    0x00007fff9a5eb642 getdirentriesattr + 10
    1   com.apple.CoreServicesInternal
    0x00007fff9798766f ftsattr_build + 1777
    2   com.apple.CoreServicesInternal
    0x00007fff9798800a ftsattr_read$INODE64 + 359
    3   com.apple.CoreServicesInternal
    0x00007fff97983796 _ZL17_GetDirectoryURLsP16_CFURLEnumerator + 1134
    4   com.apple.CoreServicesInternal
    0x00007fff97983eb9 _URLEnumeratorGetNextURL + 118
    5   com.apple.DesktopServices
    0x00007fff8e86cc24 TFSIterator::NextRaw(TCountedPtr<TFSInfo>&) + 44
    6   com.apple.DesktopServices
    0x00007fff8e7ec95d TFSIterator::Next(TCountedPtr<TFSInfo>&) + 55
    7   com.apple.DesktopServices
    0x00007fff8e7ec3ab TFSInfoSynchronizer::FetchChildren() + 195
    8   com.apple.DesktopServices
    0x00007fff8e7d8ed3 TNode::SynchronizeChildren(unsigned int, TNodeEventPtrSet&) + 163
    9   com.apple.DesktopServices
    0x00007fff8e7d898f TNode::HandleSync(unsigned int) + 1957
    10  com.apple.DesktopServices
    0x00007fff8e7d81bf TNode::HandleSync(TCountedPtr<TNodeTask> const&, TNodePtr const&) + 45
    11  com.apple.DesktopServices
    0x00007fff8e81528b TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 717
    12  com.apple.DesktopServices
    0x00007fff8e83b041 __PostNodeTaskRequest_block_invoke_010 + 82
    13  com.apple.DesktopServices
    0x00007fff8e84e978 ExceptionSafeBlock(void ( block_pointer)()) + 15
    14  com.apple.DesktopServices
    0x00007fff8e83afe9 __PostNodeTaskRequest_block_invoke_0 + 88
    15  libdispatch.dylib        
    0x00007fff96a4fa82 _dispatch_call_block_and_release + 18
    16  libdispatch.dylib        
    0x00007fff96a512d2 _dispatch_queue_drain + 264
    17  libdispatch.dylib        
    0x00007fff96a5112e _dispatch_queue_invoke + 54
    18  libdispatch.dylib        
    0x00007fff96a50928 _dispatch_worker_thread2 + 198
    19  libsystem_c.dylib        
    0x00007fff9361b3da _pthread_wqthread + 316
    20  libsystem_c.dylib        
    0x00007fff9361cb85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff9a5eb192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff9361b594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff9361cb85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff9a5eae42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff935cfdea nanosleep + 164
    2   com.apple.Foundation     
    0x00007fff976cbee1 +[NSThread sleepUntilDate:] + 181
    3   com.apple.imageKit       
    0x00007fff92e5e0b8 -[IKTaskManager taskLoop] + 2031
    4   com.apple.Foundation     
    0x00007fff9769c72a -[NSThread main] + 68
    5   com.apple.Foundation     
    0x00007fff9769c6a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib        
    0x00007fff936198bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff9361cb75 thread_start + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x00007ff2cc4c1730  rbx: 0x00007ff2cc486d10  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x000000010a77c000  rsi: 0x0000000000000000  rbp: 0x000000010aa918e0  rsp: 0x000000010aa918c0
       r8: 0x0000000000000015   r9: 0x0000000000000c16  r10: 0x0000000000000000  r11: 0x00007ff2cc4c1730
      r12: 0x0000000000000000  r13: 0x0000000000005404  r14: 0x00007fff7db3ac80  r15: 0x00007ff2cc4863c0
      rip: 0x00007fff8e7eb438  rfl: 0x0000000000010297  cr2: 0x0000000000000000
    Logical CPU: 1
    Binary Images:
    0x10a175000 -   
    0x10a67dff7  com.apple.finder (10.7.5 - 10.7.5) <83F36736-790D-3582-AC9D-91EFCC3DDB9D> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x10ac6e000 -   
    0x10ac7cfff  libGPUSupport.dylib (??? - ???) <9FF8DDA2-7CB1-3888-8AAE-227C7691CB98> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x10ac83000 -   
    0x10acb1ff7  GLRendererFloat (??? - ???) <06CA5D0B-BC5F-3CC7-836D-A02F7DB92BE8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x10acba000 -   
    0x10acc4fef  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <4572AD1E-D1D1-3412-AFCC-D37037B1FAB5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x10acca000 -   
    0x10accdff7  libCoreFSCache.dylib (??? - ???) <0D155750-7910-32C5-8327-924FC1089442> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x10ae00000 -   
    0x10af5afff  libGLProgrammability.dylib (??? - ???) <90390984-70BC-365C-AB3E-16C35C4240CB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x10ca04000 -   
    0x10ca19fff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
    0x10e197000 -   
    0x10e197ff1 +cl_kernels (??? - ???) <34DEB4B0-9C64-4811-944E-FF92BCA66B5C> cl_kernels
    0x10e1a6000 -   
    0x10e1a7ff3 +cl_kernels (??? - ???) <1D44C992-05AF-4D7E-B80A-8B741612540B> cl_kernels
    0x10e1d6000 -   
    0x10e1d7ff2 +cl_kernels (??? - ???) <73F129DD-8F65-4F92-9B69-65E3ED9F9E5F> cl_kernels
    0x10e1e7000 -   
    0x10e39ffff  GLEngine (??? - ???) <59179FEC-D0E2-38B3-BD49-765506A645AC> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x10eeaf000 -   
    0x10f296fe7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.32.12 - 7.3.2) <5C9C9474-BA99-33A6-BAD8-628224491FED> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
    0x10f4e3000 -   
    0x10f4e4ff3 +cl_kernels (??? - ???) <2108CD93-008B-48E9-869F-3A54A28AC7C4> cl_kernels
    0x10fbd0000 -   
    0x10fc6eff7  unorm8_argb.dylib (2.0.19 - compatibility 1.0.0) <936B4155-1C6B-3928-9FFA-F72E7163872E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
    0x10fc8d000 -   
    0x10fd2cff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <47DA7D73-C52D-322F-A08F-4DB320A65373> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x7fff69d75000 -
    0x7fff69da9baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff8da98000 -
    0x7fff8da98fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8da99000 -
    0x7fff8da99fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8da9a000 -
    0x7fff8ddbcfff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <3A04B8FC-CFA6-3AEB-8FDF-B0525B5A4C82> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8ddbd000 -
    0x7fff8de38ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8de56000 -
    0x7fff8de6bfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8de6c000 -
    0x7fff8deadfff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8deae000 -
    0x7fff8deb1fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8deb2000 -
    0x7fff8deb3fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8deb4000 -
    0x7fff8defbff7  com.apple.CoreMedia (1.0 - 705.94) <700C6863-7A8F-34FA-8B1D-7659EC95000B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8df0c000 -
    0x7fff8e238fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8e274000 -
    0x7fff8e274fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff8e275000 -
    0x7fff8e27cfff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff8e2b6000 -
    0x7fff8e3b0ff7  com.apple.DiskImagesFramework (10.7.4 - 331.7) <BEBA6D78-08E0-3B99-B77B-A5CBF3344834> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff8e3b1000 -
    0x7fff8e7cfff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x7fff8e7d0000 -
    0x7fff8e8e9fff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff8e8ea000 -
    0x7fff8e8f7ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
    0x7fff8e8f8000 -
    0x7fff8eca2fe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff8eca3000 -
    0x7fff8ed28ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8ed68000 -
    0x7fff8edd8fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff8edd9000 -
    0x7fff8ee3bff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8ee3c000 -
    0x7fff8ee52ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8ee53000 -
    0x7fff8ee74fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8eeb3000 -
    0x7fff8eef5ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8ef4d000 -
    0x7fff8ef59fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x7fff8ef5c000 -
    0x7fff8f063fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff8f08e000 -
    0x7fff8f090ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8f159000 -
    0x7fff8f181fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8f182000 -
    0x7fff8f18dff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff8f1a3000 -
    0x7fff8f32eff7  com.apple.QTKit (7.7.1 - 2339) <2BC2CF44-CEAF-3D3B-A250-CA59D6AFB0B0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff8f32f000 -
    0x7fff8f33bfff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8f34a000 -
    0x7fff8f811fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff8f812000 -
    0x7fff8f856ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <B2A38D2C-7E82-34C5-8896-48C37B0E64A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8f857000 -
    0x7fff8f90aff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8f90b000 -
    0x7fff8f946fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff8f947000 -
    0x7fff8f977ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8f978000 -
    0x7fff8f995fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff8f9e3000 -
    0x7fff8f9e6fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8f9e7000 -
    0x7fff8faf4fff  libJP2.dylib (??? - ???) <053950A7-6B92-320E-A6D7-808CE424F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8faf5000 -
    0x7fff8fafcff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8fafd000 -
    0x7fff8fb02fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff8fb03000 -
    0x7fff8fd74fff  com.apple.QuartzComposer (5.0 - 236.10) <F8560AEC-4E26-3A43-BE0A-B20FCB5B2E7D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff8fd75000 -
    0x7fff8fd77fff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff8fd78000 -
    0x7fff8fd7afff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8fd7b000 -
    0x7fff8fe59fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff8fe8d000 -
    0x7fff8fe98fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8fe99000 -
    0x7fff8feb3fff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff8feb4000 -
    0x7fff9065cfff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff9065d000 -
    0x7fff9066bff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff9066e000 -
    0x7fff9068afff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x7fff9068b000 -
    0x7fff906f3ff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff906f4000 -
    0x7fff907f1ff7  com.apple.avfoundation (2.0 - 180.50) <A2EAE4E6-4DBA-3AAB-A387-7E72B93B6DA9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff907f2000 -
    0x7fff908dbfff  com.apple.Bluetooth (4.0.8 - 4.0.8f17) <46F432D0-7E25-3900-A5B2-DDB4C2781036> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff908dc000 -
    0x7fff914e2fff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff914e3000 -
    0x7fff91522fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff915b2000 -
    0x7fff918d7ff7  com.apple.AddressBook.framework (6.1.3 - 1091) <5A8BEED1-229C-3A9C-8281-581127A1B9B5> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff91925000 -
    0x7fff91926fff  com.apple.ServerInformation (1.0 - 1) <EE6BFCB2-C727-3CE6-B8C9-834230B2646B> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x7fff91927000 -
    0x7fff91967ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
    0x7fff9198d000 -
    0x7fff91991fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff9199d000 -
    0x7fff919a0ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff919a1000 -
    0x7fff919a2fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff919fc000 -
    0x7fff91a57fff  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <9F7C4D81-5CC7-3D66-AC66-81EA9A5EAB94> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff91dac000 -
    0x7fff91e03fff  com.apple.Suggestions (1.1 - 85.1) <DE511C42-D2F2-309C-80EE-53862245DE22> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x7fff91e04000 -
    0x7fff91e9aff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff91e9b000 -
    0x7fff91ea9ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
    0x7fff920bd000 -
    0x7fff920c3fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
    0x7fff920c4000 -
    0x7fff920efff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    0x7fff920f0000 -
    0x7fff92117fff  com.apple.framework.internetaccounts (1.2 - 3) <28D44E21-54F2-366B-B9D9-1DB788EF0278> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x7fff92118000 -
    0x7fff92145fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff92146000 -
    0x7fff92579ff7  com.apple.VideoToolbox (1.0 - 705.94) <72AD524C-0616-3C69-BA1F-8D444F97F5A2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff9257a000 -
    0x7fff925affff  com.apple.securityinterface (5.0 - 55022.6) <4D6DAF8F-7873-3992-A6D6-478C7664FA39> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff925b0000 -
    0x7fff92677ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff92678000 -
    0x7fff92678fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff92679000 -
    0x7fff926e4ff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff92b76000 -
    0x7fff92bd1ff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff92bd2000 -
    0x7fff92bfdfff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
    0x7fff92bfe000 -
    0x7fff92ce2e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff92d36000 -
    0x7fff92d37ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff92d93000 -
    0x7fff9300bfff  com.apple.imageKit (2.1.2 - 1.0) <23470050-28FB-3B09-8E27-ADC371B0E4B8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff9300c000 -
    0x7fff9301eff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff93038000 -
    0x7fff93039ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff9303a000 -
    0x7fff9320eff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff9322e000 -
    0x7fff932c0ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff932c1000 -
    0x7fff934ebfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff93561000 -
    0x7fff93562fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff935a9000 -
    0x7fff935b4ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff935c1000 -
    0x7fff935c6ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff935c7000 -
    0x7fff935cafff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff935cb000 -
    0x7fff936a8fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff936a9000 -
    0x7fff936aefff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff9374b000 -
    0x7fff93759fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff9375a000 -
    0x7fff9375afff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff939c6000 -
    0x7fff939cbfff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff939cc000 -
    0x7fff939ffff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff93a00000 -
    0x7fff93a26fff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff93a27000 -
    0x7fff93a4bfff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff93a51000 -
    0x7fff93a7afff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff93a91000 -
    0x7fff93a91fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff93a92000 -
    0x7fff93ab1fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff93ab2000 -
    0x7fff93abffff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff93ac0000 -
    0x7fff93b36fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff93b37000 -
    0x7fff93b3dfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff93b3e000 -
    0x7fff93b91fff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff93c11000 -
    0x7fff93c2eff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff93c2f000 -
    0x7fff93c42ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
    0x7fff93c43000 -
    0x7fff93c49ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff93db7000 -
    0x7fff93db7fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff93db8000 -
    0x7fff93dbcfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
    0x7fff93dbd000 -
    0x7fff93dcbfff  com.apple.Collaboration (63.2 - 63.2) <B76A62A5-EE5E-3D7F-8F1D-F80E8E78FFD8> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
    0x7fff93e4f000 -
    0x7fff93e65fff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff93e66000 -
    0x7fff93ee9fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff93eea000 -
    0x7fff93f06ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff93f07000 -
    0x7fff93f09fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
    0x7fff93f0a000 -
    0x7fff93f21fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff93f22000 -
    0x7fff93f31fff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff93f34000 -
    0x7fff93fa7fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff93fa8000 -
    0x7fff93ff4ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff93ff5000 -
    0x7fff93ffcfff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff948fe000 -
    0x7fff9493efe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff9493f000 -
    0x7fff94940ff7  libsystem_sandbox.dylib (??? - ???) <2A09E4DA-F47C-35CB-B70C-E0492BA9F20E> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff94941000 -
    0x7fff94941fff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff94942000 -
    0x7fff94947fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff94b12000 -
    0x7fff94b24ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff94b25000 -
    0x7fff94bb8fff  com.apple.PDFKit (2.6.4 - 2.6.4) <4C58283C-3F45-31C6-9896-5EFFFF82D840> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff94bb9000 -
    0x7fff94bbdfff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <35D606B1-7AD9-38E3-A2A9-E92B904BDDE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff94bbe000 -
    0x7fff94e43ff7  com.apple.RawCamera.bundle (4.04 - 680) <F9A2656C-CE71-326E-BD6D-077487F49D74> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff94e48000 -
    0x7fff94e5dfff  com.apple.FileSync.framework (6.0.1 - 502.2) <65A5CD1B-766D-33F8-8AC1-0984499838E9> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x7fff94e5e000 -
    0x7fff94e87fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff94e9a000 -
    0x7fff9503aff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff9505f000 -
    0x7fff95160fff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff95aa8000 -
    0x7fff95aaffff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff95ab0000 -
    0x7fff95af4ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff95af5000 -
    0x7fff95b6bff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
    0x7fff95b6c000 -
    0x7fff95bc0fff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff95bc1000 -
    0x7fff95bd8fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff95d1c000 -
    0x7fff95dc1fff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff95dc2000 -
    0x7fff95dc8fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff95dc9000 -
    0x7fff95ea8fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <E982B3FF-4788-3FA2-B9F1-53E44E2EA9BA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff9622d000 -
    0x7fff96339fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff9633a000 -
    0x7fff96497fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff966c4000 -
    0x7fff9673afff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff9679d000 -
    0x7fff96a11fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff96a12000 -
    0x7fff96a4dfff  com.apple.LDAPFramework (3.2 - 120.2) <275D4298-C435-3E98-AA25-95D9D0A56550> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff96a4e000 -
    0x7fff96a5cfff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    0x7fff96a5d000 -
    0x7fff973fba27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff973fc000 -
    0x7fff97563fff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff97564000 -
    0x7fff97569fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
    0x7fff975b1000 -
    0x7fff975fffff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff97600000 -
    0x7fff9763efff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff97642000 -
    0x7fff9795bfff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff9795c000 -
    0x7fff97965ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff97966000 -
    0x7fff97992ff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff97993000 -
    0x7fff97a34fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff97a35000 -
    0x7fff97a91ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff97a92000 -
    0x7fff97a9cff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
    0x7fff97ba1000 -
    0x7fff97ba2fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
    0x7fff97ba3000 -
    0x7fff97e98ff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff97e99000 -
    0x7fff97eeaff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff97f2a000 -
    0x7fff97f53ff7  com.apple.framework.Apple80211 (7.4.1 - 741.1) <F60DA830-84ED-3473-8DE8-611A9D9B56FF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff97f54000 -
    0x7fff97f68ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff97f69000 -
    0x7fff97f6dff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff97f6e000 -
    0x7fff98052ff7  com.apple.CoreServices.OSServices (478.49 - 478.49) <E5BF2069-ED1A-31F5-AFC2-4A530BD467AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff9806c000 -
    0x7fff98072ff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x7fff98073000 -
    0x7fff980dbff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff980dc000 -
    0x7fff98212fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff98213000 -
    0x7fff9824cfe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
    0x7fff9824d000 -
    0x7fff982a1ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Libr

    bump for help

  • Loading attached documents from SAP R/3 system to BW/BI system

    Dear Experts,
    In SAP R/3 system, I created generic datasource to extract sales activities which are entered with transaction code VC01N.  In SAP R/3 system, it is possible to attach documents (like word, Excel, pdf) to the sales activity. I need to upload these documents to SAP BW system as document to sales activity master data. I couldn't find where these attached documents are stored in SAP R/3 system. How can I find these documents?
    If I find these documents, I will be able upload these to BW using "How to Mass Upload Documents to BW" document.
    Thanks,
    Ozgur Yavuzkara

    Hi Girish,
    I don't understand your question completely. Is your question related to the Internet Transaction Server? If it is a Web Dynpro question, I can move this thread to the Web Dynpro forum. What do you think?
    - Henning

  • How to make Safari browser always open a new web page in a new Safari browser window which was clicked from a PDF document URL

    Hi
    I have a web application which would enable users to see a list of PDF document on the web page and when the user select the PDF document, it will be open by a adobe PDF view
    Within the content of the PDF document, it will contact URL links to some other portal web pages which we would like these other web pages to be open in a new browser window, but our testing shows that the new web pages may not always open in a new browser window.
    Could you help to advise how I can enforce that new web pages that are clicked from the PDF document can always be open in a new Safari browser window ?
    Thanks in advance.
    Regards
    Sen Lee 

    Hello,
    In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:
    #Go to ''Tools'' > ''Options'' (or ''Firefox'' > ''Options'').
    #In the Options window, select the ''Applications'' tab.
    #In the ''Search'' field, type ''PDF''. You should find ''Portable Document Format (PDF)''.
    #On the right handside you should find an ''Action'' column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose ''Preview in Firefox''.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Create External document (URL) in SAP Personas

    Hi Smart People!
    To save some steps and incorporate a scanner I am working on creating buttons to "Attach Documents" in different areas such as MM03, FB03, and a few others where we have to keep a scanned in document attached to certain other Materials or Payables and such. All docs are scanned in and saved online and then we use the "create external document (url) menu option to link it where it is needed in SAP.
    In one place it works just fine and in the others it is not working at all and custom button or even just following the already existing menu options it keeps giving me this error. I tried search on the SCN and Google and no such luck on this error. Anyone have any ideas? See pic below and also the text below is the separated error so you can see what it actually says.
    [Unknown] ses[0]/wnd[0]/usrUSRAREA/ctlcntITS/itsdoc
    Thank you for any help you can give!

    That screen shot is for the Silverlight browser plugin.
    You can check your Personas version and patch level in System -> Status. Clicking on the magnifying glass in the SAP System Data box will list all the components of the ERP system. It will tell you what Personas version and SP is installed.
    Something like this:
    The above means Personas 2.0 SP2.
    If you indeed happen to have Personas 2.0 with no support package (so SP level says 0000), then the first thing I'd recommend is to bring the system to the latest level, which would be like in the screen shot, and then trying again. There is a good chance the problem will be resolved.
    If your system is completely up-to-date and it still gives you trouble, then create an OSS incident.

  • How to find out the URL of the user coming from?

    Hi folks,
    From the HttpServletRequest, is there a way to find out the URL of the user coming from?
    Thanks in advance!
    Billy

    It is strange. The link is on a different http site eg. http://www.othersite.com. The link is pointing https://www,mysite.com/index.html. I put the alert(document.referer) on the index.html. Using FireFox will show the alert http://www.othersite.com every time. However, on IE, the first time is empty. The second time I click on the link, it will show http://www.othersite.com. Very consistent.

Maybe you are looking for

  • USB remote access problem for E3000?

    Hi, I recently got the E3000 router because it has USB and is dual band simultaneous router. It's connected to ATT modem+router. I've disabled wireless on ATT 2wire modem and connected the linksys router to it. Now after a lot of messing with it i ha

  • IPad 2 & Apple Digital AV Adapter.

    Hello all.  I recently purchased a Apple Digital AV Adapter to connect my iPad 2 to my television.  It worked liked a charm immedialtely mirroring what was on my iPad screen.  I used Netflix as well and it went fine.  The problem is with my Apple Vid

  • Problems with non-ascii keywords

    I have some problems with non-ascii keywords that makes the whole keyword feature useless for me. I don't know if I'm doing something wrong or if there something I'm missing completely. The problem is that when I enter something like "grön" iPhoto so

  • My iChat says I don't have a camera on my macbook.  how do I get this turned back on?

    Any one know how to get my camera to be recognized on my Macbook?  It says I don't have a camera installed on my computer.  I'm running Mac OS X 10.5 and I haven't found any fix besides updating my OS.  What are my options...

  • Error Logging in B2B Business Message Status Reports and Error Reports.

    Hi, Could someone please let us know as to how the error messages are being shown up in the b2b frontend in the Business Message Details Report and Error Reports. In some of the cases the error message logging is not happening properly and even again