BADI not responding

Hi Folks
I am facing a problem with the implementation of BADI
LSO_CORRESPONDENCE01. I have implemented method
SUPPRESS_AUTOMATIC_CORRESPONDENCE of the above mentioned BADI and activated it.
The issue is , it does not respond to the business process of booking a training event. i tried to debug but the system does not start the debugger.
Helfpul answers will be rewarded.
regards
Waz

Hai.
check this.
Business Add-Ins
Business Add-Ins are a new SAP enhancement technique based on ABAP Objects. They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery. Since specific industries often require special functions, SAP allows you to predefine these points in your software.
As with customer exits (SMOD/CMOD [Page 40]), two different views are available:
• In the definition view, an application programmer predefines exit points in a source that allow specific industry sectors, partners, and customers to attach additional software to standard SAP source code without having to modify the original object.
• In the implementation view, the users of Business Add-Ins can customize the logic they need or use a standard logic if one is available.
In contrast to customer exits, Business Add-Ins no longer assume a two-system infrastructure (SAP and customers), but instead allow for multiple levels of software development (by SAP, partners, and customers, and as country versions, industry solutions, and the like). Definitions and implementations of Business Add-Ins can be created at each level within such a system infrastructure.
SAP guarantees the upward compatibility of all Business Add-In interfaces. Release upgrades do not affect enhancement calls from within the standard software nor do they affect the validity of call interfaces. You do not have to register Business Add-Ins in SSCR.
The Business Add-In enhancement technique differentiates between enhancements that can only be implemented once and enhancements that can be used actively by any number of customers at the same time.
In addition, Business Add-Ins can be defined according to filter values. This allows you to control add-in implementation and make it dependent on specific criteria (on a specific Country value, for example). All ABAP sources, screens, GUIs, and table interfaces created using this enhancement technique are defined in a manner that allows customers to include their own enhancements in the standard.
A single Business Add-In contains all of the interfaces necessary to implement a specific task. In Release 4.6A, program and menu enhancements can be made with Business Add-Ins. The actual program code is enhanced using ABAP Objects. In order to better understand the programming techniques behind the Business Add-In enhancement concept, SAP recommends reading the section on ABAP Objects
DEFINING THE BADI
1) execute Tcode SE18.
2) Specify a definition Name : ZBADI_SPFLI
3) Press create
4) Choose the attribute tab. Specify short desc for badi.. and specify the type :
multiple use.
5) Choose the interface tab
6) Specify interface name: ZIF_EX_BADI_SPFLI and save.
7) Dbl clk on interface name to start class builder . specify a method name (name,
level, desc).
Method level desc
Linese;ection instance methos some desc
8) place the cursor on the method name desc its parameters to define the interface.
Parameter type refe field desc
I_carrid import spfli-carrid some
I_connid import spefi-connid some
9) save , check and activate…adapter class proposed by system is
ZCL_IM_IM_LINESEL is genereated.
IMPLEMENTATION OF BADI DEFINITION
1) EXECUTE tcode se18.choose menuitem create from the implementation menubar.
2) Specify aname for implementation ZIM_LINESEL
3) Specify short desc.
4) Choose interface tab. System proposes a name fo the implementation class.
ZCL_IM_IMLINESEL which is already generarted.
5) Specify short desc for method
6) Dbl clk on method to insert code..(check the code in “AAA”).
7) Save , check and activate the code.
Some useful URL
http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
Now write a sample program to use this badi method..
Look for “BBB” sample program.
“AAA”
data : wa_flights type sflight,
it_flights type table of sflight.
format color col_heading.
write:/ 'Flight info of:', i_carrid, i_connid.
format color col_normal.
select * from sflight
into corresponding fields of table it_flights
where carrid = i_carrid
and connid = i_connid.
loop at it_flights into wa_flights.
write:/ wa_flights-fldate,
wa_flights-planetype,
wa_flights-price currency wa_flights-currency,
wa_flights-seatsmax,
wa_flights-seatsocc.
endloop.
“BBB”
*& Report ZBADI_TEST *
REPORT ZBADI_TEST .
tables: spfli.
data: wa_spfli type spfli,
it_spfli type table of spfli with key carrid connid.
*Initialise the object of the interface.
data: exit_ref type ref to ZCL_IM_IM_LINESEL,
exit_ref1 type ref to ZIF_EX_BADISPFLI1.
selection-screen begin of block b1.
select-options: s_carr for spfli-carrid.
selection-screen end of block b1.
start-of-selection.
select * from spfli into corresponding fields of table it_spfli
where carrid in s_carr.
end-of-selection.
loop at it_spfli into wa_spfli.
write:/ wa_spfli-carrid,
wa_spfli-connid,
wa_spfli-cityfrom,
wa_spfli-deptime,
wa_spfli-arrtime.
hide: wa_spfli-carrid, wa_spfli-connid.
endloop.
at line-selection.
check not wa_spfli-carrid is initial.
create object exit_ref.
exit_ref1 = exit_ref.
call method exit_ref1->lineselection
EXPORTING
i_carrid = wa_spfli-carrid
i_connid = wa_spfli-connid.
clear wa_spfli.
regards.
sowjanya.b

Similar Messages

  • Application Web Service Control Manager detected AWEBSVC is not responding to HTTP requests. The http status code and text is 400, Bad Request.

    Hi All,
    I am seeing the following error for SMS_AWEBSVC_CONTROL_MANAGER component with Message ID: 8100
    Application Web Service Control Manager detected AWEBSVC is not responding to HTTP requests.  The http status code and text is 400, Bad Request.
    awebsctl.log file has below errors:
    Call to HttpSendRequestSync failed for port 80 with status code 400, text: Bad Request
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    AWEBSVCs http check returned hr=0, bFailed=1
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    AWEBSVC's previous status was 1 (0 = Online, 1 = Failed, 4 = Undefined)
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    Health check request failed, status code is 400, 'Bad Request'.
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    Management point and Application Catalog Website Point are installed on the same Server where I am seeing the error for Application Catalog Web Service Point role. Management Point and Application Catalog Website Point are functioning properly. Application
    Catalog Website is working.
    Thanks & Regards, Kedar

    Hi Jason,
    Application Catalog Web Service Point and Application Catalog Website Point; both are installed as per below configuration on same Server:
    IIS Website: Default Web Site
    Port Number: 80
    with default value for Web Application Name configured.
    For SMS_AWEBSVC_CONTROL_MANAGER component, I am getting below error in Component Status:
    Application Web Service Control Manager detected AWEBSVC is not responding to HTTP requests.  The http status code and text is 400, Bad Request.
    Possible cause: Internet Information Services (IIS) isn't configured to listen on the ports over which AWEBSVC is configured to communicate. 
    Solution: Verify that the designated Web Site is configured to use the same ports which AWEBSVC is configured to use.
    Possible cause: The designated Web Site is disabled in IIS. 
    Solution: Verify that the designated Web Site is enabled, and functioning properly.
    For more information, refer to Microsoft Knowledge Base.
    And awebsctl.log has the below error lines:
    Call to HttpSendRequestSync failed for port 80 with status code 400, text: Bad Request
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    AWEBSVCs http check returned hr=0, bFailed=1
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    AWEBSVC's previous status was 1 (0 = Online, 1 = Failed, 4 = Undefined)
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    Health check request failed, status code is 400, 'Bad Request'.
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    STATMSG: ID=8100
    What should I check from IIS side?
    Application Catalog Website is functioning properly.
    Thanks & regards,
    Kedar
    Thanks & Regards, Kedar

  • Cannot remotely program DVR from browser and iPad, get "not responding" and "bad gateway"

    Like others I've seen here, my remote DVR programming has disappeared, it used to work just fine from both the web and my iPad. I now get both "not responding" and "bad gateway" messages. I've tried everything I've seen suggested, including using the in-home agent for both "auto-fix common DVR issues" and "set top box auto correction", and rebooting the FiOS router. The self-diagnostics are all green, and it says that listener 1 is running. However, I still have the problems. From what I've read, there's a remapping process that can be run in the Verizon office that fixes the problem. Can this be done for me? Thanks!
    Solved!
    Go to Solution.

    Hello Skiprules and Nubby122,
    I have sent you both private messages so we can assist in getting the issue resolved.
    Mike_VZ
    Verizon Support
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms of Service, or your Customer Agreement Terms and Conditions or Plan.

  • Computer Freezes - Finder (not responding)

    So I've tried as many fixes and solutions that I could find and nothing is correcting what's happening. Even after deleting my hard drive and doing a clean install of Mavericks from a usb drive. I can use the computer for maybe a 1/2 hour and then it completely freezes up and in Task Manager it says the Finder is not responding. I can work in Safe boot mode fine, which makes me thing its a hardware issue. But I've done a hardware test (restart, hold "D", do test) and it says there is no problems.
      I heavily depend on my computer for work so this  very frustrating. Any help would be appreciated. Here is my latest Etrecheck file:
    Hardware Information:
              MacBook Pro (Retina, Mid 2012)
              MacBook Pro - model: MacBookPro10,1
              1 2.6 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 1024 MB
              NVIDIA GeForce GT 650M - VRAM: 1024 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 0:4:35
    Disk Information:
              APPLE SSD SM512E disk0 : (500.28 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.42 GB (470 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. FaceTime HD Camera (Built-in)
              C-Media Electronics Inc.       USB PnP Sound Device
              Focusrite A.E. Ltd Impulse
              Newer Technology, Inc. miniStack v3 500.11 GB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        Newertech miniStack V3 (disk1s2) /Volumes/Newertech miniStack V3: 499.76 GB (181.6 GB free)
              iLok iLok
    FireWire Information:
              Focusrite LIQUID_SAFFIRE_56 400mbit - 400mbit max
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
                        Belkin International, Inc. Express Dock
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [not loaded] tc.tctechnologies.Saffire.plist
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
    3rd Party Preference Panes:
              None
    Internet Plug-ins:
              Default Browser.plugin
              QuickTime Plugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   5%          com.apple.WebKit.WebContent
                   1%          WindowServer
                   1%          EtreCheck
                   0%          fontd
                   0%          hidd
                   0%          coreservicesd
                   0%          notifyd
                   0%          opendirectoryd
                   0%          Dock
                   0%          imagent
    Top Processes by Memory:
              213 MB             com.apple.WebKit.WebContent
              197 MB             Safari
              138 MB             WindowServer
              131 MB             com.apple.IconServicesAgent
              98 MB              Finder
              82 MB              Dock
              66 MB              soagent
              66 MB              CalendarAgent
              49 MB              com.apple.dock.extra
              49 MB              ubd
    Virtual Memory Statistics:
              12.76 GB           Free RAM
              1.94 GB            Active RAM
              362 MB             Inactive RAM
              971 MB             Wired RAM
              174 MB             Page-ins
              0 B                Page-outs

    tctechnologies.Saffire.plist
    tctechnologies.Saffire.plistFireWire Information:
              Focusrite LIQUID_SAFFIRE_56 400mbit - 400mbit max
    It may be the Saffire hardware causing the problem not to mention the Saffire.plist.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/LaunchDaemons
    Click Go then move the Saffire.plist file to the Trash.
    Then restart your Mac.

  • The "hanging/freezing/not responding" problem that existed in all versions of Firefox 3.6 persists in Firefox 4.0

    Starting on April 14, 2011, I tried installing Firefox 4.0, which I downloaded from the Mozilla site. The first couple of times I tried to install it, it corrupted Firefox file places.sqlite. I know this because the install renamed the file to places.sqlite.corrupt. Luckily, I had recent backups. My previous installed versions were 3.5.18, which I had been using up to this time, and 3.6.16. I tried installing 4.0 with 3.6.16 installed, which I installed only for the sake of installing 4.0, and with no previous version installed and got the same bad results. I finally got a "successful" install on April 16, 2011, with no previous version installed.
    Early on I discovered that Firefox 4.0 hangs (Firefox not responding) when left to idle for exactly 5 minutes (I timed it several times after immediately starting Firefox), pegging a constant 50% of the CPU when it hangs. I left it in a hanging state for up to half an hour, but nothing changed. This problem existed for all versions of Firefox 3.6, which is why I didn't install version 3.6.16 until I was ready to install version 4.0. I never kept any version of Firefox 3.6 installed for more than a couple of hours because of this problem. I need to be able to let Firefox stay idle for long periods of time -- certainly for more than 4 minutes and 59 seconds -- without having it hang, and I was able to do that with all versions of Firefox prior to version 3.6. It's incomprehensible that Firefox 4.0 has to always hang if it's inactive for more than 4 minutes and 59 seconds, and it's incomprehensible that this problem has been present and persistent since version 3.6 was introduced. To believe that 4 minutes and 59 seconds is sufficient idle time for a browser is absurd. This was never an issue with any version of Firefox prior to version 3.6, this was never an issue with Netscape, and it's not an issue with IE 8.
    There are 2 other problems related to the hanging problem. If the browser and the bookmarks library are both open and the browser is closed normally, the bookmarks library remains open. After being left idle for exactly 5 minutes, the bookmarks library hangs, pegging a constant 50% of the CPU. If Firefox 4.0 is restarted before the 5 minute idle limit, it starts successfully. If an attempt is made to restart it after the 5 minute idle limit, it won't start. If the bookmarks library is left open for less than 5 minutes after the browser is closed, it can be closed successfully. In all versions of Firefox prior to version 3.6, the bookmarks library automatically closed when the browser was closed. The other related problem is that Firefox 4.0 occasionally pegs a constant 50% of the CPU without hanging even while it is being used and even if the only thing open is the home page, which in my case is google.com. Firefox can be used while this is happening, but it is worrisome and shouldn't be happening. Normally, Firefox 4.0 uses no CPU when it is left to idle within the 5 minute idle limit.
    Firefox 4.0 has not crashed on its own yet, so I've had no crash reports to send to Mozilla, but because I've had to use the "End Now" button on the Microsoft unresponsive program window numerous times to terminate it when it hangs, numerous Microsoft Windows dump reports have been generated, all of which I've sent to Microsoft.
    The last fully working version of Firefox I had was 3.5.18. Unfortunately, I don't have the installer for that version and Mozilla doesn't make it available anymore. Also, it looks like version 4.0 altered the places.sqlite file such that I might not be able to go back to version 3.5.18 even if I could. If I could reinstall version 3.5.18 and get it to work with the altered places.sqlite file, I would, but it is outdated and no longer supported by Mozilla, and I only want to use up-to-date and supported software.
    The hanging problem is totally intolerable and unacceptable. If I can't get a version of Firefox 4.0 anytime soon that doesn't hang after being idle for just 5 minutes (why 5 minutes???) or for any limited amount of time, I'll have to install and use Google Chrome as a permanent replacement for Firefox. (If I do have to replace Firefox with Google Chrome, how can I get my Mozilla Thunderbird e-mail links to open in Google Chrome when I click on them?) Based on other user feedback regarding this problem dating back to the very first Firefox 3.6 version, Mozilla has had ample time to resolve it. I have found other problems with Firefox 4.0, but I'm not going to bother telling Mozilla about them because if the hanging problem isn't resolved soon, I'll have to stop using Firefox permanently. I can't and won't tolerate the hanging problem. I have been using Firefox exclusively for many years, but my disappointment with it has been growing since version 3.6 was introduced and my patience has run out.
    I would appreciate Mozilla letting me know within a week of this posting if they can't or won't fix the Firefox 4.0 hanging problem. If I don't receive a substantive response to this problem within a week, I'm going to have to abandon Firefox permanently and switch to Google Chrome. I'm also going to leave a negative review of Firefox 4.0 on CNET to warn other potential users of the hanging problem.
    I am running Windows XP Media Center Edition 32-bit SP3 on a Dell XPS 400 desktop computer. I have an Intel Pentium D CPU 2.80GHz, 3.0GB Dual-Channel DDR2 RAM @ 265MHz, RADEON X300 SE 128MB HyperMemory, and 190GB of free space on my hard drive. I am using COMODO as my firewall and Avira AntiVir as my anti-virus software. I am also using WinPatrol and Secunia PSI. My ISP is AT&T. My download speed averages 2.5 Mbps, and my upload speed averages 0.65 Mbps. All of my software is up to date, thanks to Secunia PSI and CNET TechTracker, and my computer is free from infection.

    Another aspect of the Firefox 4.0 "hanging/freezing/not responding" problem has emerged. I have found that on the common occurrence when Firefox 4.0 occasionally pegs a constant 50% of the CPU while idling within the 5 minute idle limit and I close it normally, it disappears from the Task Bar but continues to run and continues to peg a constant 50% of the CPU. I tried restarting Firefox 4.0 and got the following message: "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." Before Firefox can be restarted, the existing Firefox process must be killed via the Task Manager or Process Explorer (I use the latter), after which a Microsoft Windows dump report is immediately generated. I always allow the dump to be sent to Microsoft.
    The three big questions that have gone unanswered by Mozilla are 1) why did the hanging problem start with the very first release of Firefox 3.6, 2) why was the problem allowed to continue on up to and through Firefox 4.0, and 3) why hasn't Mozilla fixed the problem yet? And what is the significance of the 5 minute idle limit? Do Firefox 3.6 through 4.0 try to launch something when the browser and/or the bookmarks library have been idle for exactly 5 minutes? Maybe it's a problem with the number and/or type of plugins and extensions and/or the number of bookmarks. Maybe Firefox 3.6 through 4.0 work just fine if there are few to no plugins, extensions, and bookmarks, but that doesn't realistically accommodate users. Whatever the cause of the problem, Mozilla should have had a handle on it by now.
    If anyone from Mozilla Support is reading this post, please let me know if it is possible to roll back Firefox 4.0 to Firefox 3.5.18. If it is possible, how do I do it, and where can I get the installer for Firefox 3.5.18? If I can reinstall it, I'll use it until Secunia Software Inspector informs me that it is insecure and no longer safe to use. At that point (maybe much sooner), I'll switch to Google Chrome exclusively because I don't want to use outdated software that is insecure and because I don't believe that Mozilla intends to fix the hanging problem and is willing to lose users over it. I certainly don't want to use software like Firefox 4.0 that has such an impactful problem. If I do have to abandon Firefox, how can I click on Mozilla Thunderbird e-mail links and get them to open in Google Chrome?

  • "NOT RESPONDING" message whenever I start using my Windows Media Player

    I don't know what it is that causes this - if it's something to do with having the lesser expensive Hewlett-Packard computers, but this is the 2nd HP laptop I've had and the one thing I've had in common w/both of them is that, one, I got them for under $500 - about $445 or so, w/tax...anyway, I suppose that the more expensive HPs are better and wouldn't have petty problems like this - but anyway, - the last one I had & this one I currently have - the last one was a Windows 7 and this one is Windows 8, so the O/S has nothing to do w/my problem.  Anyway, it's like this:  every time I turn on the PC, then get it all revved up & ready to go, etc. when I turn on my Windows Media Player (WMP) the thing comes up on screen and it sometimes takes a few seconds, since I have about 740 CDs worth of music on here, but anyway, once the CDs show up on the WMP album page (where they're put up in alpha. order of LP name, as opposed to artist names, etc) - and so, when I go from the "A"s downward, just paging through it, looking for something to listen to, for instance, it ALWAYS, inevitably, without fail, gets stuck, sometimes sooner, sometimes later, but usually by the time I get to the Cs or  Ds, the thing gets stuck and freezes up on me and I can't do anything w/it. Then, when I try to click the mouse a couple times or whatever, I get a message at the top of the WMP box - on the top of the box it reads "Windows Media Player", like usual, but when it freezes up like this and it stays stuck for anywhere from 10 seconds up to a minute sometimes, the message that pops up right next to the "WMP" label on the blue border reads "NOT RESPONDING".  99% of the time, it just takes a little patience and sometimes just clicking the mouse buttons a few times and/or hitting a few keys on the keyboard (not hard, just randomly pressing down on some) - then it will finally come back & unfreeze and I'm usually able to continue browsing through my catalog, but there has been other times when it seems to be in worse shape - it'll read "NOT RESPONDING" for a while and no matter how much I click the left or right mouse buttons, tap the mouse on the pad, or whatever, it might come unstuck for a few seconds, then, I think I'm OK again, but sometimes, as soon as it looks unstuck, I can't get it to move at all and right away the "NOT RESPONDING" message comes right back up (and the page fades a little too) - in fact, lately, just before I did a refresh thing on my PC to try & get things to work better, it was giving me big trouble, it would just sit there, stuck, frozen up and nothing I did would unfreeze it.  I'd be frantically trying to unstick it, but no matter what I did, it'd still be frozen and when it does that, I can't get it to do anything.  Recently, when it would do this, sometimes, if I had not tried to get too far down in the alphabet, I can get a certain album open and get it to start playing, but the "NOT RESPONDING" message will pop up now and again, but the music will play all right, uninterrupted. 
    Anyway, this is very annoying.  It's been happening for so long now, that I basically take it for granted that it's going to freeze up on me when I 1st bring it up.  I have no idea what's causing this to happen; like I said, this happened when I had a previous HP laptop that was working with Windows 7.
    Kind of a long-winded way of putting this issue to anyone, but I just wanted to be clear and specific. 
    Is there ANYONE out there who owns a cheapo HP? (not a Compaq, the computer co. HP bought for that purpose, to make their cheap computers and differentiate them from the HPs) - But I wonder, it's been so long since I've even checked -does Compaq even exist anymore as a separate entity from parent co. HP?  If not, then that explains why there's a difference between HP laptops that are $400 or so (at Best Buy) and the more slick, expensive HP laptops that have all the bells & whistles and usually run over $1000.  Of course, I'm not about to shell out twice as much money to buy an HP just to see if the more expensive ones don't behave the way their cheap models do.  I also had a Toshiba I bought about 3-4 years ago and I had even more problems with that - one instance was when the CD drive went out on me and I had to ship it in to HP (still under warranty, thank heavens) and they put a new drive in and shipped it back to me.  It also crashed one time, and got infected with a virus or two or three, which meant I had to re-set the computer back to the original factory settings and, not having an external hard-drive with which to back up all my music, pix, documents, etc (my music is the most important stuff on my computer to me), which meant that I had to go through this long hassle of replacing all the music I'd lost. I have a lot of my own hard copies of CDs, but there were so many more CDs that I didn't have copies of, so I had to visit the library over & over, checking out as many as 25-30 CDs at a time on a lucky day, when the library had a lot of the CDs I needed to replace in my WMP.  I don't want this to happen again, so I am going to get an external hardrive but I still don't know for sure if that would work. At least, by resetting the PC to factory settings I was able to get rid of the virus(es) that were screwing my computer up badly 
    So - has anyone out there had any similar problems?  If so, I would appreciate any help or suggestions you may have as to how to deal with this sort of thing. 
    Thanks a lot.  Hope to hear from one of you out there in the future. 
    Have a nice 4th...
    Kent M.

    Hello kmanthie,
    I just sent you a private message. If you are not sure how to check your forum messages, this post has instructions.
    I worked on behalf of HP.

  • After installing Mavericks, my computer is slow/not responding

    After installing Mavericks, my computer is not responding and reacting as quickly as (I think) it should. Here are the EtreCheck results. Any help would be much appreciated. Thanks in advance!
    Hardware Information:
              iMac (27-inch, Mid 2010)
              iMac - model: iMac11,3
              1 2.93 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              ATI Radeon HD 5750 - VRAM: 1024 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 9:55:48
    Disk Information:
              Hitachi HDS722020ALA330 disk0 : (2 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 2 TB (1.25 TB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-STDVDRW  GA32N 
    USB Information:
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Internal Memory Card Reader
    FireWire Information:
              WD My Book 111D 800mbit - 800mbit max
                        disk1s1 (disk1s1) <not mounted>: 32 KB
                        My Book (disk1s3) /Volumes/My Book: 1 TB (30.96 GB free)
    Thunderbolt Information:
    Kernel Extensions:
              com.kaspersky.kext.klif          (3.0.2d39)
              com.kaspersky.nke          (1.0.2d43)
              com.kaspersky.kext.kimul.44          (44)
    Startup Items:
              FanControlDaemon: Path: /Library/StartupItems/FanControlDaemon
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist 3rd-Party support link
              [loaded] com.adobe.SwitchBoard.plist 3rd-Party support link
              [loaded] com.kaspersky.kav.plist 3rd-Party support link
              [loaded] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [invalid] com.oracle.java.Helper-Tool.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [loaded] com.adobe.CS5ServiceManager.plist 3rd-Party support link
              [loaded] com.divx.dms.agent.plist 3rd-Party support link
              [loaded] com.divx.update.agent.plist 3rd-Party support link
              [loaded] com.kaspersky.kav.gui.plist 3rd-Party support link
              [invalid] com.oracle.java.Java-Updater.plist
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [loaded] com.facebook.videochat.[redacted].plist 3rd-Party support link
              [loaded] com.google.keystone.agent.plist 3rd-Party support link
    User Login Items:
              Scroll Reverser
              Scroll Reverser
              iTunesHelper
              EEventManager
              Dropbox
              AdobeResourceSynchronizer
              EEventManager
              ConnectService
    Internet Plug-ins:
              Google Earth Web Plug-in: Version: 6.0 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              OVSHelper: Version: 1.1 3rd-Party support link
              NP_2020Player_WEB: Version: 5.0.94.0 - SDK 10.6 3rd-Party support link
              RealPlayer Plugin: Version: (null) 3rd-Party support link
              AdobePDFViewerNPAPI: Version: 11.0.02 - SDK 10.6 3rd-Party support link
              FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 11.9.900.170 - SDK 10.6 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              NP_2020Player_IKEA: Version: 5.0.94.1 - SDK 10.6 3rd-Party support link
              AdobePDFViewer: Version: 9.5.5 3rd-Party support link
              SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6 3rd-Party support link
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    User Internet Plug-ins:
              Unity Web Player: Version: UnityPlayer version 2.6.1f3 3rd-Party support link
    3rd Party Preference Panes:
              Fan Control  3rd-Party support link
              Flash Player  3rd-Party support link
              Perian  3rd-Party support link
    Bad Fonts:
              None
    Old Applications:
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4 3rd-Party support link
              Solver:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              /Library/Application Support/DivX
                        DivXUpdate:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        DivXMediaServer:          Version: 10.0 - SDK 10.5 3rd-Party support link
                        DivXTransferWizard:          Version: 10.0.0 (Build 10.0.1.41) - SDK 10.5 3rd-Party support link
                        DMSLaunch:          Version: 1.0 - SDK 10.5 3rd-Party support link
              SketchUp:          Version: 8.0 - SDK 10.5 3rd-Party support link
                        /Applications/Google SketchUp 8/SketchUp.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Database Utility:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Office Reminders:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
              Microsoft Language Register:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Wondershare Helper Compact:          Version: 2.2.3.1 - SDK 10.5 3rd-Party support link
                        /Users/christophermcgreger/Library/Application Support/Helper/Wondershare Helper Compact.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              FacebookVideoCalling:          Version: 1.2.0.157 - SDK 10.5 3rd-Party support link
                        /Users/christophermcgreger/Library/Application Support/Facebook/video/1.2.0.158/FacebookVideoCalling.app
              Wondershare AllMyTube:          Version: 3.2.4 - SDK 10.5 3rd-Party support link
                        /Applications/Wondershare AllMyTube/Wondershare AllMyTube.app
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 2  Disk used: 696.37 GB
              Destinations:
                        My Book [Local]
                        Total size: 931.36 GB
                        Total number of backups: 51
                        Oldest backup: 2013-07-17 12:40:03 +0000
                        Last backup: 2014-01-05 23:55:06 +0000
                        Size of backup disk: Too small
                                  Backup size 931.36 GB < (Disk used 696.37 GB X 3)
                        Data [Network] (Last used)
                        Total size: 3 
                        Total number of backups: 53
                        Oldest backup: 2013-07-16 22:38:22 +0000
                        Last backup: 2014-01-05 22:50:13 +0000
                        Size of backup disk: Adequate
                                  Backup size 3  > (Disk used 696.37 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  11%          mds
                   3%          WindowServer
                   2%          diskimages-helper
                   1%          EtreCheck
                   1%          kav
    Top Processes by Memory:
              524 MB          mds_stores
              360 MB          kav
              246 MB          com.apple.IconServicesAgent
              213 MB          com.apple.MediaLibraryService
              164 MB          Finder
    Virtual Memory Information:
              10.45 GB          Free RAM
              3.44 GB          Active RAM
              851 MB          Inactive RAM
              1.27 GB          Wired RAM
              918 MB          Page-ins
              0 B          Page-outs

    CrassBrauer wrote:
    ... With the latest software updates for OS X, I've read that anti-virus software is largely superfluous for Mac. Any opinions to the contrary/negative experiences?
    Almost. Anti-virus software is completely superfluous for Mac.
    I have tested most of the commonly available Mac "anti-virus" products under controlled conditions. The only differences between them are their varying degree of worthlessness. Some are malicious and will corrupt your Mac. The vast majority of Mac problems reported on this site are the direct result of using such products.
    OS X already includes everything it needs to protect itself from viruses and malware. Keep it that way with software updates from Apple.
    A much better question is "how should I protect my Mac":
    Never install any product that claims to "speed up", "clean up", "optimize", or "accelerate" your Mac. Without exception, they will do the opposite.
    Never install pirated or "cracked" software, software obtained from dubious websites, or other questionable sources. Illegally obtained software is almost certain to contain malware.
    Don’t supply your password in response to a popup window requesting it, unless you know what it is and the reason your credentials are required.
    Don’t open email attachments from email addresses that you do not recognize, or click links contained in an email:
    Most of these are scams that direct you to fraudulent sites that attempt to convince you to disclose personal information.
    Such "phishing" attempts are the 21st century equivalent of a social exploit that has existed since the dawn of civilization. Don’t fall for it.
    Apple will never ask you to reveal personal information in an email. If you receive an unexpected email from Apple saying your account will be closed unless you take immediate action, just ignore it. If your iTunes or App Store account becomes disabled for valid reasons, you will know when you try to buy something or log in to this support site, and are unable to.
    Don’t install browser extensions unless you understand their purpose. Go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone.
    Don’t install Java unless you are certain that you need it:
    Java, a non-Apple product, is a potential vector for malware. If you are required to use Java, be mindful of that possibility.
    Disable Java in Safari > Preferences > Security.
    Despite its name JavaScript is unrelated to Java. No malware can infect your Mac through JavaScript. It’s OK to leave it enabled.
    Block browser popups: Safari menu > Preferences > Security > and check "Block popup windows":
    Popup windows are useful and required for some websites, but popups have devolved to become a common means to deliver targeted advertising that you probably do not want.
    Popups themselves cannot infect your Mac, but many contain resource-hungry code that will slow down Internet browsing.
    If you ever see a popup indicating it detected registry errors, that your Mac is infected with some ick, or that you won some prize, it is 100% fraudulent. Ignore it.
    Ignore hyperventilating popular media outlets that thrive by promoting fear and discord with entertainment products arrogantly presented as "news". Learn what real threats actually exist and how to arm yourself against them:
    The most serious threat to your data security is phishing. To date, most of these attempts have been pathetic and are easily recognized, but that is likely to change in the future as criminals become more clever.
    OS X viruses do not exist, but intentionally malicious or poorly written code, created by either nefarious or inept individuals, is nothing new.
    Never install something without first knowing what it is, what it does, how it works, and how to get rid of it when you don’t want it any more.
    If you elect to use "anti-virus" software, familiarize yourself with its limitations and potential to cause adverse effects, and apply the principle immediately preceding this one.
    Most such utilities will only slow down and destabilize your Mac while they look for viruses that do not exist, conveying no benefit whatsoever - other than to make you "feel good" about security, when you should actually be exercising sound judgment, derived from accurate knowledge, based on verifiable facts.
    Do install updates from Apple as they become available. No one knows more about Macs and how to protect them than the company that builds them.
    Summary: Use common sense and caution when you use your Mac, just like you would in any social context. There is no product, utility, or magic talisman that can protect you from all the evils of mankind.

  • Itunes application not responding when I plug in my iphone

    I am on itunes 8.2 and when I plug in my iphone itunes just goes into application not responding.
    I wait for a while and then unplug the phone and it goes back to working again.
    On the phone there is no "Sync" message. In fact with the phone plugged in I can access the phones apps just as if it was not plugged in.
    But initially when I plug it in, it does the double vibrate and shows the charging graphic so I know the cable is ok.
    The phone is already on 3.1 apparently because some new features are there... like selecting multiple photos to email.
    But I don't recall ever running any updates in itunes to make it use the new software as I read you were supposed to do.
    I don't want to upgrade to itunes 9 because I read so many people having problems with it... but I wonder if the phone is no longer compatible with itunes 8.2
    Any help is appreciated.
    Thanks.
    -Jeff

    Do you know if the problems people have reported with itunes 9 was before the 9.1 release?
    I've heard tons of people saying they were reverting back to itunes 8.2 because 9 was so bad.
    Am a bit nervous about that update because of that.
    But an applecare guy told me that the 9.1 was supposed to address those issues. I have just not heard anything about that actually fixing things though. Still seems like a lot of people are dreading the new itunes 9.
    If you are an itunes 9 user, did you have any problems with it wiping out your library or any terribly long syncing times?
    Thanks.

  • I have a Windows Vista desktop and an old XP laptop, both run Firefox perfectly. However, my Toshiba Satellite T135 laptop will not run ANY version of Firefox--constant "not responding" messages. Chrome and IE9 work perfectly. Help!!

    To mostly repeat my question, I am a longtime Firefox user on both an XP laptop and a Vista desktop. So here I get the most "capable" computer of all, a Toshiba Satellite T135 laptop, 64-bit Windows 7, 4G RAM...and it won't run Firefox at all! I have installed an uninstalled both Firefox 3, and just now, Firefox 4. No changes. When I open the software, it usually just locks up for a minute or so, and I finally get a "not responding" message at the top of the screen.
    Obviously there is something corrupt in the guts of my laptop. But both IE9 and Chrome work very well--Chrome is blazing fast. I still prefer Firefox because it works best with some particular software I use for work...but I have to go to one of my older computers to do it!
    ANY solutions out there? This seems like a very odd problem.
    Posting from the Firefox website...using Google Chrome!

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • HT1766 I lost all of my contact information when I back up it into ITUNES last night and I see that Itunes completed a back up. I tried to restore it but the phone would not respond. So I started as new and it store me back when I purchased the phone 2 ye

    Last night I back up my phone to my computer as always and once it completed it was not responding. I tried to restore the infromation as of the back up last night but it ask for a password which I do not remember placing. I was able to store as of the date I purchased the phone 2 years ago. Also, I am not in the cloud.
    How do I get this password so I can get my information back???
    Thank you

    Unfortunately you've discovered too late how important it is to maintain an up-to-date backup of your iTunes library (and all other data of value).  You could, before wiping the drive, have considered making use of a commercial data recovery service that could (albeit at considerable cost) have extracted your library from the hard disk, even if virus infected.
    In the absence of that option, you will need to restore the content of your library from its original sources:
    Depending on your location, you may be able to re-download any iTunes Store purchases that are still available on the Store
    Likewise, most digital purchases from Amazon (including auto-rip copies of purchased CDs) should be available from the Amazon Cloud and via the Amazon Music application - the same may be true of other commercial sources for digital downloads
    Content imported from your CDs will have to imported again
    The specific situation that you describe regarding the music imported from your friend's external HDD suggests that either the source is badly organized and/or originates from a source other than iTunes (other media players may use alternative tags for information like artist, title, album, etc. that are not wholly consistent with how iTunes handle these).  Without details of the issues you're seeing it is difficult to suggest a remedy other than going through the media album-by-album, track-by-track, and correcting the inconsistencies.
    In the absence of a backup or access to the original library data there is no option other than painstakingly recreating your library as described above.  As you do so, you'll now realize how important creating and maintaining backups are - in my case I have at all times three separate duplicates of my library, in two different locations, where none is ever more than a week old compared to the content of my master library.

  • How do you shut down a computer safely when Finder is not responding?

    I've been having some problem with my Mac OS X lately where Aperture has been "not responding". Stupidly, I used forced shutdown of that program until I learned how bad this is.  So today I'm working on my mac (trying to learn what's wrong with Aperture) and the  beachball for Finder starts spinning and the program is not responding. How do I restart or shut down without damaging anything? I could "force quit" but don't know if this is bad for Finder, as it is bad for Aperture.  Help!

    Hi suzyfromks,
    Welcome to the Support Communities!
    If a single application is unresponsive, you don't have any other option but to Force Quit.
    Then I would suggest quitting your other open applications normally, and starting the computer in Safe Mode as explained in this article.
    Mac OS X: How to troubleshoot a software issue
    http://support.apple.com/kb/ht1199
    Regarding Aperture, I would suggest making sure you have a Time Machine backup of your computer, and follow these troubleshooting steps:
    Aperture 3: Troubleshooting Basics
    http://support.apple.com/kb/ht3805
    I hope this information helps ....
    - Judy

  • Photoshop crashes each time i start it and it then does not respond and after 3 to 4 min sarts

    On starting photoshop on my macbook pro it crashes and does not respond and only after 4 minutes does it start, does any one have any suggestions on how to fix this as it is annoying to always have to wait for photoshop to start

    Hi Andy.  Can you give us some information?
    Which version of OSX?
    Which version of Photoshop?
    Is this a new installation? Or how long has it been working OK before this problem?
    Do you have any external drives?
    What are your Photoshop Scratch disk arrangements?
    The sort of issues that can cause a crash on start up are bad fonts
    Fonts — Troubleshoot
    Third party plugins
    Looking for a scratch disk that does not respond
    Driver problems — video card being a big one.
    Troubleshooting Steps to Fix Most Issues

  • InDesign 2014cc not responding

    I just purchased and installed InDesign 2014cc. So far I've used Photoshop with no problems however I am experiencing a real problem with InDesign
    It all began trying to open a document I built in InDesign CS6. When I double clicked the document it automatically began launching 2014CC, not CS6. The document and pallets appear on screen but then a window pops up titled "What's New". At that point nothing more happens. It stops responding. It seems from the activity on my modem that the blank window is trying to load Adobe information online but nothing shows up in the window.
    I tried calling up the computer's "force quit" window and nothing happens. The keyboard is seized up. I can move the cursor on screen but it won't allow a click on anything.
    I have to force a shutdown on the computer in order to get out of InDesign. When I reboot, since InDesign was running on shutdown it automatically boots too. However, at that point I can force quit it and in the "force quit" window is states "InDesign not responding".
    I'm not using any 3rd party plug-ins but the problem seems to be with the "what's new" window as the document shows up perfectly behind the window.
    I'm using a Mac Pro 2 x 2.66 dual core processor (1st gen Mac Pro), OS 10.7.5 with 8GB. According to Adobe this shud run InDesign.
    I know this isn't the Illustrator Forum but when I launch Illustrator 2014 CC it launches fine but the informational window which won't come up in InDesign populates with text that is twisted at a 45-degree angle! It cannot be read. Wish I knew how to disable that window.
    Anybody have any suggestions?
    Thanks,
    Tony

    I have had the same problems as every one for a while now with all my Adobe products.  I thought is was my computer and almost bought a new one to fix the problem.  About the only thing that works is rebooting.  I have found that my mac email program and google seem to make the  problem worse.  I read my email and do my searches then close and reboot.  I have begun to leave my force quit window open.  I have seen that at times, programs I was not even using would (fail to respond).  It got to wondering if the computer was trying to reboot a program I was not using which caused it to slow down the program I WAS using.  I also wondered about the font activation (I use suitcase) and was about to upgrade hoping to fix the problem,  but I saw a post about the same problem with a different font controller so that cant be it.  For now I force quit what I am not using and at times either refresh the finder or go a full shutdown.  I have also tried unplugging my computer from the outside world.   I wondered if some outside source is peeking at my keystrocks phishing to send me adds I dont want. Guess as bad as it sounds I am not the only person having the same problem.  Hope we find an answer soon- this sucks

  • Maverick finder not responding com.apple.iconServicesAgent consuming most of the resources

    I have had an interesting week.  Beginning on Tuesday, my computer began acting unstable. Tried to reinstall the operating system - caused me to replace the current disk with my weekly backup disk.  Yet, when I operate the current system, I find that programs (except those requiring video such as DVD player or Quicktime) work well but the finder is not responding. Was able to run EtreCheck.  According to the report, the only process was that highlighted in red was com.apple.iconServices Agent.
    I have repaired permissions and cleaned the cache. Attached is the report from EtreCheck. Any ideas what is going wrong and how to correct it?  TIA.
    Steve
    Hardware Information:
              Mac Pro (Mid 2012)
              Mac Pro - model: MacPro5,1
              1 3.2 GHz Quad-Core Intel Xeon CPU: 4 cores
              14 GB RAM
    Video Information:
              ATI Radeon HD 5770 - VRAM: 1024 MB
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 21:2:43
    Disk Information:
              HL-DT-ST DVD-RW GH80N disk8 : (7.43 GB)
              ST3000DM001-1CH166 disk2 : (3 TB)
                        EFI (disk2s1) <not mounted>: 209.7 MB
                        Macintosh Initial HD (disk2s2) /Volumes/Macintosh Initial HD: 3 TB (2.51 TB free)
                        Recovery HD (disk2s3) <not mounted>: 650 MB
              ST3000DM001-9YN166 disk3 : (3 TB)
                        EFI (disk3s1) <not mounted>: 209.7 MB
                        Macintosh (disk3s2) /Volumes/Macintosh: 3 TB (2.51 TB free)
                        Recovery HD (disk3s3) <not mounted>: 650 MB
              ST4000DM000-1F2168 disk0 : (4 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 4 TB (1.33 TB free)
                        Recovery HD (disk0s3) <not mounted>: 784.2 MB
              ST32000641AS disk1 : (2 TB)
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        Macintosh Data (disk1s2) /Volumes/Macintosh Data: 2 TB (574.39 GB free)
    USB Information:
              PATRIOT (disk9s1) /Volumes/PATRIOT: 129.99 GB (10.36 GB free)
              EFI (disk13s1) <not mounted>: 209.7 MB
              4TB Macintosh HD (disk13s2) /Volumes/4TB Macintosh HD: 4 TB (2.1 TB free)
              Recovery HD (disk13s3) <not mounted>: 784.2 MB
              Seagate Backup Disk (disk5s1) /Volumes/Seagate Backup Disk: 4 TB (1.38 TB free)
              disk4s1 (disk4s1) <not mounted>: 188.4 MB
              disk4s1s1 (disk4s1s1) <not mounted>: 18 KB
              Citizen Watch (disk4s1s2) /Volumes/Citizen Watch: 187.9 MB (Zero KB free)
              LaCie File Storage (disk11s1) /Volumes/LaCie File Storage: 1.72 TB (798.34 GB free)
              LACIE SHARE (disk11s2) /Volumes/LACIE SHARE: 280.06 GB (279.21 GB free)
              TOSHIBA EXT (disk10s1) /Volumes/TOSHIBA EXT: 1 TB (773.59 GB free)
              Seagate Backup Plus Disk (disk14s1) /Volumes/Seagate Backup Plus Disk: 4 TB (3.88 TB free)
    FireWire Information:
              LaCie d2 Quadra v2B 800mbit - 800mbit max
                        EFI (disk7s1) <not mounted>: 209.7 MB
                        LaCie Backup (disk7s2) /Volumes/LaCie Backup: 3 TB (625.64 GB free)
              LaCie d2 Quadra v2B 800mbit - 800mbit max
                        EFI (disk6s1) <not mounted>: 209.7 MB
                        LaCie (disk6s2) /Volumes/LaCie: 3 TB (201.15 GB free)
              Other World Computing OEM ATA Device 00 400mbit - 800mbit max
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.SwitchBoard.plist
              [not loaded] com.barebones.authd.plist
              [not loaded] com.bjango.istatlocaldaemon.plist
              [loaded] com.bombich.ccc.plist
              [not loaded] com.dymo.pnpd.plist
              [loaded] com.fitbit.galileod.plist
              [not loaded] com.flipvideo.FlipShareServer.launchd.plist
              [not loaded] com.iospirit.candelair.daemon.plist
              [not loaded] com.iospirit.candelair.sync.plist
              [loaded] com.macpaw.CleanMyMac2.Agent.plist
              [not loaded] com.maintain.HideSpotlightMenuBarIcon.plist
              [loaded] com.micromat.CheckmateIdleDaemon.plist
              [loaded] com.micromat.CheckmateWorkerDaemon.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [loaded] com.prosofteng.DriveGenius.locum.plist
              [not loaded] com.quark.quarkupdate.plist
              [not loaded] com.smithmicro.schedulerdaemon.plist
              [not loaded] com.sonycorporation.BloggieInstallerAgent.plist
              [not loaded] fi.polar.polard.plist
              [not loaded] PACESupport.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [not loaded] com.bjango.istatlocal.plist
              [not loaded] com.docudesk.deskpdf.userdaemon.plist
              [not loaded] com.flipvideo.FlipShare.AutoRun.plist
              [not loaded] com.Logitech.Control Center.Daemon.plist
              [not loaded] com.maintain.PurgeInactiveMemory.plist
              [not loaded] com.maintain.Restart.plist
              [not loaded] com.maintain.ShutDown.plist
              [loaded] com.maintain.SystemEvents.plist
              [loaded] com.micromat.CheckmateAgent.plist
              [loaded] com.rosettastone.rosettastonedaemon.plist
              [not loaded] com.sony.BloggieSoftware.AutoRun.plist
              [loaded] com.wacom.pentablet.plist
              [loaded] jp.co.canon.CUPSCMFP.BG.plist
              [loaded] jp.co.canon.CUPSFAX.BG.plist
              [loaded] jp.co.canon.ScanGearMF.appl.Canon-MF-Scan-Agent.plist
              [loaded] jp.co.canon.UFR2.BG.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
              [loaded] com.adobe.ARM.df0ab5bbe6f698196fcc21e3c1e66dcb758bd911f4d637272d9d8109.plist
              [loaded] com.ecamm.printopia.plist
              [loaded] com.google.keystone.agent.plist
              [not loaded] com.macpaw.CleanMyMac.helperTool.plist
              [not loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist
              [not loaded] com.macpaw.CleanMyMac.volumeWatcher.plist
              [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist
              [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist
              [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist
              [loaded] com.macupdate.desktop5.scanner.plist
              [loaded] com.nero.HSMMonitor.plist
              [loaded] com.seagate.mediasync.plist
              [not loaded] com.smithmicro.cleaning.schedulermailer.plist
              [loaded] com.valvesoftware.steamclean.plist
              [loaded] com.zeobit.MacKeeper.Helper.plist
              [loaded] de.writeitstudios.cookiestumbleragent.plist
    User Login Items:
              Citations
              AirPort Base Station Agent
              ChronoSyncBackgrounder
              Jawbone Updater
              Alfred 2
              Fitbit Connect Menubar Helper
              TransmitMenu
              Dropbox
    3rd Party Preference Panes:
              PenTablet
              BodyMedia SYNC
              EarthDesk
              F10 Launch Studio
              Flash Player
              Flip4Mac WMV
              GlimmerBlocker
              Paragon NTFS for Mac ® OS X
              Printopia
              TextExpander
    Internet Plug-ins:
              AdobeAAMDetect.plugin
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              DYMO NPAPI Addin.plugin
              DYMO Safari Addin.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              GarminGpsControl.plugin
              Google Earth Web Plug-in.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              LogitechHarmony.plugin
              net.juniper.DSSafariExtensions.plugin
              OfficeLiveBrowserPlugin.plugin
              PDF Browser Plugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
              WacomNetscape.plugin
              WacomTabletPlugin.plugin
    User Internet Plug-ins:
              Google Earth Web Plug-in.plugin
    Bad Fonts:
              None
    Top Processes by CPU:
                  11%          Google Chrome
                  10%          WindowServer
                   1%          SystemUIServer
                   1%          EtreCheck
                   1%          Carbon Copy Cloner
                   0%          Dropbox
                   0%          Fitbit Connect Menubar Helper
                   0%          Canon FAX BackGrounder
                   0%          Canon CMFP BackGrounder
                   0%          fontd
    Top Processes by Memory:
              631 MB             com.apple.IconServicesAgent
              318 MB             Google Chrome Helper
              301 MB             rsync
              301 MB             Google Chrome
              244 MB             Dock
              244 MB             WindowServer
              172 MB             mds_stores
              143 MB             softwareupdated
              143 MB             MacKeeper Helper
              115 MB             Finder
    Virtual Memory Statistics
              4.94 GB            Free RAM
              6.29 GB            Active RAM
              1.51 GB            Inactive RAM
              1.24 GB            Wired RAM
              6.13 GB            Page-ins
              0 B                Page-outs

    When you next have the problem, note the exact time: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Scroll back in the log to the time you noted above. Select any messages timestamped from then until the end of the episode, or until they start to repeat, whichever comes first. Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • When I'm on Facebook it keeps stopping or not responding then it will work & then it stops. It keeps doing this & is very slow.

    When I'm scrolling down the msgs. it keeps stopping & saying not responding. Then it will start up again for a few seconds & then stop again. It's very slow. When I'm playing Farmville or Frontierville it's extremely slow too.

    for what it's worth, it seems to be worse on my netbook which is running windows 7. the laptop, which is running linux ubuntu, is slower than I'd like, but doesn't freeze up as badly. and the desktop, running win xp, I rarely use. :)
    Marge, if you want to add me in Facebook, look for the same user name I have here. I play both Farmville and Frontierville.

Maybe you are looking for

  • Download link on report

    Is it possible to disable the download (refresh, printer friendly) links at the bottom of reports that are not on a dashboard?

  • Why my apps store didn't have genius at bottom and it have categories and top25 ( this 2 can't use )

    Help pls

  • EXPORT 실행 시 ORA-1403 조치 방법

    제품 : ORACLE SERVER 작성날짜 : 1995-11-06 EXPORT 실행 시 ORA-1403 에러가 발생되는 경우가 있는데, 이 에러는 테이블 혹은 index에 문제가 있는 경우 발생할 수 있다. 여기서는 ROWID를 사용하여 table을 복구시키는 방법을 소개한다. 1. 기존 테이블과 같은 구조를 갖는 테이블을 만든다. SQL> CREATE TABLE TEMP AS SELECT * FROM EMP WHERE 1=2; 2. 기존 테이

  • Hi. How I can find other files and remove them?

    I have 42 GB of other storage, how can I delete it? I dont believe that osx is 40 GB large. Waiting for some advice, searched the web, but there is nothing really helpful.

  • Cant sync january update

    I had the january update installed and it worked great. I reset my ipod and my laptop. My Apple store account says i have purchased it but it will not sync onto my ipod touch. How do i get the iphone apps on the ipod after paying for the update?