Find memory id export

Dear All,
I am debugging a code in user exit. There the code is importing a value from a memory ID. I tried to find from where it is exporting into the memory that value. but i could not find. I made a thorough search in teh main standard program, but that memory id is nowhere else used.
What would be the best way to search where teh memory id value is being exported ??.

That's not what I meant. There's no guarantee that the export is done from the main program.
When starting debugging, take the menu path:
Breakpoints -> Breakpoint at -> Breakpoint at Statement
Then fill in "export" (without the quote)
press enter
continue debugging.
Rob

Similar Messages

  • How can I compare a (partial) export folder from iPhoto to an event in iPhoto to find images not exported?

    How can I compare a (partial) export folder from iPhoto to an event in iPhoto to find images not exported?  Or better yet, how can I export selected events to a new iPhoto library or an existing iPhoto library with events, titles and keywords intact?

    Ask here:
    https://discussions.apple.com/community/ilife/iphoto

  • No thumbnails in finder/preview after exporting files as dng out of lightroom?

    Does anyone have experience sorting out the issue of no thumbnails in finder/preview after exporting files as dng out of lightroom?
    There are several conversations in the forum about this problem, but cant seem to find a solution.
    Anyone know how to sort this out?

    Thanks for your reply.
    Mac does support previewing dngs in finder and preview. This has not been a problem before (besides when using my fujufilm compact camera, which mac now has updated the Apple camera for).
    To answer your Q about dng files. Thats exactly what i do. I have work which involves communicating/transfering multiple lr -edited files to someone else whom further edits in ps. Not only that, I personally use dng as a way of storing my files. I suppose like to keep my files tidy and uniform.
    Any mac users out there who has a a solution to my issue with previewing dngs?

  • Find memory leak

    Hi All ,
    In our SAP application server (Solaris 10 X86 running on hardware HP ProLiant BL685c G5) physical memory available is day to day decreasing drastically. We suspect, there is a memory leak.
    Could you please let us know how to find memory leak in Solaris.
    Regards,
    Rajesh.

    Hi Rajesh
    Memory leaks have a large number of possible causes, including:
    •Unsupported hardware or software
    •Custom Scripting
    •Misconfiguration
    •Third party hardware and software issues
    The prstat command can be used to gather basic performance data to help identify if there are any processes consuming a large amount of memory. For example, the data below is sorted by the SIZE column. SIZE is the total virtual memory size of the process:
    prstat -s size
    If you are experiencing some of the symptoms described above or if you suspect a memory leak, it is particularly important that performance data is captured so the memory leak can be confirmed. It is important to gather at least the following pieces of information:
    •Process ID (PID)
    •Size of the process
    •The executing command
    •The timestamp information showing exactly when the data was captured.
    while true
    do
    for pid in `cat pids`
    do var=`date|cut -d' ' -f4`
    echo "$var :\c" >> ps.log.$pid
    ps -eo pid,vsz,rss,pcpu,args | grep $pid |grep -v grep >> ps.log.$pid
    done
    sleep 30
    done
    You could check the memory utilisation details through
    #mdb -k
    ::memstat
    kmastatRegards
    Sadiq

  • Lightroom CC takes 98% cpu and 3,5gb memory when exporting

    Lightroom CC takes 100% cpu and 3,5gb memory when exporting
    My computer, which is not bad, becomes unuseable now when exporting
    Never had this issue with previous version(s).
    Also, I had pretty silly GUI lag, which seems to have gone away by turning OFF GPU-acceleration...
    Why is this happening??
    Everything is running on an SSD.
    Please advise.
    Laest Adobe CC
    My specs:
    Lightroom version:  CC 2015 [1014445]
    License: Creative Cloud
    Operating system: Windows 8.1 Home Premium Edition
    Version: 6.3 [9600]
    Application architecture: x64
    System architecture: x64
    Logical processor count: 4
    Processor speed: 3,3 GHz
    Built-in memory: 16325,8 MB
    Real memory available to Lightroom: 16325,8 MB
    Real memory used by Lightroom: 3379,2 MB (20,6%)
    Virtual memory used by Lightroom: 3690,6 MB
    Memory cache size: 2571,4 MB
    Maximum thread count used by Camera Raw: 4
    Camera Raw SIMD optimization: SSE2,AVX,AVX2
    System DPI setting: 96 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1920x1080
    Input types: Multitouch: No, Integrated touch: No, Integrated pen: No, External touch: No, External pen: No, Keyboard: No
    Graphics Processor Info:
    AMD Radeon R9 200 Series
    Check OpenGL support: Passed
    Vendor: ATI Technologies Inc.
    Version: 3.3.13283 Core Profile Context 14.501.1003.0
    Renderer: AMD Radeon R9 200 Series
    LanguageVersion: 4.40
    Application folder: C:\Program Files\Adobe\Adobe Lightroom
    Library Path: C:\lr_catalog_current\2015\2015-2.lrcat
    Settings Folder: C:\Users\andreas\AppData\Roaming\Adobe\Lightroom
    Installed Plugins:
    1) Behance
    2) Canon Tether Plugin
    3) Facebook
    4) Flickr
    5) Leica Tether Plugin
    6) Nikon Tether Plugin
    Config.lua flags: None
    Adapter #1: Vendor : 1002
      Device : 67b0
      Subsystem : 46c1043
      Revision : 0
      Video Memory : 4071
    Adapter #2: Vendor : 1414
      Device : 8c
      Subsystem : 0
      Revision : 0
      Video Memory : 0
    AudioDeviceIOBlockSize: 1024
    AudioDeviceName: 1 - Philips 278C4 (AMD High Definition Audio Device)
    AudioDeviceNumberOfChannels: 2
    AudioDeviceSampleRate: 44100
    Build: Uninitialized
    Direct2DEnabled: false
    GPUDevice: not available
    OGLEnabled: true

    Hi there,
    thanks for the reply!
    GRAPHICS = NVIDIA GeForce GT 750M 2048 MB
    I tried that but it didn't work unfortunately, Mine was already set to the one you said, I tried the other but no change

  • Finding Memory leaks in C using Visual Studio 2013

    I am using Visual Studio 2013, and taking a course in C programming and we started
    talking about memory bugs detaction, in particular memory leaks, and how to detect them using Valgrind on Linux.
    I want to know if there is a way to detect such memory leaks using VS 2013. I tried searching online but it just leads to lots of articles and blogs and msdn posts and blogs with lots of words like dump files, and analyzing them, etc which is weird
    because:
    1) It sounds so complex, convoluted and unintuitive it is actually hard to comprehend it.
    2) The main reason this is weird is due to the fact that VS is the most advanced IDE around and Microsoft spends so much money on in, yet from what I have read it seems that there is no simple way to use VS to detect memory leaks
    - certainly no way that's as simple as Valgrind where I only have to compile the program and run the command valgrind -leaks-check=yes ProgramName
    and it simply prints to me all location it thinks there is a memory leak and describes the error (like not freeing memory after allocating it with malloc hence having "dead" memory after the program finishes, or accessing memory that's out of
    the array bounds)                                                                                                                                                               
    So my question is how to use VS 2013 in order to achieve the same results and to find out First in high level if there are memory leaks in the program, and Second - to detect in a simple manner where those leaks are- preferably without involving dump files
    (not that I know how to use them anyway in VS).

    Hi MicrosoftLaw,
    Thanks for your post.
    Based on your issue, if you want to check if there are memory leaks in the C program from this VS2013. I suggest you could try to find Memory Leaks Using the CRT Library, for more information:
    https://msdn.microsoft.com/en-us/library/x98tx3cf.aspx?f=255&MSPPError=-2147217396
    In addition, I find a similar thread about this issue, please you refer the Dusty's suggestion to check this issue.
    http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code
    I did some research about this issue, I found that the Visual Leak Detector extension tool is a free, robust, open-source memory leak detection system for Visual C++. So if possible, I suggest you could try to use the Visual Leak Detector extension
    tool to find the memory leak for Visual C/ C++ program.
    https://visualstudiogallery.msdn.microsoft.com/7c40a5d8-dd35-4019-a2af-cb1403f5939c
    However, if you have any issue about how to use this Visual Leak Detector extension tool to find the memory leak for C program. I suggest you could directly to write a review to this REVIEW tab in Visual Leak Detector site.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Finding memory leaks in java

    Hello,
    I have a memory leak in my application. I have found other memory leaks in the software using JProfiler, but I have a problem with JProfiler finding this one. My biggest problem is the JProfiler itself. If I use short runs, the JProfiler works fine. If I run my application for more than half a day, the JProfiler eats up memory and after a while it stops responding.
    I tried JProbe, but after profiling my application for 18 hours straight, it got buggy and wouldn't work correctly. It also ate up alot of memory, and couldn't process my snapshot after 18 hours of run. I saved all snapshots, and restarted JProbe. The initial snapshot was read correctly, but the final snapshot threw an NegativeArraySizeException.
    So, now I am looking for other tools which are able to find memory leaks without hanging or crashing after running 24 hours. Any recommendations?

    I dont know any other profiler you can use, but how about using the divide and conquer approach?
    Disable a significant section of your application and let it run for a day. If the leak occurs, its in the non disabled part.
    If it doesn't, its in the disabled part. Next, enable all the code. Then disable about half of the half that failed and try that. Continue doing so until
    you isolate the code enough that you can look at it and hopefully find the problem. Note you will need to keep track of what you previously enabled and disabled as a test (I put comments in the code).
    Alternately, you can look at functions that perform complex functionality that you suspect might be the problem and have the function return
    dummy data rather than perform the functionality. If the leak goes away, its that function(s).
    Example:
    public String getComplexData(String arg1, String arg2){
    //this section bypasses the complex code and returns dummy data
    boolean x1= true;
    if(x1==true)
    return new String("some dummy data");
    //complex functionality goes here.
    Also of help would be to list everything that can cause a memory leak (I assume its a memory leak and not a resource leak such as not closing connections).
    Here are some ideas:
    1) persistant class variables that are a collection that have objects added to them but never deleted and allowed to be garbage collected
    such as static class variables, session scope variables, or application scope variables.
    2) An object tree where one of its nodes is never set to null to be garbage collected (such as a static class variable).
    If you are running a web application in a clustered enviornment, try running it on only one server.

  • Lightroom 1.3 (Mac) opens Finder window on Export

    Hi,
    Is there any way to stop Lightroom from automatically opening a Finder window containing exported images on finishing an export? Sometimes I just want to put the files in a folder without going there immediately.
    TIA,
    Pat

    Yep. In the export settings, the bottom step, "post processing" select "do nothing." You have it set to "Show in Finder" ;-)

  • Linux command/shell script to find Memory consumed by JVM in EBS,SOA

    Hi All,
    Could anyone please let me know the following:
    a)Linux command/shell script to find Memory consumed by JVM for every 1 minute frequency interval in EBS R12, SOA suite
    b)Percentage of the Heap memory usage by the JVM for every 1 minute frequency interval in EBS R12, SOA suite
    Thanks for your time!
    Regards,

    user10088255 wrote:
    Hi All,
    Could anyone please let me know the following:
    a)Linux command/shell script to find Memory consumed by JVM for every 1 minute frequency interval in EBS R12, SOA suite
    b)Percentage of the Heap memory usage by the JVM for every 1 minute frequency interval in EBS R12, SOA suite
    Thanks for your time!
    Regards,Please see these docs.
    JVM: Guidelines to setup the Java Virtual Machine in Apps Ebusiness Suite 11i and R12 [ID 362851.1]
    Generate JVM heap dump in E-Business suite 11i and R12 [ID 462550.1]
    11i: How To Use Jconsole to Monitor JVM with Oracle E-Business Suite 11i [ID 415455.1]
    Configuring various JVM tuning parameters for Oracle E-Business suite 11i and R12 [ID 567551.1]
    Script to find Apache, Java, Jinitiator, Forms version and JVM details for Oracle E-Business Suite 11i [ID 466890.1]
    JVM Memory Monitoring, Tuning, Garbage Collection, Out of Memory, and Heap Dump Analysis For SOA Suite Integration 11g [ID 1358719.1]
    How to Perform Memory and Thread Analysis on SOA [ID 1450293.1]
    Thanks,
    Hussein

  • Finding Memory Utilisation

    Hi
    I need to find memory utilisation using my java program.??
    Heard about runtime class total memory and free memory but I think it returns that of JVM.
    I dont want JVM's memory utilisation but the memory utilisation of the system.
    Any suggestions for finding the above.

    Guyss...any answers...

  • Issue with Memory ID export / import

    Hi Experts,
    We are facing strange issue during export/import from memory ID.
    We are exporting value to Memory ID from module pool program and trying to import same value in SAP workflow method.
    While importing the value from memory ID it is failing to import and gives sy-subrc =4.
    Any idea how can we do export/import in module pool program to Workflow method?
    Regards,
    Sanjana

    Hi sanjana,
    Please check the link. Here you can find some examples also.
    http://wiki.scn.sap.com/wiki/display/Snippets/Import+and+Export+to+Cluster+Databases
    P.S
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bf8358411d1829f0000e829fbfe/content.htm
    You just need to create a key and an ID to save data into INDX table.Once its saved you can use same key and id to import .
    Again mentioning , dont forget to delete using same key and ID once you have imported else it may give error.
    Regards,
    Sandeep Katoch

  • Indesign quit or Out of memory when exporting or printing pdf.

    Hi i have a mac Pro, 2x 2.26 GHZ Quad Core Intel- Xeon with 6GB 1066 MHz DDR3 running 10.6.8 and Adobe Design Premium.
    when using Indesign and printing pdfs or exporting to pdf Indesign comes up with an "out of memory" or quits unexpectedly, please can someone explain why this would happen?
    i have tested the ram/ reformated and reinstalled OSX 10.6.8 and Adobe but still this issue arises.

    Hello John,
    I am creating an Indesign File with various art work, Images and Vector graphics and text then exporting to PDF and or Print the PDFS.
    I can not use Pastbin but here are the errors from Console that i could find:
    I am using The latest patch update Indesign 6.0.6 i thought the update would fix the issue but it has not.
    Please could someone help me urgently!!!
    Feb  5 00:30:00 hifi02s-Mac-Pro newsyslog[2888]: logfile turned over
    Feb  5 00:52:42 hifi02s-Mac-Pro ntpd[26]: time reset +0.186240 s
    Feb  5 01:45:57 hifi02s-Mac-Pro loginwindow[37]: loginwindow SleepWakeCallback WILL sleep
    Feb  5 10:43:20 hifi02s-Mac-Pro loginwindow[37]: loginwindow SleepWakeCallback will power on, Currenttime:2/5/2012 10:43:20.010 AM - Waketime:2/5/2012 10:43:18.840 AM = Deltatime:1.169763982
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: Sleep: Success - AC - Idle Sleep
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: Wake: Success - AC - EHC1
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: Hibernate Statistics
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: network configuration changed.
    Feb  5 10:43:27: --- last message repeated 1 time ---
    Feb  5 10:43:27 hifi02s-Mac-Pro defaults[3429]: \nThe domain/default pair of (com.apple.kexts.32bitonly, lastRan) does not exist
    Feb  5 10:43:30 hifi02s-Mac-Pro mDNSResponder[36]: RegisterInterface: Frequent transitions for interface en0 (FE80:0000:0000:0000:0225:00FF:FEF3:7959)
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3471]: com.acard.driver.ACard6280ATA    1.0.5    ACard6280ATA    /System/Library/Extensions/ACard6280ATA.kext    ACARD AEC-6280M ATA Driver 1.0.5    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3472]: com.acard.driver.ACard62xxM    2.0.6    ACard62xxM    /System/Library/Extensions/ACard62xxM.kext    ACARD AEC-62XX Driver V2.0.6    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3473]: com.acard.driver.ACard67162    2.0.3    ACard67162    /System/Library/Extensions/ACard67162.kext    2.0.3    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3474]: com.acard.driver.ACard671xSCSI    2.0.1    ACard671xSCSI    /System/Library/Extensions/ACard671xSCSI.kext    2.0.1    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3475]: com.acard.driver.ACard6885M    2.0.6    ACard6885M    /System/Library/Extensions/ACard6885M.kext    ACARD AEC-6885/95/96 Driver V2.0.6    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3476]: com.acard.driver.ACard68xxM    2.0.5    ACard68xxM    /System/Library/Extensions/ACard68xxM.kext    ACARD AEC-68XX Driver V 2.0.5    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3477]: com.jmicron.JMicronATA    1.0.0    JMicron JMB ATA Driver    /System/Library/Extensions/JMicronATA.kext    1.0.0, Copyright JMicron Technology    no    yes
    Feb  5 10:43:46 hifi02s-Mac-Pro ntpd[26]: time reset +0.703301 s
    Feb  5 10:43:51 hifi02s-Mac-Pro loginwindow[37]: no spins reported for this wake
    Feb  5 11:35:37 hifi02s-Mac-Pro SecurityAgent[3823]: system.privilege.admin|2012-02-05 11:35:37 +0200
    Feb  5 11:35:44 hifi02s-Mac-Pro authexec[3828]: executing /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app/Contents/Resources/AdobeUpdaterInstallMgr
    Feb  5 11:36:00 hifi02s-Mac-Pro hdiejectd[3837]: running
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: FSCopyObject -- err: 0, maxLevels: 0, whichInfo: 0000c000,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 dupeAction: replace, wantSpec: yes, wantName: yes,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 filterProcPtr: 0x0004e488, yourDataPtr: 0xb01029f8,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 newObjectRef: 0xb01028a0, newObjectSpec: 0x00000000,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 copyBufferSize: 256kB, isDirectory: yes, isLocal: yes,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 isDropBox: no, PBHCopyFileSync supported: no
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 5
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/MacOS
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/MacOS
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 38
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/eulas
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/eulas
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html/en_US
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html/en_US
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9p
    Feb  5 11:36:04 hifi02s-Mac-Pro defaults[3861]: \nThe domain/default pair of (/Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/RegExList, 1) does not exist
    Feb  5 11:36:04 hifi02s-Mac-Pro authexec[3862]: executing /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/InstallUpdates.sh
    Feb  5 11:36:05 hifi02s-Mac-Pro authexec[3926]: executing /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/InstallUpdates.sh
    Feb  5 11:36:13 hifi02s-Mac-Pro hdiejectd[3837]: quitCheck: calling exit(0)
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHealing
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  Error:  shmFSCopyObjectFailed in line 949 of file /Volumes/Bu
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ildDisk_mbs73/Acro_root_nsd/Common/SelfHealin
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: gSDK/Source/src/MoverCFMP.cp.
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHea
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ling Error:  Copy failed for:
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/MacOS/SelfHealFi
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: les/Library/Automator/Save As Adobe PDF.a
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ction
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHea
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ling Error:  shmFSCopyObjectFailed in line 94
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: 9 of file /Volumes/BuildDisk_mbs73/Acr
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: o_root_nsd/Common/SelfHealingSDK/Source/sr
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: c/MoverCFMP.cp.
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHealing Error:
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:   Copy failed for:
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/Ma
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: cOS/SelfHealFiles/Library/Autom
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ator/Save As Adobe PDF.action
    Feb  5 11:36:21 hifi02s-Mac-Pro authexec[4464]: executing /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/InstallUpdates.sh
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHealing Error:  shmFSCopyObjectFailed in line 949 of file /
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Volumes/BuildDisk_mbs73/Acro_root_nsd/Common/SelfHealingSDK/Source/src/MoverCFMP.cp.
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHealing Error:  Copy failed for:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/MacOS/
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: SelfHealFiles/Library/Automator/Save As Adobe PDF.action
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHealing Error:  shm
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: FSCopyObjectFailed in line 949 of file /Vo
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: lumes/BuildDisk_mbs73/Acro_root_ns
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: d/Common/SelfHealingSDK/Source/src/M
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: overCFMP.cp.
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  SelfHealing Error:  Copy failed for:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/MacOS/SelfHealFi
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: les/Library/Automator/Save As A
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: dobe PDF.action
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHe
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: aling Error:  shmFSCopyObjectFailed in line 949 of
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  file /Volumes/BuildDisk_mbs73/Acro
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: _root_nsd/Common/SelfHealingSDK/Sour
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ce/src/MoverCFMP.cp.
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHealing Error:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  Copy failed for:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Content
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: s/MacOS/SelfHealFiles/Libra
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ry/Automator/Save As Adobe PD
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: F.action
    Feb  5 11:37:30 hifi02s-Mac-Pro hdiejectd[6190]: running
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/tr.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/tr.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogIn

  • How to find out Import/Export - Set/Get Parameter

    Hi All,
    In many BAdi / User Exit - Many IMPORT and SET Parametrs is used eq.  IMPORT flag = flag FROM MEMORY ID 'DELT'.
    But I unable to find out where this Parameters is EXPORT . Which BAdi or Whic User Exit.
    Same things for SET Parametrs .
    Regad
    DK

    Hi,
    One way could be to go in the debugger mode and create break point at statements.
    Go into Breakpoints Menu -> BreakPoint at - Statment.  Here enter IMPORT or EXPORT or Set or Get  as per the requirement.
    Code will stop evey time that particular statement is encountered.
    Regards,
    Pranav.

  • Internal Hard Drives Disappeared, Finder Memory Problem

    Hello Helpful Folks,
    I recently installed an addional internal Hard Drive, and an additional 1GB SDRAM. This worked great for a day, but the next morning, after powering up, system was extremely sluggish, and after much deadline-induced impatient problem solving, has gone from bad to worse (system refuses to acknowledge existence of internal Hard Drives). I apologize in advance for the length of this post, but as
    the devil is in the details, I figure too much info is better than not enough.
    Following is a breakdown of my system: AS IT LAST WORKED; RECENT UPGRADES; and MY LAME ATTEMPTS AT PROBLEM SOLVING THAT HAVE MADE THINGS WORSE. Please don't interpret my all caps as shouting, just trying to organize this post for better clarity.
    System is dedicated to Video Editing with FCP 3, running under OS 9.2.2. System is "off the Grid", i.e. no network, no internet, no printer, no gaming devices. System was purchased new in July 2001, by a friend. At one point I know this system had an Airport card, which was removed prior to my purchase in 2003. I can't remember what else it may have had installed in its history, but here's what it has now:
    SYSTEM AS IT LAST WORKED:
    **bold items are upgrades Original Owner or I installed with no apparent problems**
    Power Mac G4 "Quicksilver" 2001
    867 PowerPC G4, 256 L2, 2MB L3
    -1 Stick "ValueRAM - KVR 133 x 64 C3/512" in PC 133 DIMM slot **
    - "Virtual Memory" was turned off years ago due to conflict with FCP 3
    -2 empty DIMM slots
    -1 60 GB internal HD (Maxtor Ultra ATA/100), 1 partition, formatted HFS+, jumpered as "Master" on Internal ATA 2 ID=0 (which as I understand it is ATA/66 speed)
    -1 Pioneer "Superdrive" DVD-R/W/CD-R/W on Internal ATA 0 ID=0
    -NVIDIA GeForce2 MX with 32MB SDRAM in AGP Slot, feeding a 17" Apple Studio Display.
    -PCI Display Card "formacGA7" - not attached to any external device, not sure what its intended purpose is.**
    -3 Empty PCI Slots
    -OEM Keyboard attached to Monitor's rear USB port.
    -Microsoft 3 Button Wheel mouse with "IntelliEye" (wheel is 3rd Button) connected to Keyboard USB port (right side).**
    -2 OEM FireWire (400) ports
    -2 OEM USB (1) ports
    Peripherals that have worked in various configurations with this system over the past 3 years:
    -3 OWC Mercury Elite ("Oxford Chipset") Externally powered, External FireWire(400) 200GB Hard Drives, 1 partition each, formatted HFS+, daisy-chained to either of the FireWire ports.
    -1 Canon GL1 MiniDV camera, attached either to the other FireWire port, or to the last drive in the chain, depending on my urgency/laziness factor. BTW, FCP 3 has worked flawlessly controlling this Cam for logging and Batch Capturing.
    Applications on System Hard Drive that I have OEM CDs for:
    -OS 9.2 - (I think I remember that OS X was removed from system due to conflicts shortly after original purchase)
    -FCP 3
    -DiskWarrior (version unknown, purchased from Alsoft in 2003)
    -OWC Intech Hard Disk SpeedTools ver 3.5
    Other CDs I have:
    OEM CDs for Power Mac G4:
    -Software Install, OS 9.2, CD vers 1
    -Software Install, OS 10.0.4, CD vers 1
    -Software Restore, OS 9.2 & 10.0.4 CDs vers 1, Discs 1-4 of 4.
    -OEM Apple Hardware Test; Power Mac G4, SW vers 1.2.1
    Applications on system Hard Drive that I don't have CDs for, that I rarely use, but I'd like to keep:
    -After Effects 5.0
    -QuickTime Player 6.0.2
    -Toast Audio Extractor 1.1
    -Toast Titanium 5.0.2
    Applications on system Hard Drive I use if my wife is busy on our Windows XP machine:
    -Photshop 6.0
    -Microsoft Word & Excel
    # of other Applications on System Hard Drive I either don't use or may be integral to the system: 260
    # of Control Panels:
    -Enabled: 34
    -Disabled: 0
    # of Extensions:
    -Enabled: 174
    -Disabled: 0
    note: a number of the applications and extensions are for AOL, Quickbooks, Microsoft Money and the like, as well as other things I don't use (Airport, USB printers, Networking, etc.)
    Smart things I did:
    -Regularly made backup copies of my FCP projects to the external drives.
    -Bought a copy of MacDrive so I can see what's on my External Drives on the XP machine.
    -Printed out System Profile before I installed upgrades.
    -Thoroughly searched this discussion board for and gathered as much info as I could before upgrading.
    Dumb things I did:
    -Made a copy, but not a clone, of my System Folder to one of the external drives when I first got it.
    -Didn't keep any sort of separate log of what's on the External Drives.
    -Never ran any sort of Disk Maintenance, even after one of the Externals crashed (DiskWarrior saved my butt on that).
    -Ignored some of the advice on this discussion board.
    Really dumb thing I did without even realizing it:
    Captured all media for a rush job onto my internal system Hard Drive, as well as storing and using massive jpgs for the same job on that same drive...
    Which led to painfully slow rendering times, and crashes caused by "Error: Out of Memory", which I interpreted as "Must buy more memory" and not "must make sure I'm not trying to edit media stored on system drive, especially with massive jpgs that I should reduce"
    RECENT UPGRADES:
    Here's what I did, and how I did it:
    Turned off system, disconnected all External FireWire Devices, disconnected Monitor, opened case, touched various metal parts of case and power supply to discharge any Static, unplugged power cable.
    -Installed 2 512MB sticks of "Lifetime" PC 133 SDRAM; total System RAM is now 1.5GB, all 3 DIMM slots now occupied.
    -Installed 1 Maxtor "DiamondMax" Ultra ATA/133 100GB Hard Drive (8 MB buffer) as "Slave" (no jumper) in top of U-Carrier above System Hard Drive; attached to middle of original Apple ribbon cable, attached available power plug.
    Taped spare jumper to inside of empty drive bay, noting origin and date. Did NOT push PMU button. Carefully closed case. Reconnected Monitor, did NOT reconnect any FireWire devices. Powered System on, but did NOT perform PRAM reset.
    I don't remember the exact order of what happened next, but I think: System booted up normally, a window popped up saying a new drive had been found, would I like to intitialize it?, which I did as Mac OS extended, and then named. If I was instructed to restart, I did so, otherwise did not. Clicked on "about this Mac" and saw that it now showed 1.5GB RAM. I then went about moving Media/Render files off the System drive (and one of the Externals) onto the Internal Drive, with a combination of FCP's Media Manager, and dragging from the Finder. After files had copied, dragged Media/Render files from System Drive to Trash. Opened FCP project, had FCP re-link to new locations of missing files. Saved, closed, and re-opened project, set Capture/Scratch disc to new internal Drive. At some point I changed FCP's Memory Allocation from whatever it was to 512000KB Minimum, and 900000KB Prefered (and I hope I got all those zeroes right). Did NOT restart after changing Memory Allocation, unless a window popped up instructing me to do so, in which case I did. Re-opened my project, rendered a few thing at a noticeably increased speed, saved everything, emptied the Trash, shut everything down, and called it a night as it was 4:30 am.
    A few hours later, I plugged the MiniDV and an External Drive into the FW ports and powered up the System. It was behaving extremely sluggishly. I would click on something, the pointer would turn into a wristwatch (sometimes with the minute-hand moving, sometimes not) and like an actual minute later, what I'd clicked on would open. All three drives were on the desktop, still had their files, and "About this Mac" still showed 1.5GB total Memory. So I powered down, disconnected the FW devices, waited a bit, and powered back up. Same sluggish response. I tried to open my FCP project file, and instead got a Window that said something to the effect of "The Application associated with this document could not be found". I think I tried to open FCP from the Applications folder on the System Drive and got the same message (I'd only had 3 hours sleep, no coffee, my client had died, and his family was coming for whatever I had in a few hours).
    LAME ATTEMPTS AT PROBLEM SOLVING THAT HAVE MADE THINGS WORSE
    Panic had set in, which never solves anything, so I don't remember what order I performed which tasks, between searching for clues in this forum, and convincing myself that that would be faster than trying to compose a question, waiting for a response, etc.
    The first two things I did, and I can't remember which I did first (both from Keyboard Commands during Restart):
    Rebuild Desktop
    PRAM Reset
    Neither of those solved the problem, so I continued.
    I tried restarting without extensions.
    I would get errors that said something like "Not Enough Memory to Open Finder".
    I tried booting from Disc 1 of the Software Restore Disk, which only wanted to destroy my data.
    I tried booting from the OS 10 disk, with the same result.
    I was finally able to boot from the OS 9.2 Software Install Disk, and actually saw both internal drives on the desktop, and the 1.5GB RAM in About this Mac. I tried to allocate more memory to Finder, but was informed that "Cannot Perform Requested Operation. This operation requires versions above 8.0".
    I think at this point I decided that I must have too many extensions, and started disabling ones I thought irrelevent to my cause (mostly anything that said "AOL", "Airport", "Ethernet", "Printer", "Modem", "Speakable", and a couple things called "Open TPT".
    It gets worse. Then I decided to turn off some "unnecessary" things via the control panels, but somehow managed to disable the control panels themselves: AppleTalk, DialAssist, File Sharing, Modem, Mouse (as I saw that Microsoft Mouse was among the others), Remote Access, Speech, USB Printer Sharing, and possibly TCP/IP.
    That certainly didn't help anything (though upon restarting from the OS 9.2 Disc I was able to see the extensions and control panels in their respective "Disabled" folders in the System Folder). But I still wasn't able to get more Memory to Finder.
    So, I decided a few more PRAM resets might help, which succeeded in making both Internal Hard Drives disappear. I tried booting up from the DiskWarrior disc, but even the Mighty DiskWarrior couldn't find the drives. I performed the longer, in depth version of the Apple Hardware Tools tests, which reported that everything's fine (including the new RAM), but made no mention of the Hard Drives at all. The deadline having long passed, I shut the system down. I read through more posts and tech articles, etc.
    I searched my External drives with MacDrive on my XP, and found the drive that has the copy of my System Folder (which shows all extensions and control panels as enabled); not sure if the Quicksilver will boot from that, I don't know what the Keyboard command for booting from a FireWire drive is (if there is one) and the drive itself only has 900MB of free space.
    I can't find any reference to Internal ATA drives anywhere in the MacDrive documentation; if it was possible I'd put them into the XP, get the files off the Mac drives, reformat them and install OS9 from the Discs.
    This is where I am now:
    The Quick Silver is still powered down. I removed the Microsft mouse and replaced it with the OEM Apple mouse. I opened the case, and removed the PRAM/Backup battery (manufacture date: July 2001). Couldn't find my voltmeter, so took the bat to Radio Shack and bought a new one. Had the Radio Shack guy test the old one: it showed 3.69 volts still. Have not installed the new battery yet. The case is still open, waiting for any advice any of you might have to offer.
    Thank you all so much for your patience in perusing and pursuing this.
    Sincerely,
    Patterson
    Power Mac G4 Quicksilver 867   Mac OS 9.2.x   17" Studio Display, 512MB RAM

    Thank you Rodney and John,
    The jumpers are correct for both Maxtor Drives.
    Rodney, you are correct in that the initial problem (slow rendering/"out of Memory" crashes) was caused by my not realizing I'd stupidly captured several GBs of media to my system drive, and not checking which drives those files were on (as I'd assumed I'd put them on one of my external media drives) once that problem presented itself.
    Before I'd determined what I'd done, I bought the extra RAM. After I'd found the media files on the System Drive, and saw that my dedicated media drives were too full to easily move them, I decided to buy an additional Internal drive so that I could:
    -Move the Media onto it relatively quickly and finish my urgent project.
    -Juggle all my media into a more organized fashion for archiving (as most of my projects are on-going long-term affairs)
    -Wipe it, Partition it, and clone my System Drive onto it, as a spare bootable drive in case my OEM System Drive failed.
    Copying the Media files onto the New Drive and moving the System Drive's Media files into the Trash worked great: huge improvement in Rendering, etc.
    Before shutting down for the night I Emptied the Trash, and was pleased with the amount of space I'd freed up on the System Drive.
    My guess is that the System Drive was terribly fragmented, having been subjected to intense use over the past 5 years without any sort of Drive Maintainence, and deleting that massive amount from it in one shot caused my extreme system sluggishness upon Startup the next day.
    My subsequent lame attempts to solve the sluggishnes ultimately resulted in my losing access to both drives.
    Today, I replaced the Backup Battery, pushed the PMU, re-attached the AC, and Powered Up with the case open as per your suggestion.
    It was trying for a few minutes (the gray screen went black at one point, and then returned to gray) before presenting me with the flashing question mark.
    There was, however, a quiet but distinct "buzzing" sound that would alternate: 1 sec "buzz", one second silence, one second "buzz", one second silence, etc. coming from the drives, even after the "?" appeared.
    I powered down, removed the Ribbon and Power Cables from the new "Slave" drive, and powered up again, with the exact same results.
    I powered down, removed the Ribbon and Power cables from the original "Master" drive, reinstalled the Jumper on the New Drive as "Master", plugged the End of the Ribbon and the Power cables into the New "Master" drive and powered up. The screen went to the "?" within 20 seconds instead of 4+ minutes, and no more "buzzing".
    I put the Apple Hardware Tools Disk in, ran the "long" test, and everything came out fine.
    I have to abandon this for now, but thanks again for your previous advice, and any more you may have!
    Cheers,
    Patterson

  • CR2008 Not enough memory while exporting reports from Crystal Reports 2008

    I have recently upgraded our Crystal Reports version from Crystal Reports Basic for Visual Studio 2008 to Crystal Reports 2008. After upgradation I am facing the problem "Memory full.OtherErrorFailed to export the report. Not enough memory for operation" when I am trying to export the report from Crystal Reports 2008 Report viewer, or directly from the code behind. The application is hosted application. The problem occurs in our production environment.
    Server details:
    OS: Windows 2003 Enterprise Edition R2 with SP2
    IIS: IIS 6
    .Net Framework: 3.5
    Application details:
    Hosted application using Crystal Reports 2008 SP 3
    Crystal Reports Viewer version: 12.0.2000.0
    The data binding of the report object is done through an ADODB dataset.
    Web.Config:
    <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
      <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="printControl" type="System.Configuration.NameValueSectionHandler" />
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
          </sectionGroup>
        </sectionGroup>
      </configSections>
      <businessObjects>
        <crystalReports>
          <printControl>
            <add key="url" value="http://myserver/mysite/PrintControl.cab" />
          </printControl>
          <crystalReportViewer>
            <add key="documentView" value="weblayout" />
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
      <appSettings>
        <add key="CrystalImageCleaner-AutoStart" value="true" />
        <add key="CrystalImageCleaner-Sleep" value="60000" />
        <add key="CrystalImageCleaner-Age" value="120000" />
      </appSettings>
      <system.web>
        <httpHandlers>
          <add path="CrystalImageHandler.aspx" verb="GET" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
        </httpHandlers>
        <compilation debug="false">
          <assemblies>
            <add assembly="CrystalDecisions.Data.AdoDotNetInterop, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
          </assemblies>
      </system.web>
      <system.webServer>
         <handlers>
             <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode" />
         </handlers>
      </system.webServer>
    </configuration>
    Sample Code:
    Report = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    Report.Load(Server.MapPath(strReportPath));
    Report.SetDataSource(dsReport);
    Creportviewer.ReportSource = Report;
    For exporting the report to PDF
    string Filename = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.InternetCache).ToString(), Guid.NewGuid().ToString() + ".pdf");
    Report.ExportToDisk(ExportFormatType.PortableDocFormat, Filename);
    Clean Up Code: (Page_UnLoad event)
    if (Report != null)
         Report.Close();
         Report.Dispose();
    Creportviewer.ReportSource = null;
    Creportviewer.Dispose();
    dsReport = null;
    GC.Collect();
    GC.WaitForPendingFinalizers();
    Can someone help me resolve the issue.

    The .rpt file size is 14MB with the Data Save option enabled, 12MB without Data Save.  Presumably the 12MB file size is because of the 24bit PNG we have as our background.
    The Designer executes the report in less than a second and we can scroll through all pages and see the image fields perfectly.
    When we Export to PDF, the Designer takes a long time, eventually gets to the 77%, the 7th record and returns "Export report failed" followed by "Memory full".  If we export only page 1 of the 3 pages, it also returns a Memory full error.  However, when the same report is run with only 1 page, that page exports to PDF but with a ridiculously large size and export time.
    The machine has 2GB of physical memory with an 8GB pagefile with Windows 2003 (latest everything).  The process runs up to about 1GB before reporting the memory full error.
    We've also tried a variety of other suggestions posted in the other thread with no success.
    We're happy to provide the RPT file to the Report Team to diagnose the problem.  Ultimately, we need to be able to produce a 15 page report with approximately 45 images.
    Our preferred scenario is fixing problem 2.  The CR Designer seems quite capable of rendering our report and printing it to our third party PDF printer in a timely manner with small size.  However, the API reports memory full.
    The API resides in a dedicated reporting web service with NO other code except for loading the report, setting parameters and printing.  When executing, it uses up to about 1.1GB before reporting the error.
    Are there any other suggestions for fixing what we have?  Are there known problems with large images in reports?  Do we need to lodge a formal support request?
    Regards,  Grant.
    PS.  Grr and my message formatting is lost when I edited this message!!!
    There is a 1500 character limit and then all formatting is removed to save space. Break you posts into separate entries.
    Edited by: grantph on Sep 30, 2009 2:49 AM

Maybe you are looking for

  • ? iPad Wi-Fi Problem

    I am having problems connecting to my home Wi-Fi. I have tried turning the device off and also renewing th lease as suggested in one of the blogs. None of these are working. Please help

  • The underlying connection was closed: Could not establish trust

    The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. Please checkout the following code. I am just trying to login on to the web service. I have imported the certificate from IE by going to the

  • Varrays/Nested tables/temp tables

    Within my PL/SQL code, which I eventually will turn into stored procedure, I want to use Varrays, or Nested tables, or temp tables, whatever is the most suitable. Right now I am using dbms_output.put_line() just to display list of 1 column values. Fu

  • Why cant i make calls when out of state?

    when I go out of state, and try to make a call I get a voice message. Is there a setting for this?

  • Middleware products install process questions

    Hello, I have to install middleware products (OID, OAM, OID, SOA, ...) on my configuration. I first install Oracle Fusion Middleware Infrastructure 12c, then I ran $MW_HOME/oracle_common/bin/rcu in order to create database schemas (Oracle AS Reposito