Pls Help. DS5.1p1 errors PR_Accept() failed, error -5971 (Process open FD t

Hi all,
I install iplanet Directory Server5.1p1 on Solaris 8. These errors fill full in my error log files
"PR_Accept() failed, error -5971 (Process open FD table is full.)"
I use idsktune tool and detect i face the problem file descripton. I have increase to 4096 ( in /etc/system file and ulimit -n 4096), but these errors still exist in my error logs.
Who know this prolem, pls give us a solution to fix this errors
Thank alot
Best Regards

Hi!
To increase the FDs available for DS, edit the Configuration --> Performance Settings and increase the no. of FDs available for DS. please check if you havent done this.
I faced the similar problem. Increased the system limit(/etc/system) and DS setting, but was still recieving the error message time to time, which disappears automatically, when FDs get freed. The server is quite a busy LDAP server.
Can someone comment how can i see the actual Fd utilisation on a Solaris 8 system.
I have been checking like:
ls -l /procs/fd | wc -l
and by:
ls -l /procs/pid-of-slapd/fd | wc -l
But always find the Fds in use to be quite lesser than the limit specified 4096.
Thanks for sharing.
Cheers!
VIvek

Similar Messages

  • Problem with DS5.1 patch1( PR_Accept() failed, error -5971 (Process open FD

    Hi all,
    I install iplanet Directory Server5.1p1 on Solaris 8. These errors fill full in my error log files
    "PR_Accept() failed, error -5971 (Process open FD table is full.)"
    I use idsktune tool and detect i face the problem file descripton. I have increase to 4096 ( in /etc/system file and ulimit -n 4096), but these errors still exist in my error logs.
    Who know this prolem, pls give us a solution to fix this errors
    Thank alot
    Best Regards

    I suggest you try the Directory Server forum.

  • PR_Accept() failed, error -5971 (Process open FD table is full.)

    I am working on a web app which uses the SunONE directory server for
    some authorization. Sometimes it happens that the webserver just hangs
    with no errors in the webserver log. In the slapd error logs I do see
    the following exceptions :
    PR_Accept() failed, error -5971 (Process open FD table is full.)
    I am not sure why is this happening? What could be the problem? I am
    assuming FD means the file descriptor? One bug we found in the app is
    that it tries to add a new user in the LDAP even if its there. I do get
    "add value to attribute type nsRoleDN in entry .....: duplicate value"
    exceptions, but thought its harmless. Could this exception be causing
    something?

    Hi,
    I had exactly the same error message. I did not find the cause of this after spending a lot of time looking around. I only know it is a file descriptor table problem. The sun one directory server access log, however, did not have the number of file descriptors count reached maximum. I am very much puzzled by this. Did you find out why yet?
    u4me2

  • Pls help...Error while importing a table...!!!!!!!!!!!!

    Hi experts...
    My export dump is around 300GB , which is taken from Direct path.
    One of my developer had mistakenly dropped a table and I am trying to import it. when I am importing I am getting folllowing error in log file...
    Export file created by EXPORT:V09.02.00 via direct path
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    import server uses WE8ISO8859P1 character set (possible charset conversion)
    IMP-00051: Direct path exported dump file contains illegal column length
    IMP-00008: unrecognized statement in the export file:
    M-~M-^?M-~M-^?M-~M-^?M-~M-^?^A
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    IMP-00008: unrecognized statement in the export file:
    I am using following command...
    imp system/<password>file=<dumpfile>.dmp log=<logfile>.log tables=<table_name> fromuser=<>touser=<> GRANTS=N indexes=N;
    Please help me import it successfully.
    Thnaks in advance ...
    chotu

    This sort of error is mentioned on MetaLink. It's possibly a bug with exp, and various "workarounds" can be found on the Web for the bug. You seem to be using an ancient vesion of Oracle, so why not upgrade? Meanwhile, the solutions seem to be to set RECORDLENGTH=65000 CONSTRAINTS=Y, checking that unused columns are dropped, and probably lot smore. You could try exporting/importing again, in case it was a one-off "wobbly".

  • Pls. help with ADO Error Code

    Somebody pls. advise how to overcome this error  see snapshot
    [http://img16.imageshack.us/my.php?image=errw.jpg]
    The SQL returns results in TOAD but CR is unable to recognise th tables. 
    Mave

    Hi,
    The screen shot you sent is the dsn dailog box.
    You need to create DSN first  to create odbc connectivity
    Go through the steps as written below.
    1) Start=> Programme => Control Panel => Administrative Tools => ODBC Panel.
    2)  Select System  tab and  click on add tab.
    3)Once you click add you will get drivers list select oracle driver .
    4)provide dsn name and further information .
    and now start the process of connectivity  in that box you will get the name you given select that and
    make connectivity.
    Regards,
    Neo .

  • Pls help fetch resultset error(2 rst.next() in one loop)?

    hi I got the following problem:, would any help me?
    while(rst.next())
    {  somtehings
    rst.next() <--- error occurs if the ResultSet return odd number rec.?
    somtehings
    the above statment used to show two records in one row.

    Hi,
    I think it is wrong to use rst.next into the while statment...
    the following code is an example of while "loop" and as you can see, I don't use result.next() in the loop, but only in its condition :
                   while (result.next()){
                        out.println("<tr>");
                        out.println("<td valign=top width='25%'>");
                        out.println(result.getString("username"));
                        out.println("</td>");
                        out.println("<td valign=top width='25%'>");
                        out.println(result.getString("password"));
                        out.println("</td>");
                        out.println("<td valign=top width='25%'>");
                        out.println(result.getString("date_from"));
                        out.println("</td>");
                        out.println("<td valign=top width='25%'>");
                        out.println(result.getString("date_to"));
                        out.println("</td>");
                        out.println("</tr>");
    I don't understand your question: "do you need to work two lines per loop?"
    bye
    Ivan

  • Pls help... error massage when phone reboot!!!

    Hi,
    3G Curve user again, i get error massage when phone reboot afteri wipe my 3G Curve 9300 phone's data.
    error: A Media Card has been inserted that contains encrypted files which will be unaccessible by this device.
    Can any 1 tell me abt this error ?

    That's the Wacom Inkling Plugin.
    It's not compatible with your version. Get the file out of your plugins folder.
    On top of it you need to change the name of the Wacom Inkling application "Sketch Manager" to something else to keep it from launching automatically and installing the plugin again and again.
    You can also try and get a compatible version from Wacom. It's available for versions CS5, CS6 and CC (independently of course)...

  • Pls help with CS4 error!

    I have been working with Dreamweaver CS4 for sometime now. I  tried to open a file but it took forever so I tried to force quit  it. Still it was not responding so I shut my computer down and waited for 30 minutes. I tried to open it again but after i click the icon it jumps on the dock for a few seconds and goes away. Now All my other CS4 applications will not launch either. I tried to delete preferences but nothing so I uninstalled it. I just installed a fresh CS4 copy but it still will not work/launch. Thank you. I am using mac OS 10.5 Leopard. Never had a problem with any CS4 before. All my other applications work well only Adobe CS4 will not
    Please!!!!!! I really need your help guys!
    Thanks

    Always run disk utility before deleting prefs or reinstalling anything. Usually deleting prefs will cure what ails your apps. Use uninstall utility to uninstall apps if you have to go that route. Don't just drag them to the trash. The uninstall will remove all associated files for each apps. Be aware there are usually more than one pref file for an app.

  • HELP - illustrator cs5 error message when opening cs3 files

    Has anyone else had this issue? Do you know how to fix it.
    I just bought and downloaded cs5. When opening Illustrator cs3 files I get an error message: "Can't finish previewing. Could not complete the requested operation."
    Then it opens the file but I it is only line work (no fills, gradients, etc) and I can not do anything in the file. If I click an object the error message pops up again.
    This is what it looks like in cs3.
    This is how it displays in cs5
    I cant find anything online about this issue. Also this occurs on all of my illustrator files, not just one.
    any advice?
    thanks

    davidmacy wrote:
    I think your current system should be fine for running Illustrator CS5. Please let us know if the original problem happens for you again.
    I think your system is also fine for running Adobe Illustrator CS 5 but of course you are running the system as well and a browser and e-mail client…and perhaps Adobe Photoshop or Adobe InDesign or Microsoft Word in which case I think there might be on occasion an out of memory issue and with a complex file you will lose your preview.
    I have lost my preview as well on certain files and found that it usually is because I had trashed the preferences and forgot to set the scratch to a different disk other than the startup disk.
    I have 16 GB of RAm and once in a while I still lose the preview.

  • Please help! - Macbook Air that failed repair disk process, will not boot

    Hello, and thanks for looking.
    A bit of background:
    My Macbook air recently started working stragely post upgrade to most recent snow leopard. Symptoms: spinning beach ball when cursor went up to menu, and could not click on apple symbol. Would still run 'normally' though.
    Fixed permissions and did a disk check - was advised to repair disk - and this process failed 1/2 way through. The computer then would now not boot up in safe mode or otherwise. All I can do it boot up with superdrive into OS.
    Due to small windows partition (I think) I cannot simply reinstall the OS, as it gives me the message "cannot change disk - save as many files as possible and erase and install".... where the final problem begins....
    All I can then access is Utilities, with my options being erase and reinstall, or to try and make an image of my Mac HD - however - cannot eject the superdrive as it is running the OS to put the drive image on my external drive.
    Seems my only option is to erase the drive at this stage?? Called Apple and this was a "new problem" to them, and repair centres didnt know what to do either.
    The only glimmer of hope is that if I hold "option" down when starting I can still boot into windows, but cannot save the image there either. All I can do on that screen is establish a network/internet connection.
    I gather that I cannot remove the Air HDD and put it in another mac as it does not have a standard interface, but then came across the "Netbooting" feature.
    Would this somehow allow me to run through remote disk the OS on another Mac? and then have connected my external drive to save my HDD image to?
    Or am I stuffed?
    ANY advice would be hugely appreciated. Thanks so much.

    I would suggest trying to save/repair that drive with DIskWarrior yet before having to stop here and pick up a paddle.
    Check out the new remodeled MacOSG website! 24-hour Apple-related news & support.
     MacOSG: An Apple User Group  iTunes: MacOSG Podcast  Follow us on Twitter: MacOSG

  • Pls Help: Photoshop Creative Cloud 2015 keeps crashing after I open a project :(

    I spent so much time working on some projects... went to sleep... got back on this morning and about 2 seconds after I open a Photoshop project I had been working on, Photoshop crashes "has stopped working and needs to close".
    I tried system restore, did not work.
    I tried disabling my anti-virus, did not work.
    I am using Windows 7
    1. I am on the 11th day of my Photoshop trial period of a purchased subscription. Can I uninstall this, and reinstall it?
    2. My computer drivers should be fine and updated and all that jazz.
    3. Here's what the event log said:

    2. My computer drivers should be fine and updated and all that jazz.
    No, they are not. It crashes due to your graphics driver. Update it and configure it suitably.
    Mylenium

  • PR_ACCEPT() failed -5987 and directory start

    Hello,
    I'm working on Solaris 2.8 and Directory Server 4.12.
    Immediately after directory start, I found the following message in errors log file : PR_ACCEPT() failed -5987. I thought this message was a misreported error, and the real error should be PR_ACCEPT() failed 5971 (process open FD table is full).
    ulimit -aH launched on my server returns 8092 for the maxdescriptors value; this parameter is set on 4096 for the Directory Server.
    Could it be possible that immediately after start that this value is reached? Does anybody have an other explication?
    Thanks for your responses,
    Regards,
    Thomas

    Hello,
    I'm working on Solaris 2.8 and Directory Server 4.12.
    Immediately after directory start, I found the following message in errors log file : PR_ACCEPT() failed -5987. I thought this message was a misreported error, and the real error should be PR_ACCEPT() failed 5971 (process open FD table is full).
    ulimit -aH launched on my server returns 8092 for the maxdescriptors value; this parameter is set on 4096 for the Directory Server.
    Could it be possible that immediately after start that this value is reached? Does anybody have an other explication?
    Thanks for your responses,
    Regards,
    Thomas

  • Error in Process status after confirmation

    Hi,
    when we post  confirmation in SRM for a particular PO it is showing the status as error in process.how can i check what is the probelm assocoiated with this confirmation.
    I went to Rz20 and got the Idoc.but when i tried to process it manually in WE19.it shows partner profile not maintained
    can any one suggest me what needs to be done
    regards
    subbu

    Hi Can you reproduce the same error in development?
    if so you can easily finda problem.
    hope it may be error in process state in confirmation.
    if you recreate this it helps.
    1. error in process
    2. again to create confirm - posted in a backend.
    it may or may not be isolated error. try to replicate in development with same data.
    muthu

  • Elements 6 error message when opening

    Elements 6
    Mac OS X
    Getting error message upon trying to open Elements (see below). "Photoshop Elements quit unexpectedly"
    I have been using this program for years and this is the first time I've had problems with it.
    6 GB of space available
    Not sure if I've run updates.
    Thank you for your help!!
    Error Message:
    Process:         Adobe Photoshop Elements [2406]
    Path:            /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/MacOS/Adobe Photoshop Elements
    Identifier:      com.adobe.PhotoshopElements
    Version:         6.0 (20080307.m.527) (6.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [127]
    Date/Time:       2012-10-30 09:04:46.849 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          11602 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  37 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      10DA094C-D725-4CE0-B3B8-AA48C9D479B3
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  5
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x95431e5e read$UNIX2003 + 10
    1   com.apple.CoreFoundation                0x904427df _CFReadBytesFromFile + 559
    2   com.apple.CoreFoundation                0x90441c73 CFURLCreateDataAndPropertiesFromResource + 163
    3   com.apple.CoreFoundation                0x90430ad7 _CFBundleCopyInfoDictionaryInDirectoryWithVersion + 1607
    4   com.apple.CoreFoundation                0x9043047f CFBundleGetInfoDictionary + 79
    5   com.apple.CoreFoundation                0x9042256d _CFBundleCreate + 701
    6   com.apple.CoreFoundation                0x904d9e8b CFBundleCreateBundlesFromDirectory + 139
    7   com.adobe.PhotoshopElements             0x0042478f 0x1000 + 4339599
    8   com.adobe.PhotoshopElements             0x00424c37 0x1000 + 4340791
    9   com.adobe.PhotoshopElements             0x00424f3f 0x1000 + 4341567
    10  com.adobe.PhotoshopElements             0x00729f7a 0x1000 + 7507834
    11  com.adobe.PhotoshopElements             0x007307d6 0x1000 + 7534550
    12  com.adobe.PhotoshopElements             0x00730b09 0x1000 + 7535369
    13  com.adobe.PhotoshopElements             0x0061bcd6 0x1000 + 6401238
    14  com.adobe.PhotoshopElements             0x0061d096 0x1000 + 6406294
    15  com.adobe.PhotoshopElements             0x006d3d7b 0x1000 + 7155067
    16  com.adobe.PhotoshopElements             0x0021b55f 0x1000 + 2205023
    17  com.adobe.PhotoshopElements             0x0021b8bd 0x1000 + 2205885
    18  com.adobe.PhotoshopElements             0x00003aca 0x1000 + 10954
    19  com.adobe.PhotoshopElements             0x000039f1 0x1000 + 10737
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x9544d382 kevent + 10
    1   libSystem.B.dylib                       0x9544da9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x9544cf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x9544ccfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x9544c781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x9544c5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x9544c412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x9544c9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x9544c5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                       0x95426afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95427267 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore          0x91165ab0 TS_exception_listener_thread + 160
    3   libSystem.B.dylib                       0x95454259 _pthread_start + 345
    4   libSystem.B.dylib                       0x954540de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x95426b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x954546e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x954835a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95fd48e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x95f8d3b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x95f8d294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.adobe.PhotoshopElements             0x00f94881 0x1000 + 16332929
    7   com.adobe.PhotoshopElements             0x00f24909 0x1000 + 15874313
    8   com.adobe.PhotoshopElements             0x00f92dac 0x1000 + 16326060
    9   com.apple.Foundation                    0x95f984c4 -[NSThread main] + 45
    10  com.apple.Foundation                    0x95f98474 __NSThread__main__ + 1499
    11  libSystem.B.dylib                       0x95454259 _pthread_start + 345
    12  libSystem.B.dylib                       0x954540de thread_start + 34
    Thread 5 Crashed:
    0   AdobeLM_libFNP.dylib                    0x22a5e310 TRR_Fixup + 25242
    1   AdobeLM_libFNP.dylib                    0x22d32217 0x22a52000 + 3015191
    2   AdobeLM_libFNP.dylib                    0x22ac2807 TRR_Fixup + 436113
    3   AdobeLM_libFNP.dylib                    0x22ac0e3a TRR_Fixup + 429508
    4   AdobeLM_libFNP.dylib                    0x22a6384e TRR_Fixup + 47064
    5   AdobeLM_libFNP.dylib                    0x22c6bf47 0x22a52000 + 2203463
    6   AdobeLM_libFNP.dylib                    0x22c6c485 0x22a52000 + 2204805
    7   AdobeLM_libFNP.dylib                    0x22bd3e2d 0x22a52000 + 1580589
    8   AdobeLM_libFNP.dylib                    0x22bd4c53 0x22a52000 + 1584211
    9   AdobeLM_libFNP.dylib                    0x22c769e2 0x22a52000 + 2247138
    10  com.adobe.PhotoshopElements             0x0105d64e 0x1000 + 17155662
    11  com.adobe.PhotoshopElements             0x010860cf 0x1000 + 17322191
    12  com.adobe.PhotoshopElements             0x0107d167 0x1000 + 17285479
    13  com.adobe.PhotoshopElements             0x010636f5 0x1000 + 17180405
    14  com.adobe.PhotoshopElements             0x010229af 0x1000 + 16914863
    15  com.adobe.PhotoshopElements             0x0100ceae 0x1000 + 16826030
    16  com.adobe.PhotoshopElements             0x0100c179 0x1000 + 16822649
    17  com.adobe.PhotoshopElements             0x0100be8e 0x1000 + 16821902
    18  com.adobe.PhotoshopElements             0x0100371d 0x1000 + 16787229
    19  com.adobe.PhotoshopElements             0x00f94b90 0x1000 + 16333712
    20  com.adobe.PhotoshopElements             0x00f28a8e 0x1000 + 15891086
    21  com.adobe.PhotoshopElements             0x00f28b19 0x1000 + 15891225
    22  com.adobe.PhotoshopElements             0x00e17b93 0x1000 + 14773139
    23  com.adobe.PhotoshopElements             0x00e17f6d 0x1000 + 14774125
    24  com.adobe.PhotoshopElements             0x00e180c4 0x1000 + 14774468
    25  com.adobe.PhotoshopElements             0x00e1838d 0x1000 + 14775181
    26  com.adobe.PhotoshopElements             0x00f92dac 0x1000 + 16326060
    27  com.apple.Foundation                    0x95f984c4 -[NSThread main] + 45
    28  com.apple.Foundation                    0x95f98474 __NSThread__main__ + 1499
    29  libSystem.B.dylib                       0x95454259 _pthread_start + 345
    30  libSystem.B.dylib                       0x954540de thread_start + 34
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x22a5e17b  ecx: 0x003328f0  edx: 0x003f0200
      edi: 0x52d358a6  esi: 0xad2ca758  ebp: 0xb0290d78  esp: 0xb0290c50
       ss: 0x0000001f  efl: 0x00010286  eip: 0x22a5e310   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -  0x1a4afc1 +com.adobe.PhotoshopElements 6.0 (20080307.m.527) (6.0) <B03CAB66-321F-4D59-9084-1E23D7ADE66C> /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/MacOS/Adobe Photoshop Elements
    0x2078000 -  0x22f9fe7 +AdobeAGM ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x23a3000 -  0x24a6fff +AdobeACE ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x24c6000 -  0x24e7ff7 +AdobeBIBUtils ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x24f4000 -  0x250dfff +AdobeBIB ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2517000 -  0x277bfe7 +AdobeCoolType ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x27f7000 -  0x281aff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Share dExpat
    0x282c000 -  0x2881ffd +AdobeXMP ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x288e000 -  0x28a9ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x28c2000 -  0x2978fcc +FileInfo ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x29a6000 -  0x29acff7  org.twain.dsm 1.9.4 (1.9.4) <1EF840DB-CB48-5207-7535-D82EBC0FCD5F> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x29b3000 -  0x2b1efd7 +AdobeOwl ??? (???) <DA9E8714-6B1E-47C2-A824-6A1206FD9C81> /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2b77000 -  0x2b7dfff +com.adobe.AdobeCrashReporter 2.5 (2.5.02272007) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReport er
    0x2b84000 -  0x2ba0fd7 +com.adobe.LogTransport 1.0 (1.0) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x2bab000 -  0x2f00fc7 +com.adobe.linguistic.LinguisticManager 3.1.0 (3.1RC) <8111F571-D718-411E-9624-6FB83187D84A> /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x3099000 -  0x3115fef +AdobeScCore 3.7.0 (compatibility 3.7.0) <12B79F08-16B1-42A2-B928-09648D6868C8> /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x316b000 -  0x31f0fff +AdobeExtendScript 3.7.0 (compatibility 3.7.0) <0F549ADC-415C-4341-A8CB-FCEFAB86A0F1> /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x3252000 -  0x3323fef +AdobeAXEDOMCore ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x33d6000 -  0x33daffc +AdobeOperaMgr ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeOperaMgr.framework/Versions/A/AdobeOperaMgr
    0x33e4000 -  0x34a1fff +AdobeAXSLE ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x3549000 -  0x3574fff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x358c000 -  0x35d3fc7 +com.adobe.adobe_caps adobe_caps 0.0.120.0 (0.0.120.0) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x35e3000 -  0x3623ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x36e0000 -  0x36ecfe3 +com.adobe.epic adobe_eula 2.0.1.1090 (2.0.1.1090) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    0x36f5000 -  0x36f6ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4542000 -  0x4550fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x4554000 -  0x4566ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x456a000 -  0x456bff7  ATSHI.dylib ??? (???) <F06AB560-C2AF-09F6-7328-773E43CA2713> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x45e7000 -  0x45f5fc5 +com.adobe.epic adobe_personalization 2.0.1.1082 (2.0.1.1082) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_personalization.framework/adobe_personalization
    0x19221000 - 0x19221ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x19295000 - 0x192cafd3 +com.adobe.epic adobe_epic 2.0.1.1082 (2.0.1.1082) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_epic.framework/adobe_epic
    0x229b5000 - 0x229c2ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/asneu
    0x22a52000 - 0x22ecafeb +AdobeLM_libFNP.dylib ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/MacOS/AdobeLM_libFNP.dylib
    0x40000000 - 0x400a6fe0 +AdobeJP2K ??? (???) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90018fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x900ce000 - 0x901aefe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x901af000 - 0x901b6ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90414000 - 0x9058ffe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x905af000 - 0x9060cff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9060d000 - 0x90660ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x90677000 - 0x906b8ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x906b9000 - 0x90acfff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x90ad0000 - 0x90b62fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x90b63000 - 0x90d3cfff  libType1Scaler.dylib ??? (???) <04AF2B34-81D4-97E9-BD56-387D37C16F46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x90e81000 - 0x90eb4fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x91077000 - 0x91397ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x913a0000 - 0x913a3ff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x91425000 - 0x91502fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x91503000 - 0x91567ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x91568000 - 0x91603fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x91643000 - 0x9165ffe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x91660000 - 0x91664ff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91665000 - 0x91669ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x91743000 - 0x9175bff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9175d000 - 0x9175fff7  libRadiance.dylib ??? (???) <5F803B4A-B294-BA94-FB68-E8756EE41B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x91787000 - 0x91887fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x91888000 - 0x91aeeff7  com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91b00000 - 0x91b50ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x91ba3000 - 0x91bacff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91bad000 - 0x91bb3fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x91bb4000 - 0x91bb9ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91c06000 - 0x91c11ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x924f6000 - 0x92518fef  com.apple.DirectoryService.Framework 3.6 (621.15) <F38894EA-2C13-7FC5-C084-94DA0B5B6B68> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x92519000 - 0x92529ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9255f000 - 0x9260bfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x92df7000 - 0x93162ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9319c000 - 0x935d1ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x935d2000 - 0x935ddff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x935e9000 - 0x9360afe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93707000 - 0x93a2bfef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x93a67000 - 0x93ac8fe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x93ac9000 - 0x93c8cfeb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <5BF202E9-730A-3675-4374-E5300BC8ED10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x93c8d000 - 0x93cc8ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x94175000 - 0x94277fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x94278000 - 0x942f2fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x942f3000 - 0x945edfef  com.apple.QuickTime 7.6.6 (1791) <8E56F3DC-725B-0299-7E62-8599CA6EC4C0> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94618000 - 0x9465cff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9465d000 - 0x94785fe7  com.apple.WebKit 6534.57 (6534.57.2) <4CB86278-4657-3503-8042-074628222DF3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94786000 - 0x94908fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <50A70082-F800-93D8-1A7C-C95AAB1F352C> /usr/lib/libicucore.A.dylib
    0x94909000 - 0x949a1fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94a59000 - 0x94a67fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x94a68000 - 0x94b42fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x94b7d000 - 0x94bb0ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x94bb1000 - 0x94bb4ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x94bb5000 - 0x94bbffe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x94bc0000 - 0x94cfdfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94d0c000 - 0x94d0cff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94d0d000 - 0x94d10ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94d11000 - 0x94e3ffe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x952cd000 - 0x9530aff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x95310000 - 0x9531affb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x95426000 - 0x955cdff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x955ce000 - 0x95611ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95682000 - 0x95684ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x95685000 - 0x956adff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x95c83000 - 0x95d8ffe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x95d90000 - 0x95d90ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x95db1000 - 0x95e31feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x95e3e000 - 0x95e44fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x95ea0000 - 0x95f59fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95f82000 - 0x961f3fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x961f4000 - 0x961f5ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96332000 - 0x96346ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x963bc000 - 0x963ceff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x963cf000 - 0x9646cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x9656b000 - 0x9665fff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
    0x966ab000 - 0x966acff7  com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x966ad000 - 0x966c1fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9689f000 - 0x9694dff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x9694e000 - 0x96952ff7  libGIF.dylib ??? (???) <9E51F8ED-83B4-DA41-1E2F-CFA726936A30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x96953000 - 0x96971fe7  libPng.dylib ??? (???) <5B979A83-8CE7-6BD7-B84C-A2D1119B378D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x978fd000 - 0x9792eff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x9792f000 - 0x9793dff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9793e000 - 0x9794aff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x9794b000 - 0x979baff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x979bb000 - 0x98733fe7  com.apple.WebCore 6534.57 (6534.57.2) <6AF29D9A-F549-5BE7-3842-CFF75FC46360> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x98734000 - 0x98734ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98918000 - 0x99107557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x99108000 - 0x99128fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x99179000 - 0x991bcff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x991bd000 - 0x99279fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9927a000 - 0x992c7feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x992dc000 - 0x992edff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x992ee000 - 0x99328ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x99332000 - 0x99332ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x99333000 - 0x99352ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x99353000 - 0x993fbffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9946b000 - 0x9946bff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9946c000 - 0x994b0fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x994b1000 - 0x99501fe7  libTIFF.dylib ??? (???) <E8B31850-BFD4-48E6-B264-A4340CD19929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x99509000 - 0x9954bff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9964f000 - 0x996fcfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x996fd000 - 0x99704ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x99705000 - 0x9974bff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x99853000 - 0x99853ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x99854000 - 0x99b02fe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <5B18B308-DBB2-7133-DE56-494C2FA1848B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x99b58000 - 0x99b5bfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x99b5c000 - 0x99c27fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x99c64000 - 0x99c88ff7  libJPEG.dylib ??? (???) <C43FD809-08B6-629D-8980-D7B0ECEA20A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x99efd000 - 0x99f7fffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x99f80000 - 0x99f80ff7  com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x99f81000 - 0x99febfe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x99fec000 - 0x99ff9ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99ffa000 - 0x99ffaff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x99ffb000 - 0x9a021ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9a1f5000 - 0x9a2adfeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x9a2ae000 - 0x9ab91ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0xb0000000 - 0xb0004fd8  com.apple.carbonframeworktemplate 1.1 (1.1.0) /Applications/Adobe Photoshop Elements 6/Adobe Photoshop Elements.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <B339B85B-1B6D-81D8-1281-7B8C8A517329> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EF3E3210-927F-DB9F-4CD4-4039A2AE2F84> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.42f4
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc526, 0x06400000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8217, 0x06110000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    Hi,
    Please try couple of probable solutions as mentioned below:
    Solution 1:
    1. Close Elements.
    2. Launch the Photoshop Elements Welcome Screen and hold down Cmnd+ alt + shift as you click Editor.
    3. Continue to hold the keys until you see a message box asking if you want to delete Photoshop Elements settings file; click Yes. Elements will open with default preferences.
    Solution 2: In case any network printer is attached try to launch without network or printer uninstall or make different printer as default.
    Now launch PSE and check if it works.

  • When GOA goes to error in process status?

    for example
    In purchase order, purchaser can change the plant at header or item level even follow-on document exists.
    The symptom can be reproduced by executing the following steps,
    1. Create purchase order in extended classic scenario
    2. Create partial invoice for the PO item.
    3. Try to change the plant of the PO in SRM, there will not be any error message. ORDER the PO, now the PO will go to 'Error In Process' due to backend error - 'Plant can no longer be changed'.
    System should not allow the user to change the Plant in PO, if any follow-on document exists (either confirmation or invoice).
    suggest me to recreate for GOA
    i want to recreate GOA too ERROR IN PROCESS .Wrestling with technical resource to recreate the issue.
    any trick and tips are welcome.
    Muthu

    Hi Can you reproduce the same error in development?
    if so you can easily finda problem.
    hope it may be error in process state in confirmation.
    if you recreate this it helps.
    1. error in process
    2. again to create confirm - posted in a backend.
    it may or may not be isolated error. try to replicate in development with same data.
    muthu

Maybe you are looking for