Error when saving the file

I am trying to create a new form with Adobe Live Cycle 8.0. I finished work on this form and now I need to save it. When I try to save it, it gives me the error:

"Unable to save the file.

Additional error information are in the range of report warnings tab.

First, where the palette of report? I'm new to this program... I can save it as a .tds but not Acrobat 8 static or Dynaic... Please help!

There may be an error in the form design /bindings... You can get the errors by visiting the palette however...

Check the attached picture.

Thank you

Srini

Tags: Adobe LiveCycle

Similar Questions

  • Error when saving the file cannot click to replace an old file

    I have a ploblem when I save my file, when you use older versions of mac os (max os x) when I save file and you want to replace the old file I just click in the file I want to replace and save, but when I update to macOS Sierra I can't do when I click on file it does not change the name and I have to type.

    This is for me a great void in the Sierra of Macos, it drives me crazy

  • HP Photosmart Premium C410A: error: an error occurred saving the file because it could not be written to. Check the properti

    I just upgraded to Mac OS 10.12 Sierra. Now my HP Photosmart Premium C410A apparently scans the document perfectly (I can see it on the screen of the computer when the scan is complete). However, he craps out when I try to save the document. Enforcement either abnormally is abandoned and firm, giving me this error pop up with ad nauseam screen computer jibberish, or I get the following error message: "error: an error occurred saving the file because it could not be written to." Check the properties of the file to ensure that it is not dead. »

    Scanning and saving documents are critical to my business. I just have to solve this ASAP. Looking for solutions. Any ideas?

    Hello

    It is incompatible with the Sierra of HP scanning.

    Applications > file HP travel HP Scan to the trash, then empty the trash.

    Download and install HP Easy Scan instead, it will be installed in the Applications folder:

    http://FTP.HP.com/pub/softlib/software12/HP_Quick_Start/OSX/installations/Essentials/HP-easy-scan-1_7_0.pkg

    Kind regards

    Shlomi

  • Error: "an error occurred saving the file because it could not be created" during the recording of digitized file

    Original title: I'm not able to save the scan through my HP Officejet 6210 all-in-one.

    I get this error message: an error occurred saving the file because it could not be created. What should I do? I used to be able to save documents in the form of files .pdf until recently when my computer has been infected by a virus, and someone helped clean up remotely.

    Hi ameerlakhani,
     
    Try to save the scanned in a different file format and check if it helps fix the problem.
    Follow the steps in this article and check if it helps.
     
    If this is not enough, post your request in the support forum HP for assistance.
    Visit the following link to do the same thing:
  • Error when parsing the file ' value of the 'src' attribute is not valid; must be a URI'.  ERROR (RSC-005) to "Hetgeheimfietsen.epub/OEBPS/toc.xhtml" (line 10, col 10): error while parsing the file ' "ol" element not allowed here; wait for the end-tag of t

    The members of the Forum kan help you

    Validation by using version 3.0.1 EPUB rules.

    ()https://github.com/IDPF/epubcheck( )

    December 9, 2015 15:27:33 THIS

    ---------------------------------------------------

    WARNING (OPF-007) to 'Hetgeheimfietsen.epub/OEBPS/content.opf' (line 2, column 227):

    Re-declaration of prefix reserved "rendition."

    ERROR (RSC-005) to "Hetgeheimfietsen.epub/OEBPS/toc.xhtml" (line 10, col 10):

    Error when parsing the file ' "ol" element not allowed here; waiting for the end-tag of the element or element "li" '.

    WARNING (CSS-007) to "Hetgeheimfietsen.epub/OEBPS/css/idGeneratedStyles_0.css" (line 60, col 2):

    Police made OEBPS/font/CambriaMath.ttc refers to fonts not standard type application/x-police-FTT.

    WARNING (PKG-012) to "Hetgeheimfietsen.epub/OEBPS/De_Alpe_d'Huez-1.xhtml":

    File name contains following non ascii characters: '. You want to change the name of the file.

    WARNING (PKG-012) to "Hetgeheimfietsen.epub/OEBPS/De_Alpe_d'Huez-2.xhtml":

    File name contains following non ascii characters: '. You want to change the name of the file.

    Check the finish with warnings or errors!

    In the file Toc delete the second "ol", as well as closing like Epubcheck duplicate codes

        the one after the other (delete the other)

    1. Error when saving a file html or css

      Hello

      Whenever I try to make a new file or saving a file to save or save all that I see this message:

      An error occurred trying to save the file C: / / code to program files/Adobe/Adobe preview 3/samples/root/get started/index.html. the permissions do not allow changes.

      Im working on a Win 7 machine.

      Roelof

      I had some problem before on the file/folder, I restarted my computer and everything was back to normal. Thank you

    2. loadjava error when opening the file:-fix java.io.FileNotFound of Exception

      Dear,
      I have Oracle 11 GR 2 on Windows 2008r2. I have a very strange question while trying to load ordinary Java source. I get the error that loadjava cannot open the file. I use the following command to load:
      %ORACLE_HOME%\dbhome_1\BIN\loadjava -thin -user ORAMQ/***@localhost:1521:DEVAR -verbose -fileout %C:\temp\loadjava-9-MQReasonCodeResolver.java.log C:\src\MQReasonCodeResolver.java –resolve
      -----

      I got the following error in the file details:
      arguments: '-user' 'ORAMQ/***@localhost:1521:DEVAR' '-thin' '-verbose' '-fileout' 'C:\temp\loadjava-9-MQReasonCodeResolver.java.log' 'C:\src\MQReasonCodeResolver.java' '–resolve' 
      creating : source MQReasonCodeResolver
      loading  : source MQReasonCodeResolver
      Error while opening file: –resolve
          Exception java.io.FileNotFoundException: –resolve (The system cannot find the file specified)
      creating :  –resolve
      The following operations failed
           –resolve: opening file
      -----
      The code is very simple and has no problem:
      import java.lang.reflect.Field;
      
      public class MQReasonCodeResolver
      {
          public MQReasonCodeResolver()
          {
          }
      
          public static final String MQ_EXCEPTION_CLASS = "com.ibm.mq.MQException";
      
          public static final String RC_FIELD_PREFIX = "MQRC_";
      
          public static final String RC_VALUE_FIELD = "reasonCode";
      
          public static String resolve( Exception mqex )
          {
              if ( !canResolve( mqex ) )
                  return mqex.getClass().toString() + mqex.getMessage();
      
              Class class1 = mqex.getClass();
              try
              {
                  Field field = class1.getField( RC_VALUE_FIELD );
                  Object key = field.get( mqex );
                  Field[] fields = class1.getFields();
                  for ( int i = 0; i < fields.length; i++ )
                  {
                      Field ff = fields;
      String name = ff.getName();
      if ( name.startsWith( RC_FIELD_PREFIX ) && ff.get( null ).equals( key ) )
      {
      return mqex.getMessage() + " " + name;
      }
      }
      }
      catch ( Exception ex )
      {
      }
      return "unknown";
      }

      public static boolean canResolve( Exception exx )
      {
      Class class1 = exx.getClass();
      while ( Exception.class.isAssignableFrom( class1 ) )
      {
      if ( MQ_EXCEPTION_CLASS.equals( class1.getName() ) )
      return true;
      class1 = class1.getSuperclass();
      }
      return false;
      }

      }
      I load other classes and no issue, even jar files, I don't know what is the problem with this file? Also, it is strange is creating class and loading it has no issue, but the issue comes when resolve.
      
      Can anyone help?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

      Hello:
      Put your - solve the flag at the beginning of the argument list.
      Last arguments should be files to download by loadjava.
      Best regards, Marcelo.

    3. Dreamweaver cs 5.5 does not not when saving the file.

      Dear Comunnity

      Kindly help if anyone knows

      Recently reinstalled Adobe Dreamweaver CS 5.5 and started having problems.

      When I work with Dreamweaver, and save the file, * .html, .php, *.css and etc. It just stop responding and I can't do anything, the Task Manager doesn't help not, cannot turn off the pc, it shows just "shutting down" and... nothing, only the power button helps me.

      It deletes the files that I am tring to save and creates * file *.tmp with code that were inside. And the problem that happens randomly, once I start and it does not respond within 2 stops, next time he responds simply does not after a whole day of work.

      Never had anything like this before.

      If anyone knows, looking forward for your support.

      Thank you!

      Try this-

      http://forums.Adobe.com/thread/494811

    4. How know default ACM in my PC put in correspondence with another Podcast software for saving the file

      Hello

      I have a problem with the Windows ACM codecs as follows:

      I had bought a podcasting software and used perfectly for 1 year.  Now I can't use it to save the recorded files. I reported the error to this company for help. They asked me to download a tester and submit a report of my information system. Then, they advised me to download a LAME encoder file to add in the current software, but it does not help that the problem persists.  I found that when saving the file, the codecs of Windows ACM Deault I used to save before recorded files is not available.

      So please advise something wrong in my Windows Media Player and that I need to do to fix?

      Very much appreciated.

      Phan Phuong

      Phan chk this

      http://www.Microsoft.com/WinME/0506/24231/technet_fy06.XML

      or bing it

      http://www.bing.com/search?q=podcast+software+for+TechNet&form=IE8SRC

    5. CS6: could not complete your request because of a program error when saving a PSD file.

      Hello

      Currently an error when saving a PSD file.

      Any help to solve this problem?

      Thank you so much ~

      Hi KOGHelpdesk,

      Try to restore Photoshop preferences to default.

      Steps to follow:

      To re-create the Photoshop preferences files, start the application while pressing Ctrl + Alt + Shift (Windows) or command + Option + shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop settings file?"

      Let us know if that helps.

      Kind regards

      ~ Mohit

    6. Why when saving a file already existing AI cs6 is acting like I am registering for the first time?

      Why when saving a file already existing AI cs6 is acting like I am registering for the first time? Assume that the file is called file.ai - when I'm working on that and go: Cmmand record - he said: ' replace file1.ai? I don't want to replace - simply record. What happens to me every few weeks in artificial intelligence. And it is a file that was NOT an older file - as I posted this Q once first before - and got no answer. Someone suggested that it might be that my file was from an older file. But no - this file is completely new. Work on it for a few days. Thank you very much!

      Applications > utilities > disk utility > repair permissions

    7. "Access denied" error when saving files in Photoshop

      access denied for saving the file, changed writing and reading on my Mac, access cannot save file on the desktop. What's new?

      Hi robh,.

      When you try to save files?

      have changed, write and a read access to my Mac.

      Make sure that you have added your user name to the list of users manually.

      > Expand sharing and permissions.

      > Please click on the Lock.

      > It will ask you to type the password to unlock .

      > Click on the drop-down list before the respective of your user name and select read & write.

      > Alternatively, you can change the permission for everyone.

      > One when you're done, click the gear icon and then select apply to included items

      > Restart Lightroom and try exporting it now.

      For more information on how to set the permission, please follow the link below.

      OS X Yosemite: set permissions for items on your Mac

      Please let us know if that helps.

      ~ Assani

    8. Hello. I explained the following error in InDesign. When you open a file that is stored on a server, I get an error message because the file is already open, or don't have sufficient permissions. If I copy to the desktop and open it, I have no p

      Hello. I explained the following error in InDesign. When you open a file that is stored on a server, I get an error message because the file is already open, or don't have sufficient permissions. If I copy to the desktop and open it, I have no problem. Can someone help me? Thank you.

      Is there a file .idlk remaining on the server which is not removed properly?

    9. Installation of the Photoshot 13 elements. error message: "this is a problem when extracting the files. Check the amount of space available on your computer and the rights to write to the destination folder. I have 1.38 TB of free space and total control

      I try to install photoshop elements 13, that I bought and downloaded from Amazon. When I try to install it I get the following error message: "this is a problem when extracting the files. Check the amount of space available on your computer and the rights to write to the destination folder. I administrar 1.38 TB of free space and total control.

      Charles please do not remove the installation files in the Program Files directory.  I recommend to extract the installation to your downloads folder or your desktop files.  Once installation files are extracted, you can then run the installation program to install Photoshop elements 13.

    10. 'Error 109' in the file returned by customer

      My workflow uses FM10 and Acrobat Pro to create .pdfs for shipment to customers. Just got a "phone call from someone who says that it cannot open the .pdfs, even if he has been using for a while. Acrobat X Pro brings to the top of the list of bookmarks, and then displays the message "there was an error processing this page. There was a problem reading this document (109). »

      No idea where the problem lies and what to do about it? I suspect that maybe it's the corruption of files at the end of the customer, but I would welcome confirmation before I said so!

      Hi Niels,

      Chances are, if you see some 109 error when opening a PDF file, the file is corrupted. If you have downloaded the file, try to download it again. If you have created the file yourself, try to create again from the original source. Maybe it's all you need to do to solve this problem.

      On the other hand, there can be nothing wrong with the file itself, but your PDF reader maybe ill have to make sense to:

      • If you try to view the PDF file in your browser, save the file to your desktop, and then try to open it with the standalone Acrobat Reader software. Sometimes the browser plugins can not handle large PDF files or complex, or third-party software has corrupted the browser plugin, making it useless.
      • You can have a newer PDF file and an older version of Acrobat / Reader. Try to update your version of Acrobat / Reader. This can solve many problems, including safety issues that still exist in older versions of the Acrobat software.
      • You can also try saving the file as .ps file and then convert back to pdf and check.

      Kind regards

      Rave

    Maybe you are looking for