ExportDataObject invalid action object

Hey Guys, I hope you can help me.
Reader Version: 11.0.08
I use the following function:
function test()
     app.beginPriv();
     t = app.activeDocs[0];
     var d = t.dataObjects;
     t.exportDataObject({cName: d[0].name, nLaunch:2});
     app.endPriv();
The function is a trusted function. ExportDataObject triggers a popup, which says the following (translated from German):
There was an error opening the document. Invalid actionobject.
The function is called via Openaction
cheers

re:"Have you put this script in the startup folder?"
Absolutely.
I even tried using the openDataObject method to get the path of the attachment (which is specially encoded),
and then open it with openDoc. That failed on a security error.
Something strange is occurring here.

Similar Messages

  • Acrobat 8 Standard: "There was an error opening this document. Invalid action object."

    Hi,
    Acrobat 8 had been working on my computer previously, up until this morning. Now any time I try to open a pdf, I get the error, "There was an error opening this document. Invalid action object." I can't get any pdfs on my computer to open, including pdfs that I know work as they opened fine last week. I don't think I've had any updates done to my computer over the weekend. Any ideas why it now doesn't work?

    Open Acrobat and go to HELP>Repair and see if that helps. After the repair, you may also want to do HELP>Updates.

  • ExportDataObject fails: "invalid action object"

    Simple operation: I have a help file attached to the main PDF form.
    All I want to do is open it once upon opening of the form.
    I call the below function from the init procedure in the main form, but it fails.
    What am I doing wrong ? The file name is "Test Help File.pdf".
    function OpenAttachedHelpFile(pszFilename)
    /* Open the attached help file unless it's already open */
      app.beginPriv();
      var oDoc;
      if ( !IsDocOpened(pszFilename) )
        try
        { // now open the attachment in a temp folder
          oDoc = this.exportDataObject({cName: pszFilename, nLaunch: 2}); // always reference the parent document; 2=launch in system temp folder
        } catch ( e )
          ShowError(e.message + "\c Path was \'" + szFilePath + "\'", 0);
        try
          oDoc = app.openDoc({cPath: szFilePath, bHidden: false});
        catch ( e )
          app.alert('Error in app.openDoc: \'' + '\'' + szFilePath + e.message);
      return oDoc;  // return a reference to the help file
      app.endPriv();
    app.trustedFunction(OpenAttachedHelpFile);

    re:"Have you put this script in the startup folder?"
    Absolutely.
    I even tried using the openDataObject method to get the path of the attachment (which is specially encoded),
    and then open it with openDoc. That failed on a security error.
    Something strange is occurring here.

  • Invalid action object error

    This causes an Appcrash as follows
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    FileMaker Pro Advanced.exe
      Application Version:    12.0.4.403
      Application Timestamp:    514b6292
      Fault Module Name:    Acrobat.dll
      Fault Module Version:    11.0.5.3
      Fault Module Timestamp:    5244722b
      Exception Code:    c0000005
      Exception Offset:    0007c54a
      OS Version:    6.1.7601.2.1.0.768.3
      Locale ID:    1033
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789
    Any ideas?  Can't tell if this is Filemaker, Java or Acrobat,  Deleted the suspect directory, repaired Acrobat....
    Thanks.

    Open Acrobat and go to HELP>Repair and see if that helps. After the repair, you may also want to do HELP>Updates.

  • "ORA-20001: Invalid action CREATE on this object. (U)"

    I have a page where data are inserted in my procedure.
    <br>This procedure assign "PXX_ID" which is a key from that table.
    After that I use "Automatic Row Processing (DML)" with check only on UPDATE", to fill other fields that are not filled in my INSERT procedure. This process is defined with "PXX_ID" which is reassigned (not as it was when page was submitted - before my insert).
    <br>SAVE process, which is only calling this DML is working perfectly. My procedure is inserting new record also. But together they are not working. What I want is to use this process for changing data (SAVE button) and for INSERT part also.
    <br>Now I get this error "ORA-20001: Invalid action CREATE on this object. (U)"...any help on this?
    <br>If problem is that I'm reassigning value of "PXX_ID" then please let me give some hint how to make this if possible using DML processes...
    <br>If the solution is to put all fields in INSERT part and use this DML only for changes, let me know. All I need is some hints to understand more this error!
    <br>P.S.
    <br>I have tried to recreate new process ... but no help.
    <br>P.S. II
    <br>I cannot sent app on WORKSPACE (too much work to do)...but I can send page export.
    <br>THX!

    This is caused because you have only checked the UPDATE option in the Automatic Row Processing(DML). By unselected the other options you are basically saying they aren't allowed. In order to get around this you need to put a conditional clause on the process. I would use something like if rowid = null then use my insert process. If rowid is not null then use the Automatic Row Processing(DML).

  • Getting Invalid Registry Object while uninstalling plugins programatically

    When a specific condition is hit (while the user is trying to open our perspective), we uninstall the plugins using the below code:
    Platform.getBundle(<Bundle name>).uninstall();
    When we run this code on Juno 4.2.2, we are hitting the below exception. This same code was working well in Indigo and other earlier releases. Is there a possible step we need to perform before the uninstall? Any help soon will be appreciated.
    org.eclipse.core.runtime.InvalidRegistryObjectException: Invalid registry object
    at org.eclipse.core.internal.registry.RegistryObjectManager.basicGetObject(RegistryObjectManager.java:273)
    at org.eclipse.core.internal.registry.RegistryObjectManager.getObject(RegistryObjectManager.java:263)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getConfigurationElement(ConfigurationElementHandle.java:26)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getParent(ConfigurationElementHandle.java:103)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getDeclaringExtension(ConfigurationElementHandle.java:93)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getNamespaceIdentifier(ConfigurationElementHandle.java:130)
    at org.eclipse.ui.internal.registry.PerspectiveDescriptor.getPluginId(PerspectiveDescriptor.java:153)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.createUnifiedId(WorkbenchActivityHelper.java:180)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.getIdentifier(WorkbenchActivityHelper.java:57)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.allowUseOf(WorkbenchActivityHelper.java:104)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.restrictUseOf(WorkbenchActivityHelper.java:122)
    at org.eclipse.ui.internal.registry.PerspectiveRegistry.findPerspectiveWithId(PerspectiveRegistry.java:162)
    at org.eclipse.ui.internal.registry.PerspectiveRegistry.findPerspectiveWithId(PerspectiveRegistry.java:156)
    at org.eclipse.ui.internal.WorkbenchPage.getPerspectiveDesc(WorkbenchPage.java:2385)
    at org.eclipse.ui.internal.WorkbenchPage.getPerspective(WorkbenchPage.java:2375)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider.updateActiveShell(WorkbenchSourceProvider.java:952)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider.getCurrentState(WorkbenchSourceProvider.java:133)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider$6.handleEvent(WorkbenchSourceProvider.java:684)
    ...

    Thanks Thorsten for your hint. We tried closing the perspective and it works half way. We did the following to close the perspective before uninstalling the plugins
    IWorkbenchWindow w = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
    if (w != null) {
    IWorkbenchPage wp = w.getActivePage();
    if (wp != null) {
    IPerspectiveDescriptor[] p = wp.getOpenPerspectives();
    if (p != null && p.length > 1) {
    wp.closePerspective(p[p.length - 1], true, true);
    After this change, we get back to the perspective we were in before we tried to change perspective and plugins got uninstalled. However when i try to bring up the perspective window again to check if the uninstalled perspective is not visible, i hit the Invalid Registry error again. Below is the trace.
    org.eclipse.e4.core.di.InjectionException: org.eclipse.core.runtime.InvalidRegistryObjectException: Invalid registry object
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:231)
    at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:212)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131)
    at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:171)
    at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:145)
    at org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher.selectPerspective(PerspectiveSwitcher.java:476)
    at org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher.access$6(PerspectiveSwitcher.java:472)
    at org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher$11.widgetSelected(PerspectiveSwitcher.java:368)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4169)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3758)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
    Caused by: org.eclipse.core.runtime.InvalidRegistryObjectException: Invalid registry object
    at org.eclipse.core.internal.registry.RegistryObjectManager.basicGetObject(RegistryObjectManager.java:273)
    at org.eclipse.core.internal.registry.RegistryObjectManager.getObject(RegistryObjectManager.java:263)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getConfigurationElement(ConfigurationElementHandle.java:26)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getParent(ConfigurationElementHandle.java:103)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getDeclaringExtension(ConfigurationElementHandle.java:93)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getNamespaceIdentifier(ConfigurationElementHandle.java:130)
    at org.eclipse.ui.internal.registry.PerspectiveDescriptor.getPluginId(PerspectiveDescriptor.java:153)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.createUnifiedId(WorkbenchActivityHelper.java:180)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.getIdentifier(WorkbenchActivityHelper.java:57)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.allowUseOf(WorkbenchActivityHelper.java:104)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.restrictUseOf(WorkbenchActivityHelper.java:122)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.restrictCollection(WorkbenchActivityHelper.java:600)
    at org.eclipse.ui.internal.registry.PerspectiveRegistry.getPerspectives(PerspectiveRegistry.java:211)
    at org.eclipse.ui.internal.dialogs.PerspContentProvider.getElements(PerspContentProvider.java:42)
    at org.eclipse.jface.viewers.StructuredViewer.getRawChildren(StructuredViewer.java:1010)
    at org.eclipse.jface.viewers.ColumnViewer.getRawChildren(ColumnViewer.java:703)
    at org.eclipse.jface.viewers.AbstractTableViewer.getRawChildren(AbstractTableViewer.java:1087)
    at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren(StructuredViewer.java:917)
    at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren(StructuredViewer.java:1067)
    at org.eclipse.jface.viewers.AbstractTableViewer.internalRefreshAll(AbstractTableViewer.java:701)
    at org.eclipse.jface.viewers.AbstractTableViewer.internalRefresh(AbstractTableViewer.java:649)
    at org.eclipse.jface.viewers.AbstractTableViewer.internalRefresh(AbstractTableViewer.java:636)
    at org.eclipse.jface.viewers.AbstractTableViewer$2.run(AbstractTableViewer.java:592)
    at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1443)
    at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1404)
    at org.eclipse.jface.viewers.AbstractTableViewer.inputChanged(AbstractTableViewer.java:590)
    at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:280)
    at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1690)
    at org.eclipse.ui.internal.dialogs.SelectPerspectiveDialog.createViewer(SelectPerspectiveDialog.java:198)
    at org.eclipse.ui.internal.dialogs.SelectPerspectiveDialog.createDialogArea(SelectPerspectiveDialog.java:134)
    at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:760)
    at org.eclipse.jface.window.Window.create(Window.java:431)
    at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1089)
    at org.eclipse.jface.window.Window.open(Window.java:790)
    at org.eclipse.ui.handlers.ShowPerspectiveHandler.openOther(ShowPerspectiveHandler.java:101)
    at org.eclipse.ui.handlers.ShowPerspectiveHandler.execute(ShowPerspectiveHandler.java:57)
    at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:290)
    at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:76)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    ... 35 more
    I get the following exception when i try to click the finish button to create a new java project.
    org.eclipse.core.runtime.InvalidRegistryObjectException: Invalid registry object
    at org.eclipse.core.internal.registry.RegistryObjectManager.basicGetObject(RegistryObjectManager.java:273)
    at org.eclipse.core.internal.registry.RegistryObjectManager.getObject(RegistryObjectManager.java:263)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getConfigurationElement(ConfigurationElementHandle.java:26)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getParent(ConfigurationElementHandle.java:103)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getDeclaringExtension(ConfigurationElementHandle.java:93)
    at org.eclipse.core.internal.registry.ConfigurationElementHandle.getNamespaceIdentifier(ConfigurationElementHandle.java:130)
    at org.eclipse.ui.internal.registry.PerspectiveDescriptor.getPluginId(PerspectiveDescriptor.java:153)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.createUnifiedId(WorkbenchActivityHelper.java:180)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.getIdentifier(WorkbenchActivityHelper.java:57)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.allowUseOf(WorkbenchActivityHelper.java:104)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.restrictUseOf(WorkbenchActivityHelper.java:122)
    at org.eclipse.ui.activities.WorkbenchActivityHelper.restrictCollection(WorkbenchActivityHelper.java:600)
    at org.eclipse.ui.internal.registry.PerspectiveRegistry.getPerspectives(PerspectiveRegistry.java:211)
    at org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard.addPerspectiveAndDescendants(BasicNewProjectResourceWizard.java:545)
    at org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard.updatePerspective(BasicNewProjectResourceWizard.java:487)
    at org.eclipse.jdt.internal.ui.wizards.JavaProjectWizard.performFinish(JavaProjectWizard.java:99)
    at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:827)
    at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:432)
    at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:624)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4169)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3758)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
    at org.eclipse.jface.window.Window.open(Window.java:801)
    at org.eclipse.ui.internal.actions.NewWizardShortcutAction.run(NewWizardShortcutAction.java:135)
    at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4169)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3758)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1414)

  • Acrobat.exe closed by Windows & "invalid annotation object"

    While I am editing comments with Acrobat 9.3.1, I get a Windows error "acrobat.exe ..... closed by Windows"
    Then when I open the PDF document, I get "invalid annotation object" error, and the file is corrupted and not usable any more.
    Please advise me what steps I need to take to this frequent errors on my computer.  Thanks.

    I too had a Multi Page PDF that had the same "invalid annotation object".
    I was able to open & use the damaged  using Tracker Software - PDF Viewer - PDFXCview (free software - Google it)
    The file opened without error in PDFXCview and I was able to save it, but reopen in Acrobat still had the error.
    I re-opened it in PDFXCview and deleated the comments on the page that Acrobat reported the "invalid annotation object", and was able to save the file, which now opens in Acrobat without the error.

  • "Invalid Annotation Object" error

    I'm using Windows XP Pro (SP3) on a 2.66 GHz, 2 GB RAM computer, and while working in an Adobe Acrobat 9 document, I had just saved the file (CTRL+S) and the document froze and I got a Windows error box that asked if I wanted to send an error report, which I did. When I opened Adobe again, it asked if I wanted to open the last file which didn't save correctly, which I did.
    Then when I proceeded to work in the document and tried to highlight a sentence I was going to delete, I got an Adobe Acrobat popup box that said "Invalid Annotation Object. OK" but no matter how many times I clicked on "OK," the box kept popping up and wouldn't go away. I tried saving a copy of the document, but the same box was in it and wouldn't go away. I couldn't even work in the document to extract pages or anything else. Huge problem!
    Does anyone know what can I do to resolve this problem? (This happened on a Saturday when Adobe phone support is not accessible.)

    On 3/24/2015 same problems, after Adobe Acrobat 9 pro. crashed while I added text boxes.. When I opened Adobe again, Yes to open the last file which didn't save correctly, then "Invalid Annotation Object" errors on my .pdf file of 96 pages
    - first, I had to acknowledge/click the OK button until all " invalid annotation objects" error pop-up windows are gone
    (for my file with 96 pages, i had to hit the OK button more than hundreds times - need patience)
    - then found out (later) that what I did turn out to be the same steps as following post by davidsdomingo in adobe.forums
    davidsdomingo May 28, 2009 1:39 PM (in response to (Holger_Wulf))
    Here is a technique for identifying all the pages that have invalid annotation objects on them:
    1. Document > Extract Pages ...
    •Select the checkbox for "Extract Pages As Separate Files"
    •Set the destination to a 'dedicated' folder that won't contain any other files -- that way, you can simply delete the folder when this process is done.
    •Click OK.
    2. During the extraction, click OK in all the message boxes that appear.
    3. After the extraction, look in the destination folder to see which pages are missing. Those are the pages that have invalid annotation objects.
    From this point you can try to delete the objects, or simply delete and replace the pages, or implement a different solution. Hope this helps someone.
    - after extract the 96-pages file into individual files into a dedicated folder, only 95 got extracted and page 1 was not/can not be extracted.
    - I then combined the 95 good extracted pages into a new file name .pdf
    - then inserted a good page 1 without error (from the file that was saved previous day, prior to all the changes I made on the corrupted file), re work on page 1
    - delete the bad file.
    Hope this helps someone.

  • "Invalid annotation object" on only two of six computers.

      When searching for the resolution to this error I keep seeing that the PDF is corrupt when people get the error "Invalid annotation object".  But I have a office that has eight workstations and only two are getting the error.  To further complicate issues I downloaded Adobe Reader on one of the machines and it does not get the error either.  All of the machines on the network are using Adobe Acrobat 9.
    The steps we have taken to try to resolve the issue on one of the computers:
    Ran the repair of Adobe from the help.
    Checked for updates.  None were found, it was fully updated.
    Downloaded malware scanners - RKill, Malwarebytes and AdwCleaner.  All found nothing.
    Removed Adobe Pro and tried Adobe Standard.
    After all these steps we still get the error on the machine, but if we go to the computer in the next room it will open it fine with no errors.  We can also open the same document on that computer with Adobe Reader and get no errors.
    One way to bypass the error is to use the arrow keys to navigate the document.  The error only happens when navigating by using the mouse.
    Any and all help would be greatly appreciated.
    Thank you.

    Jenny,
    Look at where the problem computer is getting its time/date from (System Preferences>Date/Time), then compare that to one of the functional computers. It might not be syncing up with the Exchange server time-wise, which will cause problems.
    Good luck

  • Adobe "Invalid annotation object" error

    We recieve a specific error message on a few PDFs. Some from documents converted from 2007 Word and others out of Outlook 2007 through the PDF print function.  While moving the mouse over certain comments the users has placed on the document in the PDF format, Acrobat 9.9.3 throws this error. We've tried to delete the bad refs and other times have just started a new document, print to PDF while starting over.  Any ideas on why this is happining, what might be causing this and what we can do to reslove this problem.  I cannot seem to duplicate the problem a few see.  Any thoughts or solutions would be greatly appreciated. Best regards, Brian

    On 3/24/2015 same problems, after Adobe Acrobat 9 pro. crashed while I added text boxes.. When I opened Adobe again, Yes to open the last file which didn't save correctly, then "Invalid Annotation Object" errors on my .pdf file of 96 pages
    - first, I had to acknowledge/click the OK button until all " invalid annotation objects" error pop-up windows are gone
    (for my file with 96 pages, i had to hit the OK button more than hundreds times - need patience)
    - then found out (later) that what I did turn out to be the same steps as following post by davidsdomingo in adobe.forums
    davidsdomingo May 28, 2009 1:39 PM (in response to (Holger_Wulf))
    Here is a technique for identifying all the pages that have invalid annotation objects on them:
    1. Document > Extract Pages ...
    •Select the checkbox for "Extract Pages As Separate Files"
    •Set the destination to a 'dedicated' folder that won't contain any other files -- that way, you can simply delete the folder when this process is done.
    •Click OK.
    2. During the extraction, click OK in all the message boxes that appear.
    3. After the extraction, look in the destination folder to see which pages are missing. Those are the pages that have invalid annotation objects.
    From this point you can try to delete the objects, or simply delete and replace the pages, or implement a different solution. Hope this helps someone.
    - after extract the 96-pages file into individual files into a dedicated folder, only 95 got extracted and page 1 was not/can not be extracted.
    - I then combined the 95 good extracted pages into a new file name .pdf
    - then inserted a good page 1 without error (from the file that was saved previous day, prior to all the changes I made on the corrupted file), re work on page 1
    - delete the bad file.
    Hope this helps someone.

  • What's the difference between Action Objects and ActionListeners

    Hello,
    in the Introduction to JSF two ways handling action are demonstrated. One way is "Combining Component Data and Action Object" the other way is "Handling Events."
    What's the difference? When do I use this or that way?
    The one thing I understand is when using "Combining Component Data and Action Objects" I use the default ActionListener and I may directly access the input values.
    TIA,
    Juergen

    Hi Juergen,
    The bottomline is 'not much', only in the details to these two approaches differ.
    The ActionListener object will have events broadcast to it for a particular object by the event mechanism in JSF. You can add one to a specific component via the f:action_listener tag. This will have your listener getting events during specific points in the request processing lifecycle (you specify via your return value for getPhaseId).
    The Action class that an actionRef reference refers to an Action that will be invoked during the invoke application phase. (see pg 71).
    I would recommend using actionRefs and Action objects wherever possible and going to ActionListeners only when you need notifications during a specific phase of the request/response cycle.
    Hope this helps,
    -bd-
    http://bill.dudney.net

  • Invalid DataStore object name /BIC/B0000173: Reason: No valid entry in tabl

    Hi gurus,
         I recently transported the 0FI_GL_10 datasource to preproduction. when i am trying to load the data in PrePod we are getting this error message.
    <b>Invalid DataStore object name /BIC/B0000173: Reason: No valid entry in table RSTS</b>
    Any help is appreciated with points.

    any more detailed messages,sm21 or st22??
    did you try doing RSRV on the datastore object??
    are you using the nw2004s data flow??
    if using 3.x data flow ,skip PSA and try reloading it.
    Hope it Helps
    Chetan
    @CP..

  • Invalid tincan object name

    I am trying to stream video from a Flash Media Server using
    AS3. I am getting an error that I cannot figure out. In my
    NetStatusEventHandler I am getting event code
    "NetStream.Play.Failed". The error is: "Invalid tincan object name
    (stream ID: 1)" This means absolutely nothing to me and I have been
    unable to find any documentation on the meaning of this error.
    ISSUE RESOLVED: I was including the filename in the
    netconnection.connect method's URI
    NOTE: I have also posted this in the Flash Media Server forum
    as I was unsure where this question best fit.

    Glad that you figured it out. Here are a couple of things
    that could help in the future. It would have helped if you had
    posted the code you were using. Somebody would probably have seen
    something like that right off.
    The other thing is that it is helpful if you don't edit
    posts, but rather make a new one. Folks who use Newsreaders on the
    forum don't see the edits.

  • Invalid DataStore object name /BIC/B0005712

    Hi Frnds,
    I was trying to execute a PSA deletion step on one Datasource. In that process I got the below error.
    Error msg: Invalid DataStore object name /BIC/B0005712: Reason: No valid entry in table RSTS.
    Do, I need to maintain anything related to this Datasource in the table RSTS. if so....what it could be ?
    Or Do we have any other solution ?
    Thank you.
    NGR.

    Hi,
    In my case,
    Inspite of going through several valid NOTES & program, my issue didnt resolve.
    I have resolved the issue by adjusting the PSA table for the same.
    Procedure:
    Take the psa name  --> go to table rstsods --> find the ODSNAME_TECH name for the relevant psa  --> se38 t.code --> enter ODSNAME_TECH and click on 'adjust & activate database table' (make sure you have selected 'save data' radio button.
    Just in case anyone who come across this problem, can do the above steps.
    Regards,
    Dubbu.

  • Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.
      intially i created view object named EmpByEmail.........for that EmpByEmail1 is created in datacontrols....i deleted EmpByEmail in demo.model by mistake and i created again with same name EmpBYEmail another view object...again another EmpByEmail2 is created in datacontrols.....
    while i am running i am getting following error:::::::
    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Hi,
        Please seasrch for the EmpByEmail1 file in ur project and remove all the details in the Page Def and UI and then try again.
    Due to the EmpByEmail1 existance in page Def this may occur . It may help , still if it was not working then I am sorry for that.

Maybe you are looking for

  • Replication of enhanced Sales Order to R3

    Hi, We have extended sales order on CRM using EEW. This has extended corresponding BDocs. Now when we create the order the additional fields are being replicated to mobile however we want to map them to 'Z' fields in R/3 as well. The R/3 sales order

  • Trouble detecting hi/low digital input modes.

    Hello, I am a relatively new user to LabVIEW 8.0 and I have the following problem. I am using an NI USB-6008.  I am working with instrumentation that has software controlled limit switches.  Before moving a stepper motor, I am attempting to check to

  • Unable to reply to web mai in firefox

    <i>Locking duplicate thread.<br>Please continue here: [[/questions/1055339]]</i> cannot reply to webmail in firefox though can in other browsers

  • Backup and Recovery Procedures for S&OP

    Hi Team, My customer is trying to evaluate S&OP and has the following quesitons around backup and recovery.  If you have any info on this, can you pl. share with me? What is the SLA on Cloud based system availability? How often does the backup happen

  • UCCX "Whisper" tone help

    Have 2-800's coming in to one group and they have to answer the phone differently for each number.  Wanted to do a whisper tone prior to call being dropped in?  IF not how do I change the caller ID the UCCX IVR ports send so it would say "Noah's" or