Unable to setup Power Query automatic refresh in Power BI Sharepoint Portal as per instructions

Followed all instructions to setup a PowerQuery connected data source for automated refresh but no luck. Keeps giving the following error message. A connection could not be made to the data source with the Name of 'TestConnection' when trying to test the
connection.
Here are the exhaustive steps.
1. Created an excel file that uses power query to connect to an On Prem database
2. Created a powerview against the resulting data set (stored in data model/powerpivot)
3. Setup a data management gateway on O365 Power BI Admin center
4. Installed Data Management Gateway and associated keys on the On Prem server (established connection handshake successfully)
5. Created a data source in Power BI Admin center, specified Power Query as the data source, copied and pasted Power Query connection string from excel file, validated tested connection for data source
6. Uploaded the report file to Power BI site
7. Now, when trying to setup the automatic refresh, it pulls the information for the associated connections in the file correctly. However when trying to test the connection, constantly just returns with the following message
A connection could not be made to the data source with the Name of 'TestConnection'. Correlation ID: c3d2a19b-f03d-4b14-8d5e-8fe0ed103238
It looks like the DMG based update is still half baked. What is missing here since all of the data connection validation and handshake steps for gateway and data source works correctly. Why is it that the Powerquery based excel file is unable to leverage
the DMG and datasource to connect and pull data?
Any thoughts or guidance, much appreciated.

Everything,
Is this still an issue?
Thanks!
Ed Price, Azure & Power BI Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

Similar Messages

  • Unable to setup an automated task as part of service catalog portal implementation

    Hello MS team,
    As part of the Service Catalog Portal implementation, we are setting up automated tasks, and one of them is to “Create Mailbox”.
    currently I am working in DEV to test this automation, and I need help with the “Create Mailbox” activity. More specifically, I need to be able to invoke powershell commands to create a Mailbox from the DEV Orchestrator server
    Any suggestions?
    Franki

    Everything,
    Is this still an issue?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Unable to open Power BI Sites - Error: We were unable to load the Site. Refresh the page to try again

    Power BI Sites Error
    We were unable to load the Site. Refresh the page to try again
    When opening Power BI Sites with internet explorer, in certain security configurations you may run into the above error. While we are looking into resolving this, please see the following workaround:
    From the Tools menu, select internet options.
    On the security tab uncheck the "Enable Protected Mode" checkbox form the relevant Zone (Intranet/Internet)
    Remove all entries to *.powerbi.com from trusted sites or/and local intranet sites
    On the advanced tab, uncheck the "Enable enhanced protected mode" (if you made a change here it will require a restart of the machine)
    Restart and try again (if not changes done in the last step, just restart the browser)

    Hi
    Any further debugging tips? I upgraded from IE9 to IE11 on my Win7 machine to try get Q&A working, it broke the entire PowerBI site for me

  • PROBLEM refresh query automatically

    Hi
    We want to do a analytic dashboard with the web application designer.
    our problem is that we want the query to refresh automatically, for example every 2 minutes, due to the constant changes of the information.
    Does someone know if with the bw 7.1 it is possible to refresh the model periodically without returning to execute the query?
    thanks and best regards.

    thanks for the reply, there is an option in the iviews called "Cache Validity Period" but they dont want the portal, only bex to acces the information.
    thanks again

  • Outlook 2007: unable to automatically refresh calendar

    Hello,
    With Outlook 2007 and OCFO 10.1.3.10 we can't get outlook to automatically refresh the calendar view so that events inserted in another client (i.e. same user on the web client or on the native ocal client, or another user) are seen.
    Tools->Refresh Selected Folder(s) causes the events to turn up (eventually).
    I've set the server refresh interval to 3 minutes, but despite several mail refreshes, I'm not getting any calendar refreshes.
    Has anyone any ideas on how to get this working?
    Tom.

    Hello
    there is also a setting on the server side (several actually)
    Have a look at these pages
    - in user.ini
    http://68.142.116.68/docs/cd/B25553_01/calendar.1012/b25486/user_res_params.htm#sthref22
    - in unison.ini
    Metalink note 461204.1
    Hope it helps

  • Track Changes Power Query - After Refresh

    Hi,
    Is there a way to get informed when the value or string of a cell changes after the query was refreshed.
    BR

    example:
    I have a json file with two Sites:
    "SiteA": {
    "Color": "blue",
    "Date": "24.12.2014"
    "SiteB": {
    "Color": "red",
    "Date": "25.12.2014"
    after Reload:
    "SiteA": {
    "Color": "green",
    "Date": "24.12.2014"
    "SiteB": {
    "Color": "red",
    "Date": "26.12.2014"
    How can I track that the color of SiteA has changed to green and the Date of SiteB after refreshing?
    BR,
    Bernd

  • Materialized View - creation and schedule (To automate Refresh)

    Hi All,
    I have one table based on SQL Query (multiple tables) and loading data every day through procedure.
    When I execute the procedure is taking lot of time to load data. That’s why I am planning to create Materialized view to refresh the data in a table every day at some point of time (ex:-9.00 am).
    Exclude procedure and materialized view are there any ways to refresh the data?
    Can you and all please help me to create materialized view and schedule (Automate refresh).
    begin
    insert into CLAIMS_PRODUCT_TAB
    select
    substr(at.ATN_VOUCHER_NUMBER,1,6) as BRANCH,
    t.MONTH_NAME as MONTH,t.FISCAL_YEAR as YEAR,
    bb.ACC_ACCOUNT_TYPE as TYPE,
    aa.ACC_DEPARTMENT_CODE as DEPT,
    pr.PRODUCT_NAME as PRODUCT,
    case bb.ACC_ACCOUNT_TYPE when '1301' then 'Claims Paid' when '5383' then 'Claims OS' end as HEAD,
    case aa.ACC_DEPARTMENT_CODE when '31' then 'OD' when '32' then 'TP' when '39' then 'TP Pool' end as DEPT_NAME,
    count(distinct at.CLAIM_ID) as CLAIMS,
    --count( distinct at.POLICY_ID) as POLICIES,  
    sum(atd.ATD_CREDIT_AMOUNT - atd.ATD_DEBIT_AMOUNT) as totals
    from
    ACCOUNTING_TRN_DETAIL atd,time t,
    ACCOUNT bb,
    ACCOUNT aa,claim c, policy p,product pr,
    accounting_transaction at
    where bb.ACC_ACCOUNT_ID = aa.ACC_ACC_ACCOUNT_ID
    and at.CLAIM_ID = c.CLAIM_ID
    and c.POLICY_ID = p.POLICY_ID
    and p.PRODUCT_ID = pr.PRODUCT_ID
    and aa.ACC_ACCOUNT_ID = atd.ACC_ACCOUNT_ID
    and atd.ATN_ACCOUNTING_TRANSACTION_ID = at.ATN_ACCOUNTING_TRANSACTION_ID
    and trunc(at.ATN_TRANSACTION_DATE) = t.CAL_DATE
    and (bb.ACC_ACCOUNT_TYPE in ('1301','5383'))
    group by substr(at.ATN_VOUCHER_NUMBER,1,6)
    ,t.MONTH_NAME
    ,t.FISCAL_YEAR,bb.ACC_ACCOUNT_TYPE
    ,aa.ACC_DEPARTMENT_CODE
    ,pr.PRODUCT_NAME
    , case bb.ACC_ACCOUNT_TYPE when '1301' then 'Claims Paid' when '5383' then 'Claims OS' end
    ,case aa.ACC_DEPARTMENT_CODE when '31' then 'OD' when '32' then 'TP' when '39' then 'TP Pool' end );
    end;
    Thanks and Regards
    Venkat

    Is the MV and the source tables on the same database? If this is a remote MV, then check the source site if there are any issues (TEMP, UNDO space issues).

  • My desktop is getting automatically refreshed for every few mins.

    Running on 10.4.11 on Power PC G4. My desktop is getting automatically refreshed for every few mins. All files and folders in the desktop disappears and comes again. Sometimes, the application am working on quits and this refresh thing happens. And i assume it happens only when its connected with internet. Sounds like a virus kinda symptoms.
    Can someone help me investigate this and get rid of the problem?
    Thanks,
    Nags.

    Am sorry that am not a techie so not sure what part to be pasted here and so pasting everything which i see in the Finder crash log.
    ===== Display starts at offset 79397886 within file of length 79528958. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    pple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x01029384 0 + 16946052
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x0000000001028c64  ctr: 0x000000009002704c
        r0: 0x0000000001028c64   r1: 0x0000000001017f40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x0000000001017f80   r5: 0x0000000040610000   r6: 0x000000000102b0f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x000000000102b054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x000000000102f7fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x000000000102b0f8  r27: 0x000000000102939c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x0000000001028c2c
    Binary Images Description:
        0x1000 -   0x31dfff com.apple.finder 10.4.7    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      0x505000 -   0x5f3fff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
      0x722000 -   0x724fff com.apple.textencoding.unicode 2.0    /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0x76d000 -   0x777fff fr.madrau.switchres.apemodule 3.8.7    /Users/maxzime/Library/Application Enhancers/SwitchResX Features.ape/Contents/MacOS/SwitchResX Features
    0x16c0000 -  0x1715fff com.DivXInc.DivXDecoder 6.0.0    /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x5938000 -  0x59bdfff net.sourceforge.webcam-osx.common 0.9.1    /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
    0x90000000 - 0x90019fff com.apple.CoreVideo 1.4.2    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9002a000 - 0x9035dfff com.apple.QuickTime 7.6.4 (1327.73)    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???)    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib     /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 (681.21)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib     /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770)    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib     /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.13    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.9    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib     /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib     /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d04fff libPng.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d09000 - 0x91d0cfff libRadiance.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e1b000 - 0x91e59fff libTIFF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e60000 - 0x91e60fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e62000 - 0x91f47fff com.apple.vImage 2.4    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4f000 - 0x91f6efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fda000 - 0x92048fff libvMisc.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92053000 - 0x920e8fff libvDSP.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92102000 - 0x9268afff libBLAS.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bd000 - 0x929e8fff libLAPACK.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a18000 - 0x92b06fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
    0x92b09000 - 0x92b91fff com.apple.DesktopServices 1.3.7    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd2000 - 0x92e05fff com.apple.Foundation 6.4.12 (567.42)    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f38000 - 0x92f56fff libGL.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f61000 - 0x92fbbfff libGLU.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd9000 - 0x92fd9fff com.apple.Carbon 10.4 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fdb000 - 0x92feffff com.apple.ImageCapture 3.0    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93007000 - 0x93017fff com.apple.speech.recognition.framework 3.4    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93023000 - 0x93038fff com.apple.securityhi 2.0 (203)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9304a000 - 0x930d1fff com.apple.ink.framework 101.2 (69)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e5000 - 0x930f0fff com.apple.help 1.0.3 (32)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930fa000 - 0x93128fff com.apple.openscripting 1.2.7 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93142000 - 0x93152fff com.apple.print.framework.Print 5.0 (190.1)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315e000 - 0x931c4fff com.apple.htmlrendering 1.1.2    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f5000 - 0x93244fff com.apple.NavigationServices 3.4.4 (3.4.3)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93272000 - 0x9328ffff com.apple.audio.SoundManager 3.9    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a1000 - 0x932aefff com.apple.CommonPanels 1.2.2 (73)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b7000 - 0x935c5fff com.apple.HIToolbox 1.4.10 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93715000 - 0x93721fff com.apple.opengl 1.4.7    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x937e2000 - 0x937e2fff com.apple.Cocoa 6.4 (???)    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937e4000 - 0x93e17fff com.apple.AppKit 6.4.10 (824.48)    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x941a4000 - 0x94216fff com.apple.CoreData 91 (92.1)    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9424f000 - 0x94314fff com.apple.audio.toolbox.AudioToolbox 1.4.7    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94367000 - 0x94367fff com.apple.audio.units.AudioUnit 1.4    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94369000 - 0x94529fff com.apple.QuartzCore 1.4.12    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94573000 - 0x945b0fff libsqlite3.0.dylib     /usr/lib/libsqlite3.0.dylib
    0x945b8000 - 0x94608fff libGLImage.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94675000 - 0x946bafff com.apple.bom 8.5.1 (86.3)    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947db000 - 0x947eafff libCGATS.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947f2000 - 0x947fffff libCSync.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94845000 - 0x9485efff libRIP.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c78000 - 0x94ce9fff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
    0x95018000 - 0x9501efff com.apple.filesync 3.0.4 (99.8)    /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x96f25000 - 0x96f44fff com.apple.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x977a1000 - 0x977aefff com.apple.agl 2.5.6 (AGL-2.5.6)    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e9d8000 - 0x9f611fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9f785000 - 0x9f827fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9f845000 - 0x9f892fff com.apple.CoreText 1.0.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f8bd000 - 0x9fc78fff com.apple.CoreGraphics 1.258.85 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fd05000 - 0x9fdb6fff ATS     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9fde5000 - 0x9fdeafff libmathCommon.A.dylib     /usr/lib/system/libmathCommon.A.dylib
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
    0xc0000000 - 0xc0012fff com.unsanity.ape 2.5.2    /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Host Name:      MD
    Date/Time:      2012-02-20 19:45:40.700 +0530
    OS Version:     10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path:    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent:  WindowServer [63]
    Version:        10.4.7 (10.4.7)
    Build Version:  1
    Project Name:   Finder_FE
    Source Version: 5292900
    PID:    737
    Thread: 4
    Exception:  EXC_BAD_INSTRUCTION (0x0002)
    Code[0]:    0x00000002
    Code[1]:    0x9002705c
    Thread 0:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
    3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
    4   com.apple.HIToolbox                0x932bfb20 RunCurrentEventLoopInMode + 264
    5   com.apple.HIToolbox                0x932bf1b4 ReceiveNextEventCommon + 380
    6   com.apple.HIToolbox                0x93304348 AcquireNextEventInMode + 72
    7   com.apple.HIToolbox                0x93304138 RunApplicationEventLoop + 132
    8   com.apple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x0139c384 0 + 20562820
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x000000000139bc64  ctr: 0x000000009002704c
        r0: 0x000000000139bc64   r1: 0x00000000013dcf40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x00000000013dcf80   r5: 0x0000000040610000   r6: 0x000000000139e0f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x000000000139e054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x000000000139e7fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x000000000139e0f8  r27: 0x000000000139c39c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x000000000139bc2c
    Binary Images Description:
        0x1000 -   0x31dfff com.apple.finder 10.4.7    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      0x505000 -   0x5f3fff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
      0x722000 -   0x724fff com.apple.textencoding.unicode 2.0    /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0x76d000 -   0x777fff fr.madrau.switchres.apemodule 3.8.7    /Users/maxzime/Library/Application Enhancers/SwitchResX Features.ape/Contents/MacOS/SwitchResX Features
    0x5938000 -  0x598dfff com.DivXInc.DivXDecoder 6.0.0    /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x599b000 -  0x5a20fff net.sourceforge.webcam-osx.common 0.9.1    /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
    0x90000000 - 0x90019fff com.apple.CoreVideo 1.4.2    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9002a000 - 0x9035dfff com.apple.QuickTime 7.6.4 (1327.73)    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???)    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib     /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 (681.21)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib     /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770)    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib     /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.13    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.9    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib     /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib     /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d04fff libPng.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d09000 - 0x91d0cfff libRadiance.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e1b000 - 0x91e59fff libTIFF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e60000 - 0x91e60fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e62000 - 0x91f47fff com.apple.vImage 2.4    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4f000 - 0x91f6efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fda000 - 0x92048fff libvMisc.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92053000 - 0x920e8fff libvDSP.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92102000 - 0x9268afff libBLAS.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bd000 - 0x929e8fff libLAPACK.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a18000 - 0x92b06fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
    0x92b09000 - 0x92b91fff com.apple.DesktopServices 1.3.7    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd2000 - 0x92e05fff com.apple.Foundation 6.4.12 (567.42)    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f38000 - 0x92f56fff libGL.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f61000 - 0x92fbbfff libGLU.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd9000 - 0x92fd9fff com.apple.Carbon 10.4 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fdb000 - 0x92feffff com.apple.ImageCapture 3.0    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93007000 - 0x93017fff com.apple.speech.recognition.framework 3.4    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93023000 - 0x93038fff com.apple.securityhi 2.0 (203)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9304a000 - 0x930d1fff com.apple.ink.framework 101.2 (69)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e5000 - 0x930f0fff com.apple.help 1.0.3 (32)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930fa000 - 0x93128fff com.apple.openscripting 1.2.7 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93142000 - 0x93152fff com.apple.print.framework.Print 5.0 (190.1)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315e000 - 0x931c4fff com.apple.htmlrendering 1.1.2    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f5000 - 0x93244fff com.apple.NavigationServices 3.4.4 (3.4.3)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93272000 - 0x9328ffff com.apple.audio.SoundManager 3.9    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a1000 - 0x932aefff com.apple.CommonPanels 1.2.2 (73)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b7000 - 0x935c5fff com.apple.HIToolbox 1.4.10 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93715000 - 0x93721fff com.apple.opengl 1.4.7    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x937e2000 - 0x937e2fff com.apple.Cocoa 6.4 (???)    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937e4000 - 0x93e17fff com.apple.AppKit 6.4.10 (824.48)    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x941a4000 - 0x94216fff com.apple.CoreData 91 (92.1)    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9424f000 - 0x94314fff com.apple.audio.toolbox.AudioToolbox 1.4.7    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94367000 - 0x94367fff com.apple.audio.units.AudioUnit 1.4    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94369000 - 0x94529fff com.apple.QuartzCore 1.4.12    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94573000 - 0x945b0fff libsqlite3.0.dylib     /usr/lib/libsqlite3.0.dylib
    0x945b8000 - 0x94608fff libGLImage.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94675000 - 0x946bafff com.apple.bom 8.5.1 (86.3)    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947db000 - 0x947eafff libCGATS.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947f2000 - 0x947fffff libCSync.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94845000 - 0x9485efff libRIP.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c78000 - 0x94ce9fff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
    0x95018000 - 0x9501efff com.apple.filesync 3.0.4 (99.8)    /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x96f25000 - 0x96f44fff com.apple.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x977a1000 - 0x977aefff com.apple.agl 2.5.6 (AGL-2.5.6)    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e9d8000 - 0x9f611fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9f785000 - 0x9f827fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9f845000 - 0x9f892fff com.apple.CoreText 1.0.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f8bd000 - 0x9fc78fff com.apple.CoreGraphics 1.258.85 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fd05000 - 0x9fdb6fff ATS     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9fde5000 - 0x9fdeafff libmathCommon.A.dylib     /usr/lib/system/libmathCommon.A.dylib
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
    0xc0000000 - 0xc0012fff com.unsanity.ape 2.5.2    /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Host Name:      MD
    Date/Time:      2012-02-20 19:47:10.700 +0530
    OS Version:     10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path:    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent:  WindowServer [63]
    Version:        10.4.7 (10.4.7)
    Build Version:  1
    Project Name:   Finder_FE
    Source Version: 5292900
    PID:    742
    Thread: 4
    Exception:  EXC_BAD_INSTRUCTION (0x0002)
    Code[0]:    0x00000002
    Code[1]:    0x9002705c
    Thread 0:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
    3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
    4   com.apple.HIToolbox                0x932bfb20 RunCurrentEventLoopInMode + 264
    5   com.apple.HIToolbox                0x932bf1b4 ReceiveNextEventCommon + 380
    6   com.apple.HIToolbox                0x93304348 AcquireNextEventInMode + 72
    7   com.apple.HIToolbox                0x93304138 RunApplicationEventLoop + 132
    8   com.apple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x01405384 0 + 20992900
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x0000000001404c64  ctr: 0x000000009002704c
        r0: 0x0000000001404c64   r1: 0x000000000162af40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x000000000162af80   r5: 0x0000000040610000   r6: 0x00000000014070f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000001407054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x00000000014077fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x00000000014070f8  r27: 0x000000000140539c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x0000000001404c2c
    Binary Images Description:
        0x1000 -   0x31dfff com.apple.finder 10.4.7    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      0x505000 -   0x5f3fff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
      0x722000 -   0x724fff com.apple.textencoding.unicode 2.0    /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0x76d000 -   0x777fff fr.madrau.switchres.apemodule 3.8.7    /Users/maxzime/Library/Application Enhancers/SwitchResX Features.ape/Contents/MacOS/SwitchResX Features
    0x16c0000 -  0x1715fff com.DivXInc.DivXDecoder 6.0.0    /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x5938000 -  0x59bdfff net.sourceforge.webcam-osx.common 0.9.1    /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
    0x90000000 - 0x90019fff com.apple.CoreVideo 1.4.2    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9002a000 - 0x9035dfff com.apple.QuickTime 7.6.4 (1327.73)    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???)    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib     /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 (681.21)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib     /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770)    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib     /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.13    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.9    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib     /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib     /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d04fff libPng.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d09000 - 0x91d0cfff libRadiance.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e1b000 - 0x91e59fff libTIFF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e60000 - 0x91e60fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e62000 - 0x91f47fff com.apple.vImage 2.4    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4f000 - 0x91f6efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fda000 - 0x92048fff libvMisc.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92053000 - 0x920e8fff libvDSP.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92102000 - 0x9268afff libBLAS.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bd000 - 0x929e8fff libLAPACK.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a18000 - 0x92b06fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
    0x92b09000 - 0x92b91fff com.apple.DesktopServices 1.3.7    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd2000 - 0x92e05fff com.apple.Foundation 6.4.12 (567.42)    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f38000 - 0x92f56fff libGL.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f61000 - 0x92fbbfff libGLU.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd9000 - 0x92fd9fff com.apple.Carbon 10.4 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fdb000 - 0x92feffff com.apple.ImageCapture 3.0    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93007000 - 0x93017fff com.apple.speech.recognition.framework 3.4    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93023000 - 0x93038fff com.apple.securityhi 2.0 (203)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9304a000 - 0x930d1fff com.apple.ink.framework 101.2 (69)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e5000 - 0x930f0fff com.apple.help 1.0.3 (32)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930fa000 - 0x93128fff com.apple.openscripting 1.2.7 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93142000 - 0x93152fff com.apple.print.framework.Print 5.0 (190.1)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315e000 - 0x931c4fff com.apple.htmlrendering 1.1.2    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f5000 - 0x93244fff com.apple.NavigationServices 3.4.4 (3.4.3)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93272000 - 0x9328ffff com.apple.audio.SoundManager 3.9    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a1000 - 0x932aefff com.apple.CommonPanels 1.2.2 (73)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b7000 - 0x935c5fff com.apple.HIToolbox 1.4.10 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93715000 - 0x93721fff com.apple.opengl 1.4.7    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x937e2000 - 0x937e2fff com.apple.Cocoa 6.4 (???)    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937e4000 - 0x93e17fff com.apple.AppKit 6.4.10 (824.48)    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x941a4000 - 0x94216fff com.apple.CoreData 91 (92.1)    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9424f000 - 0x94314fff com.apple.audio.toolbox.AudioToolbox 1.4.7    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94367000 - 0x94367fff com.apple.audio.units.AudioUnit 1.4    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94369000 - 0x94529fff com.apple.QuartzCore 1.4.12    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94573000 - 0x945b0fff libsqlite3.0.dylib     /usr/lib/libsqlite3.0.dylib
    0x945b8000 - 0x94608fff libGLImage.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94675000 - 0x946bafff com.apple.bom 8.5.1 (86.3)    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x947db000 - 0x947eafff libCGATS.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947f2000 - 0x947fffff libCSync.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94845000 - 0x9485efff libRIP.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c78000 - 0x94ce9fff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
    0x95018000 - 0x9501efff com.apple.filesync 3.0.4 (99.8)    /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x96f25000 - 0x96f44fff com.apple.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x977a1000 - 0x977aefff com.apple.agl 2.5.6 (AGL-2.5.6)    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e9d8000 - 0x9f611fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9f785000 - 0x9f827fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73)    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9f845000 - 0x9f892fff com.apple.CoreText 1.0.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f8bd000 - 0x9fc78fff com.apple.CoreGraphics 1.258.85 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fd05000 - 0x9fdb6fff ATS     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9fde5000 - 0x9fdeafff libmathCommon.A.dylib     /usr/lib/system/libmathCommon.A.dylib
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
    0xc0000000 - 0xc0012fff com.unsanity.ape 2.5.2    /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Host Name:      MD
    Date/Time:      2012-02-20 19:48:40.699 +0530
    OS Version:     10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path:    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent:  WindowServer [63]
    Version:        10.4.7 (10.4.7)
    Build Version:  1
    Project Name:   Finder_FE
    Source Version: 5292900
    PID:    745
    Thread: 4
    Exception:  EXC_BAD_INSTRUCTION (0x0002)
    Code[0]:    0x00000002
    Code[1]:    0x9002705c
    Thread 0:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
    3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
    4   com.apple.HIToolbox                0x932bfb20 RunCurrentEventLoopInMode + 264
    5   com.apple.HIToolbox                0x932bf1b4 ReceiveNextEventCommon + 380
    6   com.apple.HIToolbox                0x93304348 AcquireNextEventInMode + 72
    7   com.apple.HIToolbox                0x93304138 RunApplicationEventLoop + 132
    8   com.apple.finder                   0x00008960 0x1000 + 31072
    9   com.apple.finder                   0x00004f18 0x1000 + 16152
    10  com.apple.finder                   0x00069ff0 0x1000 + 430064
    11  com.apple.finder                   0x00069e98 0x1000 + 429720
    Thread 1:
    0   libSystem.B.dylib                  0x9fe1ac8c kevent + 12
    1   com.apple.DesktopServices          0x92b0be50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib                  0x9fe17fc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib                  0x9fe1caac pthread_cond_wait + 480
    2   ...ple.CoreServices.CarbonCore     0x90bc484c MPWaitOnQueue + 224
    3   com.apple.DesktopServices          0x92b0c4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4   ...ple.CoreServices.CarbonCore     0x90bc465c PrivateMPEntryPoint + 76
    5   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib                  0x9fdf6f48 mach_msg_trap + 8
    1   libSystem.B.dylib                  0x9fdf6e9c mach_msg + 60
    2   com.unsanity.ape                   0xc00020d4 __ape_agent + 300
    3   libSystem.B.dylib                  0x9fe17908 _pthread_body + 96
    Thread 4 Crashed:
    0   <<00000000>>     0x9002705c 0 + -1878888356
    1   <<00000000>>     0x01405384 0 + 20992900
    Thread 4 crashed with PPC Thread State 64:
      srr0: 0x000000009002705c srr1: 0x000000000008d030                        vrsave: 0x0000000000000000
        cr: 0x40000002          xer: 0x0000000000000000   lr: 0x0000000001404c64  ctr: 0x000000009002704c
        r0: 0x0000000001404c64   r1: 0x000000000162af40   r2: 0x0000000000000000   r3: 0x0000000061630000
        r4: 0x000000000162af80   r5: 0x0000000040610000   r6: 0x00000000014070f8   r7: 0x0000000000000000
        r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000001407054
       r12: 0x000000009002704c  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x0000000000000000  r18: 0x00000000014077fd  r19: 0x0000000000000000
       r20: 0x0000000000000000  r21: 0x0000000000000000  r22: 0x0000000000000000  r23: 0x0000000000000000
       r24: 0x0000000000000000  r25: 0x0000000000000000  r26: 0x00000000014070f8  r27: 0x000000000140539c
       r28: 0x0000000000000000  r29: 0x0000000000000000  r30: 0x0000000000000000  r31: 0x00000

  • Automatic refresh requisition status overview in MSS e-recruiting

    Hi guys,
    We are implementing e-recruiting 6.0 and de MSS functionality to request a requisition with approvals. The manager can see his/her requests in the requisition status overview to follow-up. If we create a new requisition, the list is only updated with this after you close the browser and log back in in the portal. Is there any way to activate the automatic refresh of this list?
    Thanks
    Karolien

    Nilesh,
    iam working on setting up E-rec in stand alone scenario.
    While we have been able to setup the workflow in MSS up to approval of Extended req. request, i could not see the recruiter getting the requisition to release and publish it.
    Can u pls, send some documentation you have to the below mail address
    raaj333 at rediffmail dot com
    Thanks
    G RAJ

  • Can iMovie automatically refresh itself with re-edited original photos?

    Using iMovie 10.0.7, I created a 14:58 slide show using 173 photos from Photos Library. When I played it from iMovie Theater on my Apple TV, the thousands of white specks I had spent Retouching in iPhoto had all re-appeared.  I am unable to reload the re-re-edited originals individually without starting from scratch and losing all the timing, titles and transitions that have already been finished.  I only want to replace a couple of dozen photos that are badly speckled, but that means importing to iMovie (creating duplicate images), finding the flawed image in the timeline, deleting it (i.e., putting it back into the iMovie library), then inserting the newer image.  Will iMovie not automatically refresh its copies from the original images?

    It is possible to edit 'in place' original media in an iMovie 10 library and the changes will appear in events and projects when iMovie is relaunched.  (I've tested this but it is an unsupported hack).  However, I assume that your original media is from your iPhoto library and I believe that this will not have been copied into the iMovie library but iMovie will have linked to the items in the iPhoto library.   It would seem that iMovie used the original rather than the edited iPhoto files.  I don't use iPhoto at all and don't know how it handles edited files.
    Geoff.

  • Refreshing MV - Automatically Refresh weekly

    Hi Experts,
    Iam in need of creating a MV with automatic refresh every 7 days. Will this query help me to achieve this . Please help me
    CREATE MATERIALIZED VIEW Test
    REFRESH COMPLETE NEXT TRUNC(SYSDATE) + 7
    AS
    SELECT
    A.column1,b.column2 from
    table a ,table b
    where
    a.column3=b.column4
    Thanks
    Aswin

    aswin wrote:
    Hi Experts,
    Iam in need of creating a MV with automatic refresh every 7 days. Will this query help me to achieve this . Please help me
    CREATE MATERIALIZED VIEW Test
    REFRESH COMPLETE NEXT TRUNC(SYSDATE) + 7
    AS
    SELECT
    A.column1,b.column2 from
    table a ,table b
    where
    a.column3=b.column4
    Thanks
    AswinHi,
    you can add below code to refresh mview weekly.
    CREATE MATERIALIZED VIEW Test
    REFRESH FORCE
         ON DEMAND
         START WITH SYSDATE
         NEXT SYSDATE + 7
         WITH ROWID
    AS
    SELECT
    A.column1,b.column2 from
    table a ,table b
    where  a.column3=b.column4

  • Oracle Grid Control: How to automatically refresh home page.

    Oracle Grid Control = 10.2.0.4.0
    OS = Linux
    Bit = 32
    The home page of Oracle Grid Control automatically refreshes after 5 minutes; how can I alter?? TIA.

    Oracle Grid Control web Page's will automatically refresh for every (60 seconds) and it can be done manually as well.
    Not sure but you can try looking for an option in Setup and Preferences at the Right Top Corner of the Grid Control Page.

  • Automatic refresh of queries into workbook

    Dear SAP fans,
    I am using a workbook with 2 BEX queries and some VBA coding for each "onRefresh".
    I set both queries to "refresh query when opening the workbook" so that my workbook is automatically updated when I open it.
    Unfortunately the "system" automatically refreshes the queries in the "wrong" order. Therefore my result in incomplete...
    Any idea to refresh the queries in the right order?
    Alternatively, I was thinking to refresh the second query via VBA coding, but I can't get it right...
    Thanks in advance for your help!!
    Kind regards
    Julien

    Hi both,
    Thanks a lot for your great answer:
    S.Sankaran,
    I saw the same behaviour, but was not quite sure it will be the rule...
    This solution does work!
    However I would be happy to use Sebastian solution, which sounds cleaner and more flexible...
    Unfortunately I do not manage to make it work: I do not manage to get the option definition..
    Seastian,
    Could you help me to open the object katalog of the sapbex.xla?
    Thanks again both of you!
    Julien

  • Automatic Refresh of Shopping Cart POWL

    We are running SRM 7.0.
    When a user accesses their POWL of shopping cart data, the POWL query is not automatically refreshed.  Is there a batch program or configuration setting that will allow a POWL query to be refreshed every time the user accesses that particular query?
    Thanks,
    Paul

    Hello,
    POWL is a static functionality, the refresh doesnt happen automatically. User must click on "refresh" button in order to get the screen refreshed.                                                                               
    There is the consulting note 1134640, which has a document SRM_POWL_RefreshClickOnQuery.pdf attached. This note implements the functionality to refresh the POWL when clicking on query name.                     
    If you want you can apply this note, but this is a consulting note, not the standard.                                                                  
    Kind regards,
    Ricardo

  • Automatic Refresh of Data Visualization Component

    Hi,
    I saw Duncan Mills do a really neat demo at ODTUG where he setup a graph to automatically refresh upon data changes in a database.
    I'm trying to replicate this behavior but am failing.
    Does anybody have any suggestions / instructions on how to do this ?
    Thanks,
    Mark

    Maybe Duncan used the Active Data Service ( chapter 40 of the documentation. )
    in combination with BAM / ADF / ADF BC
    In order to use the Active Data Service, you need to have a data store that publishes events when data is changed, and you need to create business services that react to those events and the associated data controls to represent those services.
    You also need to configure your application to use the Active Data Service. You can set your application to push content as it changes in the data store, or you can have the client poll the service at designated intervals. Once your active data store is in place, along with services and the corresponding data control, you can use the Data Controls panel to create the components that will respond to the active data.
    please let me know if it works

Maybe you are looking for

  • Radiobutton spry in dreamweaver cs3

    Hi, Was wondering if someone can point me in the right direction. I have downloaded a trial version of the dreamweaver cs3 and was doing a web form for the first time with spry's. I found them really good to use however there is no button to click fo

  • MS Exch Acc not syncing - manually setting it in iPhone or through iTune

    Hi, I have confugured the MS Outlook in my personal laptop to work with my work email. The new iPhone seem to support MS Exchange account. Although I could setup my yahoo and gmail account pretty fast, I have failed to successfuly setup the MSEx acco

  • Regarding a function exit

    hi guys, i have extended an idoc and for this i am using a function exit to populate data in the added new segment z1segment under E!knvkm segment ( parent segment). I found which funtion exit to use but i could not make out the logic to populate the

  • Black frames around content areas suddenly | iOS 8.1

    So.... touching my iPhone 5s touchscreen activates frames around the "clickable" areas that I touch, but does not activate anything. Can't do anythign more than highlight what I touch which basically makes my phone unusable. Can't even turn my phone

  • Opening External XLS file

    Seems simple enough but I'm new to Swing. All I want to do is have my JTextButton open whatever file it's field specifies in a new window. In this case it will be an excel file. So it should open the file using Excel. Is there a tutorial that would s