Cannot open the pdf/videos in my Linux, Adobe Reader 9. It fires an error...

Cannot open the pdf/videos in my Linux, Adobe Reader 9. It fires an error...
"A 3D data parsing error has occurred"
By any chance have someone help me with this issue?  Thanks!

thanks Jono But I cannot see any option to set Target Version.
the options I have are XDP Preview format and PDF Render Format which are set to Acrobat 7 static PDF form.
I have set a permissions password on the form using Acrobat 8 and under Password security settings , I have set the compatibility as Acrobat 5.0 or later. However, When I look at the form properties by opening the same form in LiveCycle, the compatibility still shows Acrobat 8 static PDF form.
How do I get this form to be opened by users in Adobe 7?
Appreciate your quick response.

Similar Messages

  • Adobe Reader 11.0.6 for Maverick cannot open the pdfs it has just created.

    Why will Adobe Reader 11.0.6 for Maverick cannot open the pdfs it has just created.

    Mac HD/Library/Internet Plug-ins
    Trash the AdobePDFViewer.plugin and AdobePDFViewerNPAPI.plugin files
    Mac HD/Applications
    Trash the Adobe Reader app
    [user]/Library/Preferences
    Trash the com.adobe.Reader.plist file
    To access the [user]/Library, hold the "Option" key and click "Go" from the FInder menu.
    Mac HD/Library/Application Support/Adobe
    Trash the Reader folder (the whole folder)
    Empty the Trash.
    Download the FULL installer here: http://get.adobe.com/reader/enterprise/
    Quit your browser and reinstall Reader.
    Launch it from the Applications folder and accept the license agreement.
    You should have no problems downloading PDFs with Safari.
    Unfortunately, ANY PDF that says it's damaged.... is. You'll have to trash them.

  • Please help i cannot open the pdf files of cic.gc.ca

    please help i cannot open the pdf files of cic.gc.ca

    Hi ooovvvaaaiiisss12345.
    Are you trying to view the pdf's from the browser are after downloading it and viewing via Reader.
    Please let me know the OS and browser you are using.
    Are you able to view the pdf's on other websites?
    Let me know what errors you get while viewing the pdf's

  • Cannot open the pdf when using the xml publisher to generate rtf report

    Hello Everyone,
    I followed the below link to generate a pdf using xml publisher in OAF.
    http://apps2fusion.com/at/ps/260-integrating-xml-publisher-and-oa-framework
    When i try to save the pdf and open it, i get the below error:
    Adobe Reader could not open the pdf because it is either not a supported file type or because the file has been damaged(for example, it was sent as an email attachment and wasn't correctly decoded).
    Below is the code in CO.
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am= (OAApplicationModule)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/pdf");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    // System.out.println(outputStream.toString());//Testing the output by printing the contents in the outputstream.
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    // System.out.println("language is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage());
    // System.out.println("country is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().geCountry());
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    // APP_NAME,
    "PER",
    // TEMPLATE_CODE,
    "Emp_Template",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    "English",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    "United States",
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    pdfFile.flush();
    pdfFile.close();
    catch(Exception e)
    response.setContentType("application/pdf");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(false);
    Any suggestions on this would be great!
    Thanks
    Kumar

    Below is the code. Can you change so that that the output can be seen in HTML? I checked the language, country etc and they are fine.
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am= (OAApplicationModule)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=PrintPage.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/pdf");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    // xmlNode.print(outputStream);
    // System.out.println(outputStream.toString());//Testing the output by printing the contents in the outputstream.
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    // System.out.println("language is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage());
    // System.out.println("country is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().geCountry());
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    // APP_NAME,
    "PER",
    // TEMPLATE_CODE,
    "Emp_Template",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    "en",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    "US",
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    pdfFile.flush();
    pdfFile.close();
    catch(Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(true);
    Thanks

  • I cannot  open the pdf document

    i downloaded adobe reader  x for windows  ,but cannot open the document

    What happens when you open Reader?
    What version of Windows are you using?

  • I cannot open any pdf files from internet with this reader.

    I cannot open any pdf files with this reader, please advise.

    What is your operating system?  What is your browser?  What is your Reader version?  What exactly means "cannot"?

  • Open all PDF using Preview instead of Adobe Reader

    I recently install Adobe Reader and now all files are opening with Adobe Reader instead of Preview. I want to change the default to Preview for all PDF files. I did choose open with option key down... so that I can select open with... and then chose the option "always open with...". However this only changes the default application for the single file I chose and not to ALL PDF files. When I try to open any random PDF file, it defaults to Adobe Reader, even AFTER I selected "always open with... Preview" on a difference file. Any ideas on how I can make sure the Preview opens for ALL PDF files as default?
    Thanks,
    Orlando - Chicago, IL

    Have you made the change in the get info window? Control click on a PDF and choose get info. Scroll down to change all and click on that:

  • Can I delete the PDF file's content in Adobe Reader plug-in?

    I create a plug-in for Adobe Reader, when I open the PDF file, can I delete the PDF file's content in the plug-in?

    The people here are visitors who might have knowledge and might choose to share it, if they have the time, and feel like answering a question. Your questions, instead, suggest that you think it is someone's job here to answer your questions. If you want it to be someone's job, you should raise a support case. This too will require patience.
    You will not welcome this advice, I am sure, but it is well not to try to use your own deadline to try to make other people feel the problem is more urgent to them.

  • I cannot open any pdf files that are saved to my computer. Keep getting error 507:507

    Every time I try to open a pdf file from a website or through an email it will not let me opne the file. I can open files that are saved to my computer but that doesn't do me much good in some scenarios. I run IE 10 on Windows 7 Home with Adobe Reader XI 11.0.04. I have tried unsinstalling and reinstalling. It works fine for a few days then the errors start again. HELP!

    Thank you Pat!!!
    Craig Ekonomos
    [email address removed]

  • Cannot open portfolio PDF in IE after upgrading from Reader 10.1.4 to 10.1.5

    We recently updgraded Reader from 10.1.4 to 10.1.5.  Any PDF document that contains a portfolio will no longer open in IE.   The portfolio pdf document will open correctly from within Adobe Reader.  Also all other pdf documents, execpt portfolio pdf documents, will open correctly in IE. 
    Please let me know if you have any suggestions on how to troubleshoot this issue.

    To view Portfolio in IE you need a separate Flash player plugin which you can download from the following link:
    http://get.adobe.com/flashplayer/otherversions/
    Step1: Select your target OS
    Step: Select Flash player for IE
    Once you have installed the same, please restart your browser.
    Hope this helps,
    hit.anand

  • Unable to open any PDF document in Windream using Adobe Reader (11.0.9)

    Our company uses a document management system for storing and archiving important documents. Since updating to the latest version of Adobe Reader (11.0.9) last week, we are unable to open any PDF document using Adobe Reader. An AcroRd32.exe*32 process is launched, but the document will not open or display. Eventually we suffer a system crash. Opening any other PDF document (not stored in the archive management system) using Adobe Reader is fine. Documents can also be opened in the archive management system using Adobe Acrobat.

    Try disabling Protected Mode (see Pat's response here: Anyone having problems with the Acrobat Reader 11.0.9 update on Win7 X64?) and see if that helps...
    -Mike

  • Why can't I open up PDF's when I have Adobe Reader installed?

    Hello,
    I'm using Tiger and whenever I get to a website where I want to download a PDF or view it my computer won't let me. I get this wording that says it can't find a program to install even though I have Adobe Reader. I have Adobe Reader 7.0.8 and then I just installed Adobe Reader 9.
    Is there a way to fix this problem?

    ... whenever I get to a website where I want to download a PDF or view it my computer won't let me. I get this wording that says it can't find a program to install even though I have Adobe Reader
    Do you mean the browser won't let you download and that message appears in the browser or do you mean the message appears after you have downloaded and try to open the file?
    If the former have you tried Control-clicking the link in the browser to save the file to your HD?
    If the latter have you tried dropping the file onto the Reader (or Preview) icon?
    Can you open the Reader you have installed by double clicking its icon?

  • I cannot open the PDF file from the website that i normally open this website on Firefox, it's not working since i've changed to a new computer.

    Corrupted Content Error
    The page you are trying to view cannot be shown because an error in the data transmission was detected.
    The page you are trying to view cannot be shown because an error in the data transmission was detected.Please contact the website owners to inform them of this problem.

    Can you share some of those URLs from your carrier?

  • Can open the manufacturers web site, but cannot open the pdf's of manuals and tech info

    can't add much more. I can open other manufacturers sites and read those pdf's but

    i do all this work. but when i read that web script they read this type of script
    function context(){
    //This function takes care of Net 6 and IE.
    return false;
    and this side is developed in asp.jsp. in firefox it's not hatche data from server.so
    with source code change how i can run this site on Mozilla firefox 14.
    Please guide me for this problem

  • I am unable to open online pdf files. I have Adobe reader, and have reinstalled it, but to no avail

    When I click on a link to a pdf. a new window opens and then it says "Done" at the bottom, but the page is completely blank. This happens every time - I am never able to view them.

    Have you read this article: [[Opening PDF files within Firefox]]

Maybe you are looking for

  • Field Catalog in Free Goods Setup

    Hi Gurus, We are trying to set up Free Goods in CRM standalone. No condition type is replicated from R/3 and we have to set up everything from scratch in CRM. Under the IMG, Free goods, the first menu option is 'Field Catalog'. Could you please advis

  • Auto brightness not working in iOS 5.0.1

    Auto brightness on iPad 1 not working properly? Well known bug? Battery level is also terrible. Any ideas?

  • Recording iTunes into Logic Express

    Hi there, does anyone know if there is a way to use iTunes as a soundboard (playing sound effects) and rewire the audio into Logic? I produce a podcast and we'd like to use iTunes to play our theme music and sound effects live. Thanks Fausto Fernos F

  • How to call next page?

    new to scirpts, in my script display... i want to display the same values in the next page... with same settings.. how to do this?

  • Multiple IMAP emails in hub

    I've changed my Passport email from POP3 to IMAP (using a 1&1 uk account). If an email is delivered while I'm using Outlook on my laptop, it correctly appears once in my Outlook inbox but about 30 unread copies of it arrive in my hub on the passport.