Problem with creat PDF in adminui.

Hi,
   I have just install live cycle Pdf generator. installation log shows installation is successful.I have configure The things which I had to do,like installing
   windows office(2007),acrobat reader,change UAC.
now  when I want to convert some word document(.doc) to pdf ,It fails to convert,It shows the following messege:
Error Code:1000
Error Message:
Error message from the primary converter:
ALC-PDG-001-000-Conversion of the input file failed because of an exception.
An unexpected exception while resolving a new connection to an Adobe Service.
Error message from the fallback converter:
ALC-PDG-011-030-Submitted OpenOffice Document could not be converted to PDF. Either OpenOffice is not installed on this system or environment variable OpenOffice_PATH is not set to correct path. Please set OpenOffice_PATH environment variable to the <OpenOffice_Installation_Dir> on the server (e.g C:\Program Files\OpenOffice.org 3.0) and then restart the server.
can any body trace the problem ? what I have to do to get successful convertion?
Thanking you.
Barun Barik

I think you can try to disselect the "Try OpenOffice as fallback converter" in the
Home > Services >LiveCycle PDF Generator ES2 > File Type Settings > Edit File Type Setting:
Microsoft Word
Of cause the standard and the defaults in the LC can not be modified directly , you can modify one of them and save it as you need , then disselect the "Try OpenOffice as fallback converter" , and the same setting for other microsoft office types , then try again .
Good luck with you !

Similar Messages

  • Problem with creating pdf from Microsoft Publisher 2013

    We are having problems in creating pdfs from Microsoft Publisher2010- When the function 'Adobe PDF' is selected and 'Print' is clicked on nothing happens. The progress bar just sits there for several minutes without creating a pdf. We have to click on cancel and when this is done this crashes Microsft Publisher.
    I have repaired this using the repair facility in Acrobat 9. I have also uninstalled Acrobat 9 and reinstalled this.
    I have also uninstalled Adobe Reader XI and reinstalled Adobe Reader 9.
    Before uninstalling Acrobat I also ran the updates but this didnt help either.
    This is on a Windows 7 PC (64-bit)
    Adobe Acroabt 9 Pro Extended
    Microsoft Publisher 2010.
    Any help is appreciated.
    Thanks

    MS Publisher 2010 is not supported by the Acrobat 9 Family; and the PDFMaker extension for Publisher has been removed completely from the Acrobat XI Family, so upgrading won't help either. Sorry!
    See http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html#main_ PDFMaker_compatible_applications

  • Problem with Create PDF and linked data

    Using Acrobat X standard.
    I have a Word 2010 doc with links to Visio and Excel data. 
    When using the CreatePDF option from Word, I consistently get a prompt asking whether I want to update the linked data before creating pdf.  I would like to either (1) turn this prompt off or (2) -- less preferable -- have the linked data always update without prompting.
    Is thre a setting that would accomplish one of these two solutions?
    Thanks,
    Craig
    PS.  All settings in Word have been set such that data IS NOT updated when printing on a regular printer.

    You can print to Adobe PDF.

  • Login problems with create pdf,share and my files

    Hello ,
    When I currently go to www.acrobat.com on my windows xp
    computer and try to go to one of the create pdf,share and my files
    and click on begin I get a message saying sorry this service is
    temporary unavailable but when I click on learn more it says all
    service are up and runing. Does anyone know what is wrong and if
    the service is down when will it be fixed.?

    Hi Sue!
    This seems like a separate issue you're running into. It is
    good that you can get logged in, but odd that you're only seeing
    partial functionality in your user.
    How many files are missing? Is this affecting certain file
    types?
    Did you ever see files in your My Files section?
    How long have they been unavailable/missing?
    When uploaded, did they complete making it through the
    scanning process?
    Can you see files in your Buzzword organizer? (which is a
    different section than your My files organizer)
    Create new documents?
    It would be good to get another browser as a comparison test
    here as well, to see if there is any different behavior!
    It could be firewall related, but what you could do is maybe
    try logging into your account from another person's computer for a
    moment, to see if the files are visible there?
    Otherwise, the test from home, or laptop at a coffee shop,
    would be another good test!
    Get back to us with some of these questions answered, and
    we'll see about getting you up and running!
    Cheers,
    Pete

  • Problem with creating PDF

    Hi,
    I used iText-2.1.7.jar in my java program below.
    No problem on build.
    But when i deploy and run, it gets error below
    java.lang.NoClassDefFoundError: com/lowagie/text/Phrase
    How can i solve this problem?
    Thanks.
    Code
    import java.awt.Color;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.Element;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.pdf.PdfPCell;
    import com.lowagie.text.pdf.PdfPTable;
    import com.lowagie.text.pdf.PdfWriter;
      public void CreatePDF( )
        //@@begin MusteriBazindaPDFolustur()
              //        Assume the below is the input file format
              String input =
                   "100,Anakin Skywalker,EAS,ConsultantEND200,Darth Vader,Java,Sr. ProgrammerEND300,Obi-Wan Kenobi,MSTechnologies,Project ManagerEND";
              // creation of a document-object
              Document document = new Document();
              try {
                   // create a writer
                   PdfWriter.getInstance(
                   // that listens to the document
                   document,
                   // and directs a PDF-stream to a file
                   new FileOutputStream("output.pdf"));
                   // open the document
                   document.open();
                   // add a table to the document
                   PdfPTable table = new PdfPTable(4);
                   PdfPCell cell =
                        new PdfPCell(
                             new Paragraph("Employee Details for XYZ Organization"));
                   cell.setColspan(4);
                   cell.setBackgroundColor(Color.red);
                   cell.setHorizontalAlignment(Element.ALIGN_CENTER);
                   table.addCell(cell);
                   //Set Header Text for the Table
                   cell = new PdfPCell(new Paragraph("EMP NO"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   cell = new PdfPCell(new Paragraph("NAME"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   cell = new PdfPCell(new Paragraph("DEPARTMENT"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   cell = new PdfPCell(new Paragraph("DESIGNATION"));
                   cell.setBackgroundColor(Color.blue);
                   table.addCell(cell);
                   //Fill data to the table                      
                   String inputArray[] = input.split("END");
                   for (int i = 0; i < inputArray.length; i++) {
                        String fieldValuesArray[] = inputArray<i>.split(",");
                        for (int j = 0; j < fieldValuesArray.length; j++) {
                             table.addCell(fieldValuesArray[j].toString());
                   document.add(table);
              }catch (Exception ioe) {
                   System.err.println(ioe.getMessage());
              // close the document
              document.close();
        //@@end

    I asked with clearly again.
    Therefore i cancelled this question

  • Problem with creating PDF in Photoshop, or Acrobat Output Preview

    I saved a PDF in Photoshop and Acrobat's output preview the text was black in 4 colors and Rip did not have this problem. Why?

    You have gone a while without a reply here, so I'll bump your post at least, but it is not clear from your question exactly what your problem is.
    'Black in four colors'   I don't understand this statement.  Black is black and does not have colours.
    'Rip'  I don't know what you mean by Rip.
    One tghing that comes to mind is that if you have exported a large layered document to PDF and that document had vectored objects like Type layers, whenn you view the PDF file you might initially see those vectored objects in black while the system is catching up and rendering the type layers etc.  In that case, just waiting will see it corrected, but a 3550 x 8800 pixel banner file I delivered to a printer recently, took ages to render on the printer's slow system.
    If you expand on your problem, I amn sure someone will try and help.

  • Serial no. invalid problem and problem with creating PDF file using adobe acrobat x pro

    I tried to download adobe X pro on my new computer and entered the serial No, bu the program said the number is invalid. Actually the number is valid, confirmed by the info listed in my account. please help! also I downloaded the trial version now, but when I use it, the file it created is not shown as adobe file, but as firefox HTML file. I don't know why. please help!

    Error "The serial number is not valid for this product" | Creative Suite

  • Problem with creating/viewing PDF's from InDesign CS3

    I have a problem with our PDF workflow and just cannot seem to resolve it.
    The problem is as follows: My coworker and I (both designers running CS3 on iMac's running 10.5.6 Leopard) work daily on producing documents and graphic layouts.
    Internally we can view and print PDF documents we create just fine with no troubles with the exception of our supervisor, who is running a mac with Tiger operating system. Our office environment is both Mac and PC. On may occasions he cannot print PDF's we create. Many times his prints will contain garbled characters, drop italics and formatting, replace fonts, or just print slowly.
    This problem is also happening to our editor who is offsite. This is a fairly serious problem for her, considering her job relies heavily on being able to view and open PDF files we create. She was able to send a PDF file which shows the garbled mess her printer spit out when she printed. Apparently there were pages upon pages of messy garbled text. When documents do print from her, they are usually very slow in printing, taking up to a minute or more to print each page.
    The sample of what she sent me is attached, and can also be found on my MobileMe iDisk at: http://public.me.com/rlcollier (document entitled Print Results.PDF)
    My question really to the community is obviously what might be causing these problems. Its very frustrating not being able to determine if its something we're doing ourselves thats causing some incompatability or corruption in these files, or if its the users systems themselves. I can say that Debra our editor has can have a garbled mess of a 4 page file from us, and then turn around and print a graphic heavy 90 page PDF with ease from Boeing. Our PDF's seem to be the only ones she struggles with. That being said, my inclination is that its something on our end.
    Any ideas of where to start looking? Any help at all would be greatly appreciated and welcomed. Thanks!

    I currently had our editor test printing of some of our files using both Foxit and Adobe Reader (as was suggested) in order to see if either made a difference in her printing ability and here is what she came back with:
    I tried to print out both these pdfs (David's is the one you reworked and Lisa's HESSM-3, both sent yesterday).
    With Adobe:  David's first page printed quickly, but it had errors (part of his pants didn't print, and there's an arbitrary shaded box in the text).  Page 2 didn't print--every time I tried it had a different "offending command" code.  Printing Lisa's HESSM  made it up to page 7 before problems showed up (stock photo only partially printed), and it stopped on page 8 (with the random "offending command" code).
    With Foxit:  Both David's and the HESSM pdfs printed completely and without error...but it took a long time.   David's 2 pages took about 3 to 4 minutes, and HESSM's 16 pages took close to 20 minutes.  The time is in the transfer of data to the printer; the physical printing  goes pretty quickly.
    I cant say that I believe email is the problem, although I cant rule it out. I've tested emailing vs. passing through our workgroup with my supervisor, and it does not make any difference in his ability (or lack of ability) to print our files. He was able to print to a different printer (an HP 4650 as opposed to a 4100) without troubles. He refuses to believe its a printer problem however because PDF files originating from our office are the only ones he has trouble with. Never has he had any trouble with a single PDF file produced from any other source. This is also the case for our editor who only has trouble with PDF files originating from either mine, or my coworkers systems.
    PS: I've attached both files that were referenced by our editor above for viewing/testing.

  • Problem in creating PDF with InDesign CS5.5

    Problem in creating PDF with InDesign CS5.5:
    exporting a file in pdf, setting "Press Quality" or "PDF/X-1a: 2001" and selecting "Crop Marks" and the surplus of xx mm, the elements contained in the MASTER page move from the original position or disappear at random.
    Can you help me, please?
    Thanks a lot.

    Try Remove minor corruption by exporting

  • Problem with downloading PDFs

    I have just downloaded a new version of Adobe Reader X 10.1.2 but can't download PDFs such as my electricity bill and t.v. licence

    Thanks for your help.  I’ve now sorted it via help from the site where I was trying to download the PDF from.  The following action solved the problem:
    ·        Click on 'Tools' then 'Internet Option'
    ·        Click 'Advanced'
    ·        Scroll down to Security
    ·        Uncheck 'Do Not Save Encrypted Pages to Disk'
    ·        Click 'Apply'
    ·        Click 'OK'
    Re: problem with downloading PDFs
    created by MichaelKazlow <http://forums.adobe.com/people/MichaelKazlow>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/4228358#4228358

  • I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    Apple ID FAQ   http://support.apple.com/kb/HE37

  • Problem with preview PDF files on Windows 7 32bit

    Hello,
    in my office I have a problem with preview PDF files on my computers. The files are allright, but if I select a file and click on preview mode after ~ 10sec operation system write something "Preview this file is corrupt for PDF Preview Handler wrong". On other 64bit computers with same programs the preview is work. I try uninstall all Adobe soft (Reader, Flash), clean all Adobe data from folders in root and in register, but it is not solve this problem. On Microsoft forums wrote me, that the problem is probably with AR plugin.
    So, can someone help me?
    Config PC:
    Windows 7 32/64bit Pro
    Intel i3, 4GB
    Adobe Reader 11.0.5
    Adobe Flash Player 15 ActiveX
    Adobe Flash Player 15 plugin
    Preview Handler Surrogate Host ver.: 6.1.7601.17514
    Thank you for help.

    I think I figured it out after reading other forums. Thanks!

  • Problem with printing pdf file

    hello,
    lately i have problem with printing pdf file:
    i click on the print button and the respod is very slow
    it takes more than a minute till the print window apears.
    i tryied to install version X but it's the same, the problem exist only when printing via adobe reader,
    other programs i'd working much faster.
    please advice,
    thank you

    No, it is not set to overprint. Also, I have to add that the printing results were not consistent. Sometimes it covered and sometimes it did not.

  • I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server wher

    I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server where the PDFs open fine) I get an error 'There was an error processing a page. Invalid function resource' The other one just doesn't open at all. Can anyone help with this please?

    Hello,
    Are the pdf linked correctly in the website? Is this a public website? If yes, please post the link here.
    ~Deepak

  • Problem with create universe on Business Objects XI 3.1 base on SAP Query

    Hello,
    I have a problem with create universe on Business Objects XI 3.1 base on SAP Query.
    The problem is hierarchy. Massage on Busines Objects is :
       OWBS_ELEMT__ISTKOSZT(cube ICPC01/BEX_ICOC01):Exception condition  "HIERARCHY NOT FOUND" raised.(WIS 10901) 
    Query in BEX run OK.
    Best regards.
    Ela.

    Hello,
    Thanks for response.
    When I run BEX QUERY, all works OK.
    All hierarchies was created and activated  on system BW.
    This situation appears after upgrade BW to SAP NetWeaver 7.3.
    Before upgrade I created universe without any problems.
    Regards Ela

Maybe you are looking for

  • Tie Machine  no longer backs up after lion install

    After Lion install, Time Machine no longer backs up-will start to back up but freezes after a few kb's-spinning clock will spin 24/7 but backup is stalled

  • Help me choose a Mac

    This will be my first Mac purchase. I'll be using the Mac for my "mini" home studio. Its nothing impressive, just a drum machine, a turntable, a keyboard, and an alesis io 26 interface with Cubase 4 and a couple other audio/editing programs running.

  • Hi,Thanks for your answers... could u please tell me if we have interfaces

    Hi... Thanks for you answers... Could u please tell me if we have interfaces,then how to find their technical names? its urjent issue. Please reply fast.. thank you, Regards, Rekha....

  • How to position all alert messages in a particular position?

    Hi All,         I have developed a Application where it contains so many Alert Messages and i want display All Alert messages in a particular position of respected screen. I have tried the following code but it works for individual alert messages. I

  • "Command Line Here" in Finder

    In Windows Explorer, I can right click a folder and click "Command Line Here" to launch the command prompt at that path. Is this doable in Leopard? Thanks.