Unable to work in embedded Excel worksheets, errors out, and forced into task manager

I am unable to work in Excel worksheets embedded Word 2010. I continually get the following errors/warnings: "Microsoft Word can't start the application required to open this object. An error occurred and this feature
is no longer functioning properly. Would you like to repair this feature now?" & " "The program used to create this object is Excel. That program is either not installed on your computer or it is not responding. To edit this object, install Excel or ensure
that any dialog boxes in Excel are closed." After these messages, I click to repair Word and upon a fresh reboot ...the same thing over and over and over again. After going through this procedure, I usually get another warning message regarding "OLE...." which
pops up continually until I "Ctrl-Alt-Del" and stop the Excel item in processes.
Currently I'm on Win7 64 Enterprise OS and 32 Bit Office 2010, Solutions that I have tried: disabling add-ins, updating, installing service packs with no success... 
HELP PLEASEEEEEE!!!! 

Hi,
You disable COM Add-in in Excel or Word ?
This problem might be related to some third-party in Excel,
Close word, and start Excel worksheet.
In Excel, click File menu, click Options > 
Add-ins, click Go button in the Manage:
COM Add-ins.
Check if there has any add-ins, clear the checkbox to disable them.
Start Word and try to edit your embedded files. They should now work without a problem.
If the problem does not appear, restart Excel and add one check back each time to the list of Add-In, restart the Excel program, and
repeat the above procedure. Once the issue reappears again, we can determine which add-in causes this problem and then disable it.
Best Regards.
William Zhou
TechNet Community Support

Similar Messages

  • EXCEL/BEX errors out

    When we try to set a filter within one of our workbooks EXCEL errors out and
    after several mins. it dumps an error report.

    hi,
    What is the error message.Do u see any ST22 dump generated.
    Rgds
    Manoj Kumar

  • When accessing the any tasks from Fusion Applications homepage, "An error was received for the task Manage Worker Goal Setting Lookups. This task is identified with the code HRG_MANAGE_WORKER_GOAL_SETTING_LOOKUPS that invokes program /WEB-INF/oracle/apps/

    We have installed HCM and CRM modules on Fusion Application 11.1.7 version.
    This is 2 node architecture ie IDM components installed in one node and Fusion components installed in another node.
    We are able to start the IDM components and Fusion components successfully, but when users are trying to access any task from Fusion application home page, they are getting the below error
    A portlet consumer error was received for the task Manage Worker Goal Setting Lookups. Report the error details to the following owning product Goal Management.
    An error was received for the task Manage Worker Goal Setting Lookups. This task is identified with the code HRG_MANAGE_WORKER_GOAL_SETTING_LOOKUPS that invokes program /WEB-INF/oracle/apps/fnd/applcore/lookups/publicUi/flow/ManageCommonLookupsTF.xml#ManageCommonLookupsTF of module code fndSetup. Review the consumer and producer logs for more details on this error.

    This may be related to the other issue regarding "FUSION_APPS_WSM_APPID-KEY" as the logs contains exceptions like:
    oracle.wsm.policymanager.PolicyManagerException: WSM-02081 : Failed to login to perform requested action.
    Please refer to document Fusion Application Service Account Password Expiration Causes Portlet Producer Errors (1486388.1) for steps on how to verify and set the password. There is also exception:
    javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User FUSION_APPS_PROV_PATCH_APPID denied
    This is also likely caused by an expired password, please see Fusion Apps Servers Are Not Starting Up - Password Policy Error :9000: GSL_PWDEXPIRED_EXCP :Your Password has expired (1629927.1).
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • I have a Mac Book and purchased a Bose system that uses an antenna to play music from the the laptop - it works great, but the computer times out and shuts down - Help

    have a Mac Book and purchased a Bose system that uses an antenna to play music from the the laptop - it works great, but the computer times out and shuts down - Help

    Check in "System Preferences">"Energy Saver" to see if you have the "Computer Sleep" bar set too low.

  • Unable to Capture more than 5 mins, error out of mem msg when rendering

    Somebody help me. I have been using my powermac fcp and a mini dv cam for 4yrs no problems. Now when i am trying to capture clips over 5 mins (1 gig) fcp freezes. So Im capturing through Imovie (which is working fine). Dragging clips into fcp to edit. Now when it comes to rendering anything over 5 mins Im getting an error out of memory msg.
    Can anyone help me?

    You don't say what version of FCP you are using but my guess is you've upgraded QT7 and are running FCP4.5
    If that's the case, do a search here for the solution(s). They're ugly.
    good luck,
    x

  • Script to open excel files take info and put into new document

    Hi All
    I am new to applescript, but looking through the forums it seems to be the solution to my problem.
    I have large numbers of excel files on a pc server which i want to open, take approx 8 cells of information from each and place into a new excel doc, forming a list. I want this if possible to happen automatically, so if a new excel document is placed into a folder on the server, the relavent information is added to my list.
    I have looked at automator but dont think it works with excel yet, and the programming in excel is too much for me.
    I posted a query here in my previous job for a script of change all "/" symbols to "-" symbols, which worked very well and i hope someone more gifted can help with my new query.
    Hope i have given enough info and that someone can help
    thanks

    Supplied below is a, quick and dirty (minimal error handling), working self contained (applet) example:
    on run {}
    display dialog "Drag files onto applet for processing."
    end run
    on open (dragged_Items)
    try
    tell application "Microsoft Excel" -- Launch 'Excel' to process '.xls' files
    set tList to {} -- Create an empty list.
    repeat with i in dragged_Items -- Cycle through each dragged '.xls' file.
    open i -- Open each file.
    repeat with j from 1 to 8 -- Cycle through the eight column values of a single row.
    copy (value of cell j of row 3) to end of tList -- Obtain individul cells' value and place into 'tList'.
    end repeat
    end repeat
    repeat until (documents is {}) -- Routine to close all opened '.xls' windows. Here, 'close windows' does not work.
    close windows
    end repeat
    if (not (document 1 exists)) then make new document -- Create a new document, if needed.
    set k to 0 -- Location (position) of a 'tList' item.
    repeat with i from 1 to (count dragged_Items) -- Set row value, of where to ener column values.
    repeat with j from 1 to 8 -- Set cells' column value.
    set k to k + 1 -- Increment 'tList' location.
    set (value of cell j of row i) to (item k of tList) -- Enter value into current rows' columns' cell from 'tList'.
    end repeat
    end repeat
    activate -- Bring window to foreground.
    end tell
    end try
    end open
    Save the AppleScript code as an applet (application).
    Drag the desired files onto the applet for processing.
    The above AppleScript code obtains the cell values of columns A through H of row 3 of each '.xls' file.
    To automatically process the files of a specific folder - utilize the provided code, with respective modifications, within a
    'on adding folder items to this_folder after receiving these_items
    end adding folder items to
    ... AppleScript - 'Folder Action'.

  • Error: Vendor and Material Import tasks fail

    Hi gurus.
    Our CLM Vendor and Material imports tasks have been working fine until recently when we experienced the error:
    Data Import Service: File: Material20150401-101647-817.xml is corrupt and cannot be imported
    We have not done changes to either CLM/PI/ERP. Please can you shed some light what's causing this error? Thanking you in advance.

    HI
    which version and service pack you are using ?
    we are using V9-SP19.
    In SP16 SAP has fix an issue with Vendor import.
    check this :
    Fix has been done to handle the processing of Payment Term field for Vendor import. Vendor XML import file should contain a field tag as
    <PAY_TERM></PAY_TERM> with desired value specified within the tag.
    this might be an issue.
    Thanks
    kanchan

  • Firefox hangs -- no fixes work -- even if I uninstall it, it stays open in task manager!

    UPDATE 2: Disregard update 1: The problem's still there: If the computer goes into sleep or hibernate, Firefox hangs when I wake it up and the problem proceeds as described. I think it's something to do with Firefox sync and/or various add-ons. I suppose I should now try the long process of gradually allowing sync permissions and add-ons until I find the particular one(s) that are causing the problem but I'd prefer not to! Any other sugestions?
    UPDATE: This problem now seems to be fixed. I tried a clean install and it seems to be working, so far. The only difference is I'm no longer using AdBlock plus (coincidentally and unrelatedly), so it's possible that's what was causing the problem.
    I'm running the latest vesion of Firefox on Windos 7 (32bit). It always works fine for the first few webpages but then hangs forever. Specifically, it appears to be loading the webpage, but nothing happens, not even the 'failed to load page'.
    If at this point I close Firefox, it gives me the 'Firefox is running but not responding' message. If I try and close Firefox from task manager (which continues to show it using a big chunk of memory -- bigger than when it's actually running!), nothing happens.
    At this point I'd tried all the obvious things: Refreshing Firefox, disabling add ons, etc. (there's no reason this should've been the problem since I use sync to run Firefox on Android and on another Windows 7 computer (64bit)). So I tried to uninstall Firefox, then reinstall it. When I went to run my newly-installed browser... Firefox was STILL running! I tried this again, from scratch, and found that it really was still open according to Task Manager, despite not appearing in the list of installed programs in the Control Panel!
    So to summarise:
    1) Firefox stops working after a while and hangs
    2) It refuses to close even if it isn't actually on the PC anymore
    3) The only way for me to fix this, so far, is to reboot my computer every time Firefox hangs... Which is all the time.

    Anyone with very similar problems, please see my posts above.
    '''Please start your own question using this'''
    *'''[https://support.mozilla.org/en-US/questions/new/desktop/fix-problems?search=Firefox+36.0.1+hangs+on+close+down+%28%2Fquetions%2F1051108%29#summarize-question special link]'''
    Other contributors will recognise it as relating to this thread, and it cuts out a couple of steps.
    Please try to give full troubleshooting information.
    ===Hi berndf,===
    Sorry you are having problems.
    I know this can not be affecting everyone. I have tried Fx36.0.1 on Windows 7 and do not notice any particular problems, although it may possibly sometimes take a few minutes for Firefox to fully close down. I do not think there is a very big surge in this sort of question being seen on the forum.
    If you don't mind please start your own question, that way we get your full details and can try to solve your problem.
    It is probable that there are multiple possible causes of this sort of issue.
    I often try to avoid using Windows. Must admit I am not sure why processes may exist but not allow Task Manager to kill them (Presumbly we are talking ''firefox.exe'' here running under your own user name and not some system process)
    That is straying into a Windows topic, but it is directly relevant. Any Windows expert wish to enlighten me please ?

  • Firefox won't open. No error messages, no processes in task manager.

    Thought it might be an update issue as I was running FF 3.x when this issue started. I updated to 4.0 last night and it hasn't changed anything. FF opened and ran once, now not at all. No error message, no running process in task manager. Double clicking on the FF icon makes a busy icon, it shows in Task Manager, then goes away and never opens. Suggestions? =(
    No new software has been installed since this has occured, I've run anti-virus software, etc.
    Thanks for the help.

    Restarting, reinstalling doesn't fix.

  • Saying unable to download? Have tried rebooting, signing out and back in.

    Why is it saying unable to download (tv episode) ? Have tried rebooting and signing out and back in iTunes. Have a strong wifi connection.

    Hi The gosling!
    Try finding your purchase in your past purchases list and see if you can download it from there:
    Download past purchases
    http://support.apple.com/kb/ht2519
    If it is there but you are still unable to download it, then use the following information to report an issue with this purchase:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    If it does not show up in your purchases list, return to the product page on the iTunes Store and attempt the purchase again. Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • XML Report with EXCEL output errors out intermittently

    Hi Gurus,
    We have a custom XML report running for a particular user for whom it is failing intermittently.
    The program does not return any error in log file.
    I also checked the OPP log file but coud not find any issues / errors.
    But Standard manager log file has the below error when the request fails :
    Process monitor session started : 14-SEP-2012 10:25:30*
    Found running request 2823013 attached to dead manager process.*
    Setting request status to completed.*
    fdugpi has recovered SRW driver value*
    Found dead process: spid=(3076), cpid=(236068), ORA pid=(65), manager=(0/0)*
    Starting STANDARD Concurrent Manager               : 14-SEP-2012 10:25:31*
    Process monitor session ended : 14-SEP-2012 10:25:31*
    Please help me out to figure out what is the issue here. Also the standard manager process has died and got restarted.
    We are on 12.1.3 application version with 11gR1 database
    Regards,
    Ram

    You can use BI publisher for your requirement -
    Create a Concurrent program which is based on the executable 'XDODTEXE'
    The Short_Name of the concurrent program should be the same as the data_definition short_name from Xml Publisher responsibility.
    You can go through the link provided by Alex for creating the UI Template and the data template.
    Cheers,
    VB

  • I'm trying to install photoshop CC because I just purchased a license, but it doesn't work via creative cloud.  " error " message,  and now I'm stuck.

    I just purchased a license for photoshop CC because my older version of CS5 is expired.
    but I can't seem to download it via creative cloud, it says error all the time. and it's like 40 procent downloaded. What can I do?

    this is the error message:
    Exit Code: 34
    Please see specific errors below for troubleshooting. For example, ERROR:
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 0 error(s)
    FATAL: Payload 'Camera Profiles Installer_7.4_AdobeCameraRawProfile7.0All 8.0.0.22 {38CE8E2B-ABDF-487F-A606-31D5E75AF8C0}' information not found in Media_db.

  • Unable to add reference for Excel Object Library for use within Script Task

    I have a requirement to use a Script Tax that needs to reference the Excel Object Model. There are numerous articles on using this such as
    http://www.databasejournal.com/features/mssql/article.php/3921141/SSIS-Script-Task-and-Microsoft-Office-Automation.htm.
    Simply, I need to add a reference to the Microsoft Excel 12.0 Object Library.
    I have selected this from the Object List on the COM tab and when this adds the reference it states 'The System cannot find the reference specified', even though the referenced file for this Object is C:\Program Files(x86)\Microsoft Office\Office12\Excel.exe
    and this file location exists on my local machine ?

    Please search where "Microsoft.Office.Interop.Excel.dll" exist in your system and try adding the reference.
    If you don't find the dll there then there might be problem while installing.
    To install the PIAs by using the redistributable package
    http://www.microsoft.com/en-us/download/details.aspx?id=3508
    http://www.microsoft.com/en-us/download/details.aspx?id=18346
    Regards, RSingh

  • ITunes will not open error ocurred and forced to close

    I have used iTunes before but one day it would not open and a message comes up saying iTunes has encountered a problem and needs to close. The options from there are "send error report" or "dont send." I have downloaded iTunes mutliple times and also tried repairing it. Any advice?

    Murray3703, only one other time did this happen to me.  It was over 6 years back when I had an iPod Nano and after doing the reinstallation, it wiped out all of the content and applications and corrupted by Nano to the point Apple said it could not be fixed.  I had no other things corrupted on my laptop.  So, I know it was not a virus.
    I have tried fixing the problem with redownloading and "repairing" the problem but, it did not work.  Since the Nano incident, I am somewhat reluctant to do this for fear that I will loose all of my content and paid applications to apple?  I also have Windows 7. 
    Did you have any issues with uninstalling and reinstalling? Thanks.

  • Export from PDF to Excel continually times out and fails.

    I went through the steps to convert a PDF to Excel turning off the OCR feature. Tried this several times today with or without OCR and I keep getting the error message "Adobe ExportPDF could not successfully export your PDF file (file name).pdf. The conversion of your uploaded PDF timed out."
    I don't think I'm doing anything wrong as there are not too many steps to follow.
    If I can't get this to do  what is expected (which is convert a .pdf to an Excel file) then I will have to cancel the subscription. I just did sign up for a paid subscription to Adobe ExportPDF. There are others in my department (45 total) who would benefit from having a .pdf to Excel file converter and I have volunteered to become the "beta tester" for this.
    If anyone has any ideas as to why this is happening, I'd sure love to hear them.

    You are not talking about Acrobat, but ExportPDF. Check for the separate forum on that by simply selecting the Adobe Community link near the top of this forum and in the drop down box select ExportPDF.

Maybe you are looking for

  • How to set image background color ?

    Hi All, In my project i have image,and if image have black spot or any unwanted spot then i will select that area and say clear it then it will remove that spot and set color of that area similar to area around that spot. I have written code for gett

  • New Album from Smart Album makes NEW VERSIONS of all files? Bug?

    Got what I think is an oddball bug here, but see if any of you have experienced it. Making a new album of the contents of a Smart Album with about 600 images resulted in the SBOD, a lot of time and disk activity and the creation of NEW VERSIONS of al

  • Object key mapping in KSSK table

    Hi All, We are facing an issue wherein SAP BW Job is failing as it is not able to pull the data for Hierachy from SAP. When we checked the details it seems that there is an error entry in table KSSK. However- the table has class type 026 and object k

  • 30" DVI screen has permanent smudge...

    Is this the experience Apple wants me to have after only a few years with their product? I have a 2009 30 Inch DVI display.  For over a year I have noticed that the display is showing 'gray smudges'.   Some are as long as 6 inches and about 3/4 inch

  • Change background color in a Spry Menu

    At last, I understood working of a vertikally spry. But after many "try's and errors" with changing the "SpryMenuBarVertical.css", the backgground color will not change from grey to another color. Please have a look to for help at http://www.kfhgd.in