SERVICE HANG REPORT - hpqddsvc

Currently, I have eight (8) home computer networked on my home networking system. The computers that utilize Vista 32 bit, Vista 64 bit, and Windows 7 Ultimate 64 bit operating systems continue to send a notification to the Problems and Report section, stating, "hpqddscv   Service Hang Report."
I am using an HP All-in-One Officejet 7410 printer and HP Laserjet 2430tn printer.
All the computers appear to be sending requested items to be printed without a problem. However, as indicated, in the Problems and Report section, the aforementioned message is repeatedly displayed numerous times.
Does anyone know what this message refers to and how to correct/eliminate this message.
Any help would be appreciated.
Thank you.
This question was solved.
View Solution.

The message refers to a service called HP CUE Device Discovery Service. Lets try and stop the service and see if the error pops up again.
1. Click on the start menu and click on 'Run', and then type 'services.msc' and press the Enter button.
2. In the Services window, look for HP CUE Device Discovery Service, and double click on it.
3. You should see a button labelled 'STOP'. click on that button.
4. Above this, you should find something which says 'Startup Type'. Change that to 'Disabled'
5. Click on the 'Apply' button and close all windows.
Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
Click on the BLUE KUDOS button on the left to say "Thanks"
I am an ex-HP Employee.

Similar Messages

  • Tempo service hangs every time I start laptop

    Hi I have a Satellite L350 - 17P and every day it starts up it locks up. It works for about a minute then freezes. On starting it up the 2nd time it works perfectly. Any one have any ideas how to stop this pc doing this? It's a few years old now and I was not told it did this by my son until I used it one day!
    Tempo service hangs every time I start the computer.
    I have done a search for Version.txt and minidump.mdmp but can't find them.
    Can anybody help?
    Details below.
    Description:
    Service Notebook Performance Tuning Service hung on starting.
    Problem signature
    Problem Event Name: ServiceHang
    Service Name: TempoMonitoringService
    Image Name: TempoSVC.exe"
    Image Version: 0.0.0.0
    Service Type: 10
    Start Type: 2
    OS Version: 6.0.6000.2.0.0.768.3
    Locale ID: 2057
    Files that help describe the problem
    Version.txt
    minidump.mdmp

    Well it hung again even after uninstalling and installing tempro.
    I decided to unistall it completely as hoped this would stop it freezing up but it didn't.
    Today it froze as per usual but when I checked the problem reporting there was not a report nor did it give me any information as to why it froze again today.
    Totally at a loss as to why this is happening, and how can it be fixed if there is no reason given for it freezing???

  • Regarding selection screen fields in Service PO Report

    Hello All,
       I have developed a Service PO Report with input parameters like Purch. Organisation, Material Group, Purchasing Group, Plant, PO No., Vendor, Activity, Entry Sheet No., GR No. I have used the tables ekko, ekpo, ekbe, essr, ml_esll, mseg and lfa1.
    When I input a particular Purch. Organisation,   I am able to get the output filtered by that Purch. Organisation. Similarly, when I input other fields individually, I get the filtered output based on the value of the fields that I inputted.
    The problem is that when I select only a particular GR No. in the selection screen, I am not able to get the filtered output for that particular GR No. Its showing all the unnecessary data for that particular GR No.
    Except this field, the report is running fine. So can anybody guide me in getting the filtered output based on GR No.?
    I have linked tables ekko, ekbe and mseg.

    I have pasted the code below for analysis.
    form fetch.
    select ek~ebeln
           ek~loekz
           ek~lifnr
           ek~ekorg
           ek~ekgrp
           ek~bedat
           ek~bukrs
           ep~ebelp
           ep~txz01
           ep~werks
           ep~matkl
           ep~mwskz
           ep~menge
           ep~meins
           ep~netpr
           ep~netwr
           ep~mwskz
           into corresponding fields of table it_ekko
           from ekko as ek join ekpo as ep
           on ek~ebeln = ep~ebeln
           and ek~loekz = ep~loekz
           and ek~bukrs = ep~bukrs
           where ek~ebeln in s_ebeln
           and ek~lifnr in s_lifnr
           and ek~ekorg in s_ekorg
           and ek~ekgrp in s_ekgrp
           and ep~werks in s_werks
           and ep~matkl in s_matkl.
    if sy-subrc = 0.
        select lifnr name1 from lfa1
           into corresponding fields of table it_lfa1
           for all entries in it_ekko
           where lifnr = it_ekko-lifnr.
    endif.
    if sy-subrc = 0.
        select lblni lzvon lwert packno txz01 ebeln loekz budat  netwr from essr
           into corresponding fields of table it_essr
           for all entries in it_ekko
           where lzvon in s_lzvon
             and lblni in s_lblni
             and ebeln = it_ekko-ebeln.
    endif.
    if sy-subrc = 0.
        select mblnr ebeln erfmg lfbnr from mseg
          into corresponding fields of table it_mseg
            for all entries in it_essr
            where mblnr in s_mblnr
              and lfbnr = it_essr-lblni
              and ebeln = it_essr-ebeln.
    endif.
    if sy-subrc = 0.
      select packno ebeln srvpos ktext1 netwr menge matkl tbtwr meins mwskz from ml_esll
           into corresponding fields of table it_ml_esll
           for all entries in it_essr
           where  srvpos in s_srvpos
            and  ebeln = it_essr-lblni.
    endif.
    if sy-subrc = 0.
      select packno srvpos menge meins netwr ebeln tbtwr from ml_esll
            into corresponding fields of table it_ml_esll1
            for all entries in it_ekko
             where ebeln = it_ekko-ebeln.
    endif.
    if sy-subrc = 0.
      select ebeln vgabe belnr lfbnr mwskz srvpos packno from ekbe
            into corresponding fields of table it_ekbe
              for all entries in it_ekko
                where ebeln = it_ekko-ebeln
                and vgabe = 1.
    endif.
    if sy-subrc = 0.
      select ebeln belnr bewtp from ekbe into corresponding fields of table it_ekbe1
            for all entries in it_ekko
              where ebeln = it_ekko-ebeln
              and   bewtp = 'Q'.
    endif.
    loop at it_ml_esll into wa_ml_esll.
        move wa_ml_esll-packno to wa_final-packno.
        move wa_ml_esll-ebeln to wa_final-ebeln1.
        move wa_ml_esll-srvpos to wa_final-srvpos.
        move wa_ml_esll-ktext1 to wa_final-ktext1.
        move wa_ml_esll-meins to wa_final-meins.
        move wa_ml_esll-menge to wa_final-menge1.
        read table it_essr into wa_essr with key lblni = wa_ml_esll-ebeln.
        if sy-subrc = 0.
          move-corresponding wa_essr to wa_final.
        endif.
        read table it_ekko into wa_ekko with key ebeln = wa_essr-ebeln.
        if sy-subrc = 0.
          move wa_ekko-werks to wa_final-werks.
          move wa_ekko-ekorg to wa_final-ekorg.
          move wa_ekko-ekgrp to wa_final-ekgrp.
          move wa_ekko-ebeln to wa_final-ebeln.
          move wa_ekko-menge to wa_final-menge.
          move wa_ekko-matkl to wa_final-matkl.
          move wa_ekko-mwskz to wa_final-mwskz.
          move wa_ekko-lifnr to wa_final-lifnr.
          move wa_ekko-bedat to wa_final-bedat.
          move wa_ekko-netpr to wa_final-netpr.
        endif.
        read table it_lfa1 into wa_lfa1 with key lifnr = wa_ekko-lifnr.
         if sy-subrc = 0.
          move wa_lfa1-lifnr to wa_final-lifnr.
          move wa_lfa1-name1 to wa_final-name1.
        endif.
        read table it_ekbe into wa_ekbe with key lfbnr = wa_ml_esll-ebeln
                                                 packno = wa_ml_esll-packno
                                                 srvpos = wa_ml_esll-srvpos.
        if sy-subrc = 0.
          move wa_ekbe-belnr to wa_final-belnr.
        endif.
        read table it_ekbe1 into wa_ekbe1 with key ebeln = wa_ekko-ebeln.
        if sy-subrc = 0.
          move wa_ekbe1-belnr to wa_final-belnr1.
        endif.
        read table it_ml_esll1 into wa_ml_esll1 with key srvpos = wa_ml_esll-srvpos.
        if sy-subrc = 0.
          move wa_ml_esll1-menge to wa_final-menge2.
          move wa_ml_esll1-netwr to wa_final-netwr.
          move wa_ml_esll1-tbtwr to wa_final-tbtwr.
        endif.
        read table it_mseg into wa_mseg with key lfbnr = wa_essr-lblni
                                                 ebeln = wa_essr-ebeln.
        if sy-subrc = 0.
            move wa_mseg-mblnr to wa_final-mblnr.
            move wa_mseg-erfmg to wa_final-erfmg.
        endif.
        append wa_final to it_final.
      endloop.
    delete it_final where srvpos is initial.
    sort it_final by srvpos lblni ebeln .
    Edited by: Satvikpanchal on Dec 6, 2011 11:01 AM

  • XML Publisher with Service Module - Service Request Reports -- URGENT

    Hi all ... any pointers/help/guidance with the problem listed below would be much appreciated.
    I'm working in the context of the Oracle Service Module & Service Request Reports.
    I'm required to configure the XML Publisher Responsibility seeded functionality with the service module reports.
    Listed below are the two reporting requirements that I'm considering , corresponding to the following seeded XMLP Responsibility seeded components:
    (I'm quoting an extract from the Oracle TeleService Implementation & User Guide here).
    Detailed Report
    Data Definition: Service Request Detail Definition (CS_SR_DETAIL_DEF)
    Corresponding Template: Service Request Detail Report Template (CS_SR_DETAIL_TMP.en)
    Template Description: Includes all of the available service request attributes including charges, the two descriptive flexfields, and extensible attributes.
    Summary Report
    Data Definition: Service Request Summary Definition (CS_SR_SUMMARY_DEF)
    Corresponding Template: Service Request Summary Report Template (CS_SR_SUMMARY_TMP_en)
    Template Description: Includes a subset of the detailed report attributes including the same charges information as the detailed report.
    When I log into the EBS >> XML Publisher Administrator Responsibility >> Service Application ... I find these seeded XMLP components, together with the preview data, downloadable templates & sample output.
    The question is:
    Where (responsibility/application/navigation/etc.) do I find the seeded EBS Service Reports to provide the expected XML input to the seeded XMLP Service Request Data Definitions & Templates????
    Notes ...
    I have found the following two reports, under the Service Application in EBS, set their output type to XML and viewed the output of the submitted request:
    - Service Request Detail Report
    - Service Request Summary Report
    ... but each of these two reports produce XML output of a different data model/structure to that expected by each of the corresponding seeded XMLP data-definitions/templates.
    Additionally, I cannot find any corresponding concurrent program definitions on the system with the same SHORT-NAME/CODE as the seeded XMLP data definitions themselves i.e. CS_SR_DETAIL_DEF and CS_SR_SUMMARY_DEF.
    Are the necessary reports not actually seeded within EBS? Do the seeded XMLP data definitions & templates require development of new Concurrent Programs from scratch to access the database tables and provide the necessary data/input, or am I missing something here??

    I am sure you found a solution to your problem. If not, to give a pointer to this issue, I guess these reports are gererated right from the service request screen and this definition is used there.This report can be generated from several places based on where you are within SR scree.
    Thanks
    Nagamohan

  • How to configure Service Level Reporting???

    Hi All,
    I have to configure Service Lever Reporing (SLR) on my solution manager for managed systems. Can any one please help me in configuring it? A Step-by-step explanation will be a great help.
    Waiting for your kind responses.
    Regards,
    Faisal

    Hi Jared,
    Thanks for sharing the link. I have gone through the link.
    However, when I edit the "Setup Service Level Reporting" by click the link under "Solution Monitoring->Service Level Reporting" under "Operations Setup", I could get the screen where in I found the below details:
    1. Setup SL Reporting (On the left Pane)
    2. Variants Administration (under the above head tree)
    On the right pane, I could find:
    1. Name
    2. Type
    3. Weeday of Processing
    4. Active
    5. Date of Next Report
    I could successfully give the above details and saved it. However, I dont see any provision for seleting the system SIDs as mentioned in the help.sap.com site proposed by you.
    May you help me in selecting the System SID for which I need to declare SLR?
    Regards,
    Syed

  • Error encountered while signing. Windows cryptographic service provider reported an error. Object not found. Error code:2148073489. Windows 7, Adobe Reader XI, Symantec PKI, Smart Card and CAC. I have seen other threads for this error but none have a reso

    Error encountered while signing. Windows cryptographic service provider reported an error. Object not found. Error code:2148073489. Windows 7, Adobe Reader XI, Symantec PKI, Smart Card and CAC. I have seen other threads for this error but none have a resolution. Any help would be appreciated.
    Sorry for the long title, first time poster here.

    This thread is pretty old, are you still having this issue?

  • Error encountered while signing: The Windows Cryptographic Service Provider reported an error: Access was denied because of a security violation. Error Code: 2148532330

    Last night when i tried to sign a document i received the mesage below and after that it says this document can't be signed what can i do to fix this problem.
    Error encountered while signing:
    The Windows Cryptographic Service Provider reported an error:
    Access was denied because of a security violation.
    Error Code: 2148532330

    I assume you are implying "biztax" application here, right?
    I have contacted their program lead, with no result at all.
    Past days I have been searching for a solution - reinstalls / new systems - no solution.
    This issue appeared a week or two ago only.
    I found http://forums.adobe.com/message/5338853 useful - but no positive results either.
    http://test.eid.belgium.be/faq/faq_nl.htm obviously didnt help either.
    If anyone finds a solution to this issue, please do let me know - any help is appreciated.
    Biztax tells to use the "signature", not the "authentication"  - but it is only Auth. that is showing up as option to sign (that works)
    ps, did you fiddle with the Adobe Reader XI security settings and import that PKI etc as well? I hoped that would be the breaktrough. Sadly i'm still crying in my chair.
    Oh, and dont forget: they claim nobody else got this issue. Maybe one or two people. (We got about 8 customers experiencing exactly the same symptoms at the same time )
    >  I noticed that when I try to open the pdf  document that is 'signed' by the government it is not showing the filename in the title bar, but only " - Adobe Reader".    every piece of info helps I guess.
    Obviously last version of Reader   11.0.03

  • Solution and Service level Reporting in Solution Manager

    Hi All,
    I have got some requirement , can anyone please provide me the link/blog regarding Solution and Service level Reporting.
    Thanks,
    vk

    Hi,
    got confused since previous you said it was enterprise service report,
    https://websmp207.sap-ag.de/~form/sapnet?_SCENARIO=01100035870000000202&_SHORTKEY=01100035870000742027&_OBJECT=011000358700000999072011E
    the Following SAP notes
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1442799
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1250529
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1391968
    Thanks
    Jansi

  • Performance Point Services vs Reporting Services

    I am using Reporting Service in SharePoint 2013 Enterprise Version.Now i have to create a POC for Performance Point Service.I want to know in which scenerios i can use Performance Point Service instead of reporting service,Please suggest me the article which
    differentiate  between both the servies

    In short, SSRS is great for drill-down (matrix) reports and free-form reports, PPS is great for building dashboards, KPIs and predictive reports. Also see:
    http://www.mssqltips.com/sqlservertip/2737/sql-server-reporting-services-vs-performancepoint-services/
    http://businessintelligist.com/2012/04/02/comparing-performancepoint-powerview-excel-services-and-reporting-services/
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Service PO report query

    Dear All Abapers,
        I have developed a service PO report. Reference t-codes are ml81n and me23n. The query is regarding Entry sheet number for a particular PO number. If the user saves and posts an entry sheet no, a GR No. is made and it is reflected in my report. But if a user ONLY SAVES an entry sheet number (without posting), it is not reflected in my report but is reflected in the database tables which I have used. EKBE table in this case. So, what condition should I put so that 'only saved' entry sheet numbers are also reflected?

    The select query is for fetching entry sheet number is:
    select ebeln belnr bwart bewtp menge xblnr lfbnr mwskz shkzg srvpos packno from ekbe
            into corresponding fields of table it_ekbe
              for all entries in it_ekko
                where belnr in s_belnr
                  and lfbnr in s_lfbnr
                  and ebeln = it_ekko-ebeln
                  and bwart = '101'
                  and bewtp eq 'E'.      "for service acceptance no. (GR no.)
    Here I have taken lfbnr as entry sheet number.

  • Need Service Tax Report

    Hello friends,
    Can any one help me in getting the service tax report as per the Indian Service Tax laws, wherein the service tax is payable on payment basis.
    Hope this problem exists for all sap users in India. If any code is written, please share it so that it can used for the benefit of all.
    REgards
    Dhirav Shah

    Hi Dhirav,
    Please refer the below note from SAP
    Note 779512 - Master Note for Service Tax
    "Regarding the reporting requirements, we will update the status as soon as we receive the clarifications."
    Note 1004815 - ER1 report - Corrections for Service tax and new layout
    Hope this helps.
    Please assign points as way to say thanks

  • Sales person in the service call report

    Hello
    I am using PLD to make a new layout for the service call report. I would like to add a column with the sales person of the customer. I have already added the field from the table, but i just get a blank column.
    Does anyone know how I can do it?
    Thanks
    Jacobo

    Hi Jacobo,
    We cannot select the OSLP table in the list of tables available without using Alt+click. Please reconfirm if you have used this. Since OSLP is not available, you cannot include the Sales Employee column in the report.
    One workaround is to set the sales employee name in one of the unused fields on the Service call form (like problem type, call type etc). Just rename and define the sales employees here as well. You can even use Formatted search to update this field for change in BP code.
    Since this column is already available in the Service call reports, you can easily rename the columns and use the reports as-is without much customisation on PLD.
    Hope this helps.
    Regards,
    Hamsa

  • Pr CS6 on MacPRO 10.9.4 crashes randomly hang report shows Dispatch Thread Soft Limit Reached: 120

    We have an Edit computer that IT brought back to us with a newly loaded Mavericks 10.9.4. and a fresh installation of CS6. We also have an added AJA LHi card.
    Our editor is getting random crashes often while just searching through his clips. When I look at the diagnostic reports . I consistently see the message - Dispatch Thread Soft Limit Reached:  120  (too many dispatch threads blocked in synchronous operations). I will paste the whole hang report below.
    Any ideas? I have found other threads on the net discussing this but nothing really specific to Adobe or CS6.
    ----------- Hang Report -------------
    Date/Time:  
    2014-07-29 13:44:33 -0400
    OS Version: 
    10.9.4 (Build 13E28)
    Architecture:
    x86_64
    Report Version:  18
    Command:    
    Premiere Pro
    Path:       
    /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Version:    
    6.0.5 (6.0.5)
    Parent:     
    launchd [878]
    PID:        
    1033
    Event:      
    hang
    Duration:   
    1.73s
    Steps:      
    17 (100ms sampling interval)
    Hardware model:  MacPro5,1
    Active cpus:
    24
    Fan speed:  
    1437 rpm
    Free pages: 
    4747363 pages (-2299)
    Pageins:    
    21 pages
    Pageouts:   
    0 pages
    Swapins:    
    0 pages
    Swapouts:   
    0 pages
    Process:    
    Adobe Premiere Pro CS6 [1033]
    Path:       
    /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Architecture:
    x86_64
    Parent:     
    launchd [878]
    UID:        
    504
    Task size:  
    635968 pages
    CPU Time:   
    0.027s
    Dispatch Thread Soft Limit Reached:  120  (too many dispatch threads blocked in synchronous operations)
      Thread 0x395c
    DispatchQueue 1     
    priority 47    
    cpu time   0.010s
      17 start + 52 (Adobe Premiere Pro CS6) [0x10000361c]
    17 main + 647 (Adobe Premiere Pro CS6) [0x1000038b7]
    17 Run + 247 (Startup) [0x10c8ef1d7]
    17 AppMain + 380 (Frontend) [0x10c77ed0c]
    17 FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 5681 (Frontend) [0x10c727dff]
    17 FE::MacApplication::RunSelf() + 44 (Frontend) [0x10c77d794]
    17 -[NSApplication run] + 553 (AppKit) [0x7fff9771199c]
    17 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x7fff9771d89b]
    17 _DPSNextEvent + 1434 (AppKit) [0x7fff9771e24e]
    17 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x7fff99d375bc]
    17 ReceiveNextEventCommon + 479 (HIToolbox) [0x7fff99d377b7]
    17 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x7fff99d37a0d]
    17 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff98b36e75]
    17 __CFRunLoopRun + 1525 (CoreFoundation) [0x7fff98b376a5]
    17 __CFRunLoopDoTimers + 298 (CoreFoundation) [0x7fff98bed5aa]
    17 __CFRunLoopDoTimer + 1151 (CoreFoundation) [0x7fff98b7bf1f]
    17 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation) [0x7fff98b7c3e4]
    17 dvacore::threads::(anonymous namespace)::RunLoopAdaptor::Execute(__CFRunLoopTimer*, void*) + 54 (dvacore) [0x1001ea466]
    17 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<bool, bool (*)(boost::shared_ptr<dvacore::threads::(anonymous namespace)::FunctionQueue>, bool), boost::_bi::list2<boost::_bi::value<boost::shared_ptr<dvacore::threads::(anonymous namespace)::FunctionQueue> >, boost::_bi::value<bool> > >, void>::invoke(boost::detail::function::function_buffer&) + 54 (dvacore) [0x1001e9d16]
    17 dvacore::threads::(anonymous namespace)::FunctionQueue::ExecuteOneFunction(boost::shared_ptr<dvacore::threads::(anonym ous namespace)::FunctionQueue>, bool) + 151 (dvacore) [0x1001ea947]
    17 ASL::StationUtils::BroadcastMessage(ASL::ImmutableString const&, ASL::Message const&) + 66 (ASLMessaging) [0x1006fff72]
    17 ASL::Broadcaster::BroadcastMessage(ASL::Message const&) + 1565 (ASLMessaging) [0x1006f2841]
    17 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0 <int>) + 57 (Frontend) [0x10c743735]
    17 ASL::Broadcaster::BroadcastMessageInner(ASL::Broadcaster::ListenerRecord const&, ASL::Message const&) + 39 (ASLMessaging) [0x1006f1207]
    17 FE::AutoSaveManager::OnIdle() + 284 (Frontend) [0x10c743f7e]
    17 HSL::AutoSaveProject(ASL::InterfaceRef<BE::IProject, BE::IProject>, unsigned int) + 1535 (HSL) [0x107a9535f]
    17 HSL::SaveProject(ASL::InterfaceRef<BE::IProject, BE::IProject>, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, bool, bool) + 1016 (HSL) [0x107b3d038]
    17 HSL::ProgressDialog::DoProgressDialog(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, ASL::InterfaceRef<ASL::IBatchOperation, ASL::IBatchOperation>) + 356 (HSL) [0x107b32bd4]
    17 DLG::ProgressDialog::DoProgressDialog(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, ASL::InterfaceRef<ASL::IBatchOperation, ASL::IBatchOperation>, char const*) + 803 (Dialogs) [0x107f8b5a3]
    17 non-virtual thunk to MZ::(anonymous namespace)::SaveProjectOperation::Abort() + 58 (Mezzanine) [0x10550e26a]
    17 usleep + 54 (libsystem_c.dylib) [0x7fff9a4c9cb2]
    17 __semwait_signal + 10 (libsystem_kernel.dylib) [0x7fff90aaaa3a]
    *17 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b570]
      Thread 0x3981
    DispatchQueue 2     
    priority 49    
    cpu time   0.001s
      17 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff938f2136]
    17 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff90aab662]
    *17 ??? (mach_kernel + 3959520) [0xffffff80005c6ae0]
      Thread 0x3ef0
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x4159
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x41f2
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x4241
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x4242
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x4243
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x4244
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x424a
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x427a
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x427f
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x4280
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x4288
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 595 (MBCProvider) [0x1051551c3]
    17 RenderIconRef(OpaqueIconRef*, unsigned int, unsigned int) + 244 (MBCProvider) [0x105154ea4]
    17 _ISPlotIconRefInContext + 115 (IconServices) [0x7fff938c15df]
    17 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x7fff938d1b9f]
    17 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x7fff90aa6a56]
    *17 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b570]
      Thread 0x4289
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x428a
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x429e
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x429f
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a0
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a1
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a2
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a3
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a4
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a5
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a6
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54 (MBCProvider) [0x1051564b2]
    17 MBC::ProviderThumbnailRequest::Process() + 119 (MBCProvider) [0x1051556c5]
    17 MBC::ProviderXDCAMEX::GetThumbnail(std::string const&, std::string const&, int, int, MBC::ProviderRequest*) const + 364 (MBCProvider) [0x1051875a4]
    17 MBC::GetOSIconThumbnail(std::string const&, std::string const&, int, int) + 45 (MBCProvider) [0x105154f9d]
    17 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff90aaa746]
    *17 psynch_mtxcontinue + 0 (pthread) [0xffffff7f80f0aa3b]
      Thread 0x42a7
    DispatchQueue 6     
    priority 47  
      17 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff991aefb9]
    17 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x7fff991abef8]
    17 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x7fff938f3177]
    17 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x7fff938f2082]
    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff938f028d]
    17 dvacore::threads::(anonymous namespace)::WrapGCDAsyncCall(void*) + 54 (dvacore) [0x1001f93e6]
    17 void boost::_mfi::mf0<void, ASL::IThr

    Update - The crashing seems to happen when the editor was going to a folder with lots of files. It seems like it is trying to open every file in a thumbnail preview mode that might be the problem. So I had him open a project with only a few files in a folder and it is stable for now. We are going to try and re-organize this particular project with  lees media in each folder.
    Are there any guidelines of what the max amount of clips in a folder might be? Is there any way adjusting or turning off those thumbnail previews?

  • POs without service entry-Report

    Hai,
    I have one requirements for service entry report.
    my requirement is I need to take all POs without service entry.
    I am taking records all from the table EKBE, but I  dont know how to classify  these records.
    Is it based on fields(table EKBE) vgabe & vgabe?
    Is the table EKBE correct?
    Any tips?
    With Regards,
    Jaheer.

    > 1) I have a contract Number, how to find the Service Entry sheet and P.O. number?
    Go to ME2M select scope of list as RAHM, choose contract in the same screen put the required details execute
    select the line item from contract go to release details there you can find the history
    Also You can Check it in ME33K, Select the line item and go to item details. In quantity and price tab, you can see Target quantity and Released order quantity.
    Selection Parameters Tab---->Press F4 from the drop down you can find list of parameters (WE102 & GUTSCHRIFT)
    For PO-GR existing, use ME2N & WE102 combination for existing GR list, pls use ctrl+F8 for the selection field for this.
    For PO-Invoice, use ME2N & GUTSCHRIFT combination for existing Invoice list ,
    > 2) My user wants a to know how much payment company has made agaisnt the each line item of the service entry sheet. Please suggest me the T. code
    This is FI reporting & not MM, but you can check this through T-code FBL1N.

  • Service tax reports

    we are doing service tax and ed.cess on repairs and maintence invoices, after payment to vendors every month we have to take service tax report to submit authorities, is there any standard reports in this scenario
    regards,

    Hi
    You can use FBL3N for the Service tax clearing GL account to have control on the availment of Service tax. After availing the credit, you need to clear the line items in the clearing account so that the net amount of service tax to be availed will be available in this GL account.
    Regards,
    Lakshmanan Krishnan

Maybe you are looking for

  • PI 7.0 compatibility with ECC 6.0

    We are upgrading our ECC environment from 5.0 to 6.0 EHP4 wehre as our PI is version is 7.0. Please let me know if there would be any compatibility implication on interfaces between new ECC env and PI7.0. we have IDOC, RFC and proxy connectivity netw

  • Is there a restriction on moving the position of an image on A5 size paper?

    I would like to print an image in the top half of an A5 sized sheet, to fold to print a card. While I seem to be able to do this with A4 paper I cannot do so when A5 is chosen - the image remains in the centre. As I am new to Paintshop Elements and c

  • Cant update itunes but need to for new ios6

    Hey im an owner of a macbook pro from a few years ago and its still on version 10.5.8. Now I regretfully updates to ios6 on my iphone 4s and now cant sync with my itunes because my itunes cant be updated unless I have version 10.7 or newer os. Is the

  • Printing data with tab spacing

    I have a data file in simple text format where data are oriented in three columns (i.e. time, voltage and current) separated by 'tab' marks. Whenever I am trying to print the document in Java Application (jdk1.2.2) it is not recognizing the tabs, and

  • Always Deleting First Row

    Hi I have a adf page.In my page I have a form and detail table.On my table when I want to delete any row, it deletes always first row. Can you halp me?