SCM Upgrade 4x to 7 Macros have issues not functioning as expected

Hi All,
We have upgraded SCM 4x to 7 and some of macros are not functioning as expected.
This is a start macro Specifically for lay out attributes macro where many of the key figures are editable, which are not suppose to be.
I have deactivated and activated, I have also verified the syntax of the production and quality macros. I did not find any difference. but behaving differently.
Please share your thoughts any one come across this kind of issues.
Appreciate your help.
Thanks,
Sreeni

Sreeni,
When you upgraded from 4.1 to 7.X, did you have to go throuh any interim steps like to 5.0 or 5.1 first.
My understanding is that you can go from 4.1 directly to 7.0.
Can you share your experience. Do you have any lessons learned that you put into a document that you would share.
Shane

Similar Messages

  • Spry Menu Issues - Not functioning correctly in Microsoft IE

    Hi there,
    I am fairly new to web design and dreamweaver.
    I have constructed a simple page that I am happy with complete with Spry Menu which again I am happy with.  However this spry menu works perfectly in firefox but for some reason on IE my spry menu does not function correctly and goes all over my page!
    CORRECT VERTICAL MENU - FIREFOX -
    INCORRECT MENU FUNCTION! - IE -
    See my CSS Code below for the spry menu in questions - if this helps -
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: inherit;
        font-size: 100%;
        cursor: default;
        width: 1000px;
        height: 47px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: medium;
        position: relative;
        text-align: center;
        cursor: pointer;
        width: 318px;
        float: left;
        height: auto;
        background-color: #000000;
        border: 2px solid #FFF;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: auto;
        cursor: default;
        width: auto;
        position: absolute;
        left: -1000em;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 318px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin-top: -5%;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0px;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #FFFFFF;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #bcbdb9;
        padding: 0.5em 0.75em;
        color: #FFF;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #000;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #000;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inherit;
        f\loat: left;
        background: #FFF;
    ** I am also using Windows 8 and Dreamweaver CS6 If this helps.**
    Any help with this would be fantastic as I need this to be resolved before the end of the week. 
    Any further information required please message me to find out.
    Thanks,
    Jamie

    THE CONFLICT IS BETWEEN YOUR DOCUMENT CSS AND THE SPRY CSS.
    It is because the <li> and <a> TAGS have been styled and therefore OVERRIDDEN THE SPRY CSS.
    Use CLASS TAGS e.g.  <li class="anyclass"> and <a class="anyclass">
    and STOP USING THE <a> TAGS.
    N.b. you may need to unstyle any <a> or other TAGS that conflict with the SPRY CSS.  (However it's best to start over knowing that styling basic tags may affect the SPRY CSS).

  • After upgrade to 10.8.3 Sleep mode not functioning

    iMac
    OSX 10.8.3
    Sleep mode does not function properly.

    In what way is it not functioning properly?  If you go to System Preferences > Energy Saver are the sleep mode times where you want them?  When you logout, do you then click Sleep or do you let the iMac go to sleep according to the settings?  Do you have trouble coming out of sleep mode?

  • Since upgrading to iOS 7, i have issues with my music player. Looking for a fix

    I have just upgraded to iOS 7 on my 4S and now am having issues with my music.  I have itunes match but also have music on my phone as well.  When I now play music that is on my phone's hard drive, the music just stops playing randomly as if it has lost conection or something.  Does anyone have a fix for this?

    I've also noticed this on my brand new 5s, I was starting to think it was a hardware proplem utill i saw your post.

  • I recently upgraded to Yosemite, I now have issues with the length of time it takes to boot up my macbook.

    I have recently upgraded to Yosemite, this took hours and hours......
    Now I have problems with booting/starting my macbook, in that it starts with the apple icon and progress bar this seems to hang about half way and takes forever and a day.
    Anyone else had this, any possible solutions......getting fed up now!!!!

    Forever and a day can be over five minutes  (which I feel is way too long for a year old Mac). 
    Sometimes I restart it (five second press on on/off button) and this enables it to boot up fully, but still too long to boot up.

  • File Adapter Issue: Not functioning when used with BIC user modules

    Hi! ALL
    We have been experiencing issue with file adapter, when we SeeBurger BIC user modules in sender file - FTP communication channel.
    The regular FTP functionality is working fine if do not have BIC user modules defined under the module tab.However, when put in BIC user module parameters it is not picking up the file.
    Also, we do not see any error logs; even the communication channel monitoring does not show any error log....only show the polling interval success, without the file being picked up.
    This issue started appearing once we deployed our new sda file....as we changed our BIC mapping.
    We can try doing back to our previous sda file....to see it fixes the problem.
    But, before doing that ....we would like to know where the cause of this issue....Can you point us to any error logs we can find on the PI server.
    Your help is greatly appreciated!!
    Thank you,
    Patrick.

    If you configured your logging correctly you should find in the log folders
    ./applications/com.seeburger.jucon/
    ./applications/com.seeburger.bicxiadapter/
    Try to scan those for recent errors - if the no log files can be found you should check the defaultTrace.

  • N100 SODIMM upgrade from 1GB to 2GB ... not working as expected, help please

    I have recently bought some RAM modules for my N100 3000 series laptop which was originally bought around 1.5 years ago. The original modules that came with the laptop were 512MB x2. I am upgrading to 1GB x2 modules.
    I ordered them from Ebuyer.com and they were Kingston modules, who declare on their website and on the packaging that the modules are compatible with the laptop. After installation and attempting various configurations, the overall outcome is that slot A accepts new RAM (both modules work in this slot), slot B doesn't accept new RAM (but does accept the original RAM), and all RAM modules work without errors.
    Would you know what either I am doing wrong when installing the new RAM, or if there is a configuration setup I need to do to be able to install the new RAM in the BIOS?
    Thank you in advance for any advice given.

    Now you're talking about the internal bits that make Excel
    behave the way it does. There is an entire section in MSDN (
    http://msdn.microsoft.com)
    devoted to Office XML, which is what you'd have to use to serve up
    a fully-functioning XLS file.
    You can find an example on this site. The Google Groups
    address is
    http://groups.google.com/group/macromedia.coldfusion.advanced_techniques/browse_thread/thr ead/71abd01da20e186a/f192971168deae79?lnk=st&q=CFCONTENT+Excel+cell+format&rnum=2&hl=en#f1 92971168deae79
    Have fun!

  • Video Card upgrade.No Signal. Keyboard and mouse not functioning.

    Hello all and thanks for reading!
    To start off here are my specs.
    HP Pavilion HPE h9-1130 Phoenix Desktop PC
    Windows 7
    So the change i made was i took out the 7670 (the pc came with)
    and put in a new HIS 7870 Ice Q turbo.
    As i boot up my pc i get no signal and no power to my mouse and keyboard.
    I even sent back the GPU thinking it was defective but after i got sent a new one"
    the problem is still there. Any suggestions ? Thanks for any help in advance..(

    Hi,
    Your machine should be enough power to run the card. Please check its manual and make the right connections - also refer on the following link:
       http://www.hisdigital.com/un/product2-695.shtml
    Hope this helps.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Hot mail is not working after firefox upgrade. I am using Firefox 12.0. I did not have issue with hotmail, but I am facing problem this week .

    I am using Firefox 12.0. I did not have issue with hotmail, but I am facing problem this week after firefox upgrade. After entering login the page freeze. I am not able to continue.
    I reviewed the thread. I am not using Foxit.
    I reviewed hot mail forum. They suggest firefox upgrade causes this issue.
    I tried after clearing my browser's cache and cookies. The situation remain same. Any idea?
    What is the workaround?

    Firefox 3.6 needs the Java Second Generation Plugin which comes with newer versions than 1.6.0_03 - update Java, the latest version is 1.6.0_22

  • All my photos in the iphoto have disappeared, not sure if this related to any iphoto upgrade or other issue, tried to find the photos through the finder (JPG or photo) but failed, can you help me to get back my photos please?

    All my photos in the iphoto have disappeared, not sure if this related to any iphoto upgrade or other issue, tried to find the photos through the finder (JPG or photo) but failed, can you help me to get back my photos please?

    Help us to help you: There are 9 different versions of iPhoto and they run on seven different versions of the Operating System. The tricks and tips for dealing with issues vary from version to version and OS to OS. So before anyone can help, they need information to work with. Basic stuff:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. What were you doing when the problem arose?
    - Did it ever work properly?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    Anything else you can think of that might allow someone else to understand your issue.
    With this kind of information somebody can develop a starting point for troubleshooting the issue.
    Posts that consist of "iPhoto doesn't work. Help" or "iPhoto won't print" or "Suddenly I have no photos!!!!!!!!!!" mean that any helper is simply guessing. More information means you get better assistance. (And no, more exclamation marks do not get help faster or make your issue seem urgent. They just make it seem like you have a stuck key )

  • Hi, I have a mid 2007 24inch iMac currently running on 10.5.8.  Can I upgrade directly to 10.7 and if so, can I expect any issues?  Thanks

    Hi, I have a mid 2007 24inch iMac currently running on 10.5.8.  Can I upgrade directly to 10.7 and if so, can I expect any issues?  Thanks

    You need to have a copy of Snow Leopard installed to access Lion in the Mac App Store. There's no direct path to upgrade from Leopard to Lion.
    I did read a piece earlier this week about Apple giving free copies of Snow Leopard to new iCloud subscribers, you might want to look into this here:
    http://www.macgasm.net/2012/04/18/apple-now-giving-away-snow-leopard-to-mobileme -customers-for-free/
    Hope this helps.

  • My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.

    My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.
    Etrecheck says:
    Problem description:
    Imac late 2009 running slow
    EtreCheck version: 2.2 (132)
    Report generated 5/3/15, 4:33 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.3 (14D136) - Time since boot: 5:5:56
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (308.35 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Western Digital My Book 111A 1 TB
            disk1s1 (disk1s1) <not mounted> : 32 KB
            My Book (disk1s3) /Volumes/My Book : 1.00 TB (226.58 GB free)
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/hosts - Count: 30
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Toast 10 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.roxio.TDIXController (1.7) [Click for support]
            /Library/Application Support/LogMeIn/drivers
        [loaded]    com.logmein.driver.LogMeInSoundDriver (4.1.48f99) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.13) [Click for support]
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.13) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBCDCACMData (1.3.8) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.8) [Click for support]
        [not loaded]    com.novamedia.driver.IceraUSB_MSD_Bypass (1.3.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (3.0.13) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (3.0.13) [Click for support]
        [not loaded]    com.option.driver.Option72 (2.15.0) [Click for support]
        [not loaded]    com.option.driver.OptionHS (3.26.0) [Click for support]
        [not loaded]    com.option.driver.OptionMSD (1.21.0) [Click for support]
        [not loaded]    com.option.driver.OptionQC (1.11.0) [Click for support]
        [not loaded]    com.pctools.iantivirus.kfs (1.0.1) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.45) [Click for support]
        [not loaded]    com.vodafone.driver (3.0.9) [Click for support]
        [not loaded]    com.zte.driver.cdc_ecm_qmi (1.0.1) [Click for support]
        [not loaded]    com.zte.driver.cdc_usb_bus (1.0.1) [Click for support]
        [not loaded]    de.novamedia.driver.NMSmartplugSCSIDevice (1.0.1) [Click for support]
        [not loaded]    de.novamedia.oem.vodafone.vtp.huawei.cdc (0.0.2) [Click for support]
            /System/Library/Extensions/NMHuaweiPhonesVTPCDC.kext/Contents/Resources
        [not loaded]    de.novamedia.driver.NMUSBCDCACMData.VTP (3.2.6) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (3.0.13) [Click for support]
            /System/Library/Extensions/Vodafone.kext/Contents/Plugins
        [not loaded]    com.vodafone.driver.Data (3.0.9) [Click for support]
            /Volumes/My Book/Extras/WD +TURBO Installer.app
        [not loaded]    com.wdc.driver.1394HP (1.0.9) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.11) [Click for support]
    Startup Items: ℹ️
        AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
        Qmaster: Path: /Library/StartupItems/Qmaster
        VirtualPCOSServices: Path: /Library/StartupItems/VirtualPCOSServices
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudphotosd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.photolibraryd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        10 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [failed]    com.apple.mtrecorder.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.wdhelper.plist
        8 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [failed]    com.logmein.LMILaunchAgentFixer.plist [Click for support] [Click for details]
        [running]    com.logmein.logmeingui.plist [Click for support]
        [running]    com.logmein.logmeinguiagent.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagentatlogin.plist [Click for support]
        [running]    de.novamedia.VodafoneDeviceObserver.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.adobe.versioncueCS3.plist [Click for support]
        [loaded]    com.adobe.versioncueCS4.plist [Click for support]
        [failed]    com.apple.spirecorder.plist
        [loaded]    com.bombich.ccc.plist [Click for support]
        [running]    com.logmein.logmeinserver.plist [Click for support]
        [loaded]    com.logmein.raupdate.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    jp.co.canon.MasterInstaller.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Mail    Application  (/Applications/Mail.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        iAntiVirus    Application Hidden (/Applications/iAntiVirus/iAntiVirus.app)
    Internet Plug-ins: ℹ️
        LogMeInSafari64: Version: 1.0.730 [Click for support]
        Unity Web Player: Version: UnityPlayer version 3.5.3f3 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeIn: Version: 1.0.730 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.730 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        EPPEX Plugin: Version: 10.0 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    Audio Plug-ins: ℹ️
        DVCPROHDAudio: Version: 1.2
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS2  [Click for support]
        Adobe Version Cue CS3  [Click for support]
        Adobe Version Cue CS4  [Click for support]
        Déjà Vu  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
        SixtyFourSwitcher  [Click for support]
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 499.25 GB Disk used: 190.89 GB
        Destinations:
            My Book [Local]
            Total size: 1.00 TB
            Total number of backups: 13
            Oldest backup: 2015-04-21 19:59:59 +0000
            Last backup: 2015-05-02 19:49:37 +0000
            Size of backup disk: Adequate
                Backup size 1.00 TB > (Disk used 190.89 GB X 3)
    Top Processes by CPU: ℹ️
            12%    iavd
             5%    iAntiVirus
             5%    WindowServer
             5%    diskimages-helper
             1%    mdworker(5)
    Top Processes by Memory: ℹ️
        537 MB    kernel_task
        266 MB    Google Chrome Helper(4)
        111 MB    Google Chrome
        74 MB    ocspd
        74 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.45 GB    Free RAM
        2.55 GB    Used RAM
        59 MB    Swap Used
    Diagnostics Information: ℹ️
        May 3, 2015, 11:26:23 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-05-03-112623_[ redacted].cpu_resource.diag [Click for details]
        May 3, 2015, 11:22:17 AM    Self test - passed

    Thanks for all the replies.
    I've now installed the ad blocker, thrown away the unwanted files, and thrown away a copy of Firefox that Adware said had a problematic extension.
    Things are better, but still slow.
    Activity Monitor shows that with just Mail, Chrome and Excel running, 2.9GB of my 4GB RAM is used. Opening InDesign (always slow) increase that to 3.2GB. But the graph stays green.
    Console shows several potential problems but I don't know if any are significant. In any case I will call my Mac store tomorrow to ask their advice about RAM.
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3383189 oid:3383189 ino:3383189 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5 -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3375445 oid:3375445 ino:3375445 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages
    04/05/2015 18:52:10.564 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:11.090 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:12.727 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:52:13.021 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:52:13.022 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:52:14.284 helpd[296]: Cannot find executable for CFBundle 0x7fb412caabe0 </Library/Documentation/Help/iWorkFunctionsHelp.help> (not loaded)
    04/05/2015 18:52:15.085 helpd[296]: Cannot find executable for CFBundle 0x7fb412d1f540 </Library/Documentation/Help/X422MFPHelp.help> (not loaded)
    04/05/2015 18:52:17.455 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:17.456 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.737 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.738 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:23.292 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:31.811 AddressBookManager[428]: Validate metadata timed out, cancelling
    04/05/2015 18:52:33.395 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.396 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.467 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:33.573 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.574 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.922 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.923 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.068 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:34.068 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.354 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:35.161 icbaccountsd[430]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fe8584355d0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    04/05/2015 18:52:35.597 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.598 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.612 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:35.613 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3111641 oid:3111641 ino:3111641 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3078032 oid:3078032 ino:3078032 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected] -- /Users/leopard/Library/Mail/V2/[email protected]
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3096791 oid:3096791 ino:3096791 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox -- /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3112877 oid:3112877 ino:3112877 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3105498 oid:3105498 ino:3105498 fsEvents:1 /Users/leopard/Library/Mail/V2/Mailboxes -- /Users/leopard/Library/Mail/V2/Mailboxes
    04/05/2015 18:52:39.465 sandboxd[328]: ([430]) icbaccountsd(430) deny mach-lookup com.apple.CrashReporterSupportHelper
    04/05/2015 18:52:42.205 com.apple.backupd[433]: Starting automatic backup
    04/05/2015 18:52:43.308 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:50.022 com.apple.backupd[433]: Backing up to /dev/disk1s3: /Volumes/My Book/Backups.backupdb
    04/05/2015 18:53:40.588 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: server returned error: 404 for URL http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3
    04/05/2015 18:53:40.589 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: Failed to load announcements document: Error Domain=GEOErrorDomain Code=-601 "The operation couldn’t be completed. (GEOErrorDomain error -601.)" UserInfo=0x7fba42c4deb0 {NSErrorFailingURLStringKey=http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3, HTTP Status Code=404}
    04/05/2015 18:53:40.989 com.apple.xpc.launchd[1]: (com.apple.quicklook[440]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:53:41.159 nbagent[439]: XPC Activity invoked with state=0
    04/05/2015 18:53:41.160 nbagent[439]: XPC Activity invoked with state=2
    04/05/2015 18:53:41.329 storeaccountd[317]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff9a8580770> connection from pid 439 with interface <AccountServiceInterface: 0x7ff9a8598880> (PID 439)
    04/05/2015 18:53:41.739 periodic-wrapper[441]: Running daily periodic task.
    04/05/2015 18:53:43.613 storeaccountd[317]: ADI: {
        "Accept-Ranges" = bytes;
        "Cache-Control" = "max-age=14400";
        Connection = "Keep-Alive";
        "Content-Encoding" = gzip;
        "Content-Language" = "en-us";
        "Content-Length" = 793;
        "Content-Type" = "application/x-apple-plist";
        Date = "Mon, 04 May 2015 17:53:43 GMT";
        Etag = "\"e20-5071070ddab80\"";
        Expires = "Mon, 04 May 2015 21:53:43 GMT";
        "Keep-Alive" = "timeout=15, max=281";
        "Last-Modified" = "Tue, 04 Nov 2014 23:01:18 GMT";
        Server = Apache;
    04/05/2015 18:53:44.006 sandboxd[328]: ([447]) nbstated(447) deny ipc-posix-shm-read-data com.apple.AppleDatabaseChanged
    04/05/2015 18:53:58.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    04/05/2015 18:53:58.472 mdworker[366]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.474 mdworker[435]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[436]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[437]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.478 CoreServicesUIAgent[359]: unexpected message <OS_xpc_error: <error: 0x7fff76be0c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76be0f70> { length = 18, contents = "Connection invalid" }
    }>
    04/05/2015 18:53:58.478 mdworker[438]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.558 fseventsd[42]: Logging disabled completely for device:1: /Volumes/Recovery HD
    04/05/2015 18:53:58.565 mds[55]: (Volume.Normal:2464) volume:0x7f96c413b000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    04/05/2015 18:53:58.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    04/05/2015 18:56:38.724 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:39.031 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:39.031 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:40.704 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:40.977 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:40.977 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:43.160 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:43.428 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:43.428 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:00.920 WindowServer[154]: CGXDisplayDidWakeNotification [729933074334]: posting kCGSDisplayDidWake
    04/05/2015 18:57:00.920 WindowServer[154]: handle_will_sleep_auth_and_shield_windows: Deferring.
    04/05/2015 18:57:01.086 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: notification observer: com.apple.iChat   notification: __CFNotification 0x7fd522414040 {name = _NSDoNotDisturbDisabledNotification}
    04/05/2015 18:57:01.235 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:    NC Disabled: NO
    04/05/2015 18:57:01.241 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:   DND Enabled: NO
    04/05/2015 18:57:01.242 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: Updating enabled: YES   (Topics: (
    04/05/2015 18:57:06.630 com.apple.backupd[433]: Will copy (547 KB) from Macintosh HD
    04/05/2015 18:57:06.720 com.apple.backupd[433]: Found 14392 files (112.99 GB) needing backup
    04/05/2015 18:57:06.728 com.apple.backupd[433]: 136.19 GB required (including padding), 118.1 GB available
    04/05/2015 18:57:09.840 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:10.119 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:10.119 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:12.387 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:12.668 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:12.669 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.340 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:14.619 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:14.619 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.620 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-02-204937 containing 782.8 MB; 118.88 GB now available, 136.19 GB required
    04/05/2015 18:57:22.106 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-03-181125 containing 31.6 MB; 118.92 GB now available, 136.19 GB required
    04/05/2015 18:57:22.108 com.apple.backupd[433]: Removed 2 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:57:22.281 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:22.562 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:22.562 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:47.959 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-25-125849 containing 2.94 GB; 121.86 GB now available, 136.19 GB required
    04/05/2015 18:57:47.960 com.apple.backupd[433]: Removed 3 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:01.552 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-26-110446 containing 6.31 GB; 128.17 GB now available, 136.19 GB required
    04/05/2015 18:58:01.554 com.apple.backupd[433]: Removed 4 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-27-095120 containing 110.88 GB; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted 5 backups containing 120.95 GB total; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Backup date range was shortened: oldest backup is now Apr 28, 2015
    04/05/2015 18:59:01.076 com.apple.xpc.launchd[1]: (com.apple.quicklook[533]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:59:09.015 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:10.846 nsurlstoraged[308]: purgeEntireFileSystemStore - failed to rename the current cache dir /Users/leopard/Library/Containers/com.apple.mail/Data/Library/Caches/com.apple. mail/fsCachedData to new cache dir /var/folders/wv/x9z7l4911p33dv8jyv6nby6m0000gn/T/fsCachedData_remove.  Errno=18
    04/05/2015 18:59:14.837 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:51.249 spindump[412]: Saved spin report for System Preferences version 14.0 (14.0) to /Library/Logs/DiagnosticReports/System Preferences_2015-05-04-185951_Paul-Breedens-imac-5.spin
    04/05/2015 19:00:05.000 kernel[0]: process WindowServer[154] caught causing excessive wakeups. Observed wakeups rate (per sec): 157; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 66094
    04/05/2015 19:00:05.871 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Root[544]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService
    04/05/2015 19:00:05.875 SubmitDiagInfo[340]: Couldn't load config file from on-disk location. Falling back to default location. Reason: Won't serialize in _readDictionaryFromJSONData due to nil object
    04/05/2015 19:00:11.473 spindump[412]: Saved wakeups_resource.diag report for WindowServer version ??? (???) to /Library/Logs/DiagnosticReports/WindowServer_2015-05-04-190011_Paul-Breedens-im ac-5.wakeups_resource.diag
    04/05/2015 19:00:56.197 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 19:00:56.530 iconservicesd[59]: Failed to move temp file /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata.tmp to /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata with error: Error Domain=NSCocoaErrorDomain Code=516 "“B9FF2D6E-5D0C-1218-402C-B706F28B0A68.isdata.tmp” couldn’t be moved to “com.apple.iconservices.store” because an item with the same name already exists." UserInfo=0x7fb949c13070 {NSSourceFilePathErrorKey=/Library/Caches/com.apple.iconservices.store/B9FF2D6E -5D0C-1218-402C-B706F28B0A68.isdata.tmp, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0 C-1218-402C-B706F28B0A68.isdata, NSFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C -B706F28B0A68.isdata.tmp, NSUnderlyingError=0x7fb949c11ba0 "The operation couldn’t be completed. File exists"}
    04/05/2015 19:00:57.204 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.211 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: CGSConnectionByID: 0 is not a valid connection ID.
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: Invalid Connection ID 0
    04/05/2015 19:01:02.753 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.824 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:02.837 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.896 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:08.015 com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.7940DB53-496F-47D2-87E2-C3EE3CBF1E27[545]) Service exited due to signal: Killed: 9
    04/05/2015 19:01:19.128 apsd[75]: Illegal subject name missing 'courier.push.apple.com' (2.5.4.3): ({
        label = "2.5.4.6";
        "localized label" = "2.5.4.6";
        type = string;
        value = US;
        label = "2.5.4.8";
        "localized label" = "2.5.4.8";
        type = string;
        value = California;
        label = "2.5.4.7";
        "localized label" = "2.5.4.7";
        type = string;
        value = Cupertino;
        label = "2.5.4.10";
        "localized label" = "2.5.4.10";
        type = string;
        value = "Apple Inc.";
        label = "2.5.4.3";
        "localized label" = "2.5.4.3";
        type = string;
        value = "courier.sandbox.push.apple.com";
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.3 instead of 10.10.3. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 0   CarbonCore                          0x93ff9291 ___Gestalt_SystemVersion_block_invoke + 135
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 1   libdispatch.dylib                   0x9a9460b5 dispatch_once_f + 251
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 2   libdispatch.dylib                   0x9a9470d8 dispatch_once + 31
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 3   CarbonCore                          0x93f7269d _Gestalt_SystemVersion + 1050
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 4   CarbonCore                          0x93f717c0 Gestalt + 150
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 5   AdobeAFL                            0x016ebfae _ZN5adobe3afl12MacFileUtils13AFileToFSSpecERKNS0_5AFileER6FSSpec + 5254
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 6   ???                                 0x8feb70b3 0x0 + 2414571699
    04/05/2015 19:01:28.908 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 19:01:28.952 Adobe InDesign CS5[550]: The function ‘CGSFlushWindow’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGSFlushWindowContentRegion' instead.
    04/05/2015 19:01:29.229 Mail[309]: XOAUTH2 requires user
    04/05/2015 19:01:29.229 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    Hope this isn't too much ... thanks again for everyone's input.

  • When I upgrade to yosemite, when I have to send and receive mail is very slow

    When I upgrade to yosemite, when I have to send and receive mail is very slow. Mails take a long time to be send and receive, and the mail boxes disconnect frequently. I am using the yosemite mail server and don't have this issue with user with Maverick.
    Many Thanks

    So let me see if I understood it right... In Mavericks you didn't had this issue, this only happens in Yosemite and you are using Apple Mail, not another mail client. Have you tried in System Preferences > Internet Accounts unchecking and rechecking the email checkbox on your account?? If that doesn't works try deleting and adding your account.
    Sorry for the bad English

  • Upgrade to ECC 6 and workflow issues

    Hello,
    We have just upgraded to ECC 6 and have some issues with workflows. Each dialog step in the workflows appear in the respective agents inbox, but once they action, the workflow do no proceed further. The log shows that the step did receive the terminating events, but doesnt proceed from there.
    Anyone who had similiar issues, can you please let me know how you went about overcoming this ?
    Cheers,
    Satish

    Hi Satish,
    Please check the agent assignment for the dialog step task. Also try by setting the task as a general task (if no particulat agents are desired).
    Do let me know in case of further queries.
    Regards,
    Saumya

  • R12 upgrade issue:Not able to login using forms:Please help****urgent

    We have recently upgraded our instance from 11.5.9 to 12.0.4 in Windows 2003 server.
    We are unable to login to forms after upgrade, however we are able access self service responsibilities without any issues.
    We are getting APP-FND-01496 when we access any forms responsibility. We have tried all possible metalink notes with no luck.
    Any help to resolve this issue will be appreciated.

    Duplicate thread ...
    R12 upgrade issue:Not able to login to forms**please help
    Re: R12 upgrade issue:Not able to login to forms**please help

Maybe you are looking for

  • Voice Memo no Volume

    I get no volume with voice memos. Video recording pick up is ok, but in voice memo the VU meter does not move from my voice, even if I am yelling. Knocking the iPod touch case will produce a volume. I have restarted the iPod. Any suggestions? Harmz

  • Message not delivered

    I have an Iphone 4 and sometimes when I send a text I get the message it was not delivered.  When I press the ! it gives me a couple of options and one is to send as a text message.  I select that and it sends the message.  Anyone have that issue and

  • XI to WebService . Pls advice urgent

    Hi All, Scenario: There is some response from System A back into XI. I need to send response from XI to System B and get response back to XI. System B has Synchronous Web Service and has provided its WSDL to XI. Question: 1. Do I need to Import Webse

  • Audition saying mic not connected, while other audio editing software does.

         Okay, just got the trial version to start with, was originally getting a directsound input error, which thanks to this board I was a ble to fix with asio4all, and at least I'm not getting constant, persistant errors, and Audition is now allowing

  • Questions around use of thesaurus and synonyms

    Q1. Does thesaurus support Japanese/Chinese/Korean? The document didn't say no. But didn't confirm it explicitly. Q2. For ctxload to load a thesaurus import file, what encoding should be the file? UTF-8? Q3. Is synonym relation reflextive in Oracle T