PDF Files Cannot Be "viewed" Today

Yesterday and the day before I could "view" PDF internet files/forms - today I cannot. No problem using Firefox. My version of Adobe Reader is 7.0.8, also, have Adobe PDF Viewer plugin v 7.0.5. No changes have been made to my system. This is the web site I was using and the Window > Activity info.
http://www.irs.ustreas.gov/pub/irs-pdf/f1040.pdf
Activity: http://www.irs.ustreas.gov/pub/irs-pdf/f1040.pdf "Plug-in cancelled"
My iBook is OK..

Problem solved. Downloaded new Adobe Reader. Old Readed bad...

Similar Messages

  • PDF file cannot be viewed from OA Framework page.

    Hi all,
    I have developed an OA Framework page which shall present an XMLP report in pdf within the browser.
    When I click on my menu item which opens the oa page, the Open file.. diaglog appears. When I open or save the file (and thereafter opening if) the following error appears: _Acrobat could not open [filename] because it is either not a supported file type or because the file has been damaged._
    I can open the file if I go to the server and copies the output file to my own machine.
    The error that i'm describing is happening on the server and NOT in my development environment. I cannot get it to work at all on my own machine.
    Some facts:
    JDeveloper 9i RUP7
    XML Publisher 6.5.3
    APPS 11.5.10 CU2
    The code:
    package bksv.oracle.apps.bkfnd.bkrepgw.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.common.AppsContext;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.dataengine.Parameter;
    import oracle.apps.xdo.oa.util.DataTemplate;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import java.io.OutputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.FileInputStream;
    import java.util.Properties;
    import java.util.Calendar;
    import java.text.SimpleDateFormat;
    import com.sun.java.util.collections.ArrayList;
    import com.sun.java.util.collections.Iterator;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletOutputStream;
    import oracle.cabo.ui.data.DataObject;
    * Controller for ...
    public class ReportGenerationCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        String currentDateTime = ReportGenerationCO.now();
        String filename = "/home/appsamba/kkristoff/KKR_TEST_" + currentDateTime;
        //Get application context
        OAApplicationModule am = pageContext.getApplicationModule(webBean);
        AppsContext appsContext = ((OADBTransactionImpl)am.getOADBTransaction()).getAppsContext();
        DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
        HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
        // Set the Output Report File Name and Content Type
        String contentDisposition = "attachment;filename=" + filename + ".pdf";
        response.setHeader("Content-Disposition",contentDisposition);
        response.setContentType("application/pdf");
        //Initilization//   
        try {
          ServletOutputStream os = response.getOutputStream();
          DataTemplate dataTemplate = new DataTemplate(appsContext, "CS", "BKCSSR");
         //Get Parameters
        ArrayList parameters = dataTemplate.getParameters();
         //set Parameter Values as ArrayList of oracle.apps.xdo.dataengine.Parameter
          Iterator it = parameters.iterator();
          while (it.hasNext())
             Parameter p = (Parameter)it.next();
             if (p.getName().equals("P_INCIDENT_NUMBER")) {
              p.setValue("369");
             if (p.getName().equals("P_REPAIR_ORDER_NUMBER")) {
              p.setValue("");
             if (p.getName().equals("P_REPORT_NAME")) {
              p.setValue("Service Request Overview");
             if (p.getName().equals("P_SERVICE_TYPE")) {
              p.setValue("ALL");
         dataTemplate.setParameters(parameters);
          dataTemplate.setOutput(filename + ".xml");
          dataTemplate.processData();
          OutputStream outputStream = new FileOutputStream(filename + ".pdf");
          InputStream inputStream = new FileInputStream(filename + ".xml");
          Properties prop = new Properties();
          // Process template
         TemplateHelper.processTemplate(appsContext, // AppsContext
         "CS", // Application short name of the template
         "BKCSSR", // Template code of the template
         "en", // ISO language code of the template
         "00", // ISO territory code of the template
         inputStream, // XML data for the template
         TemplateHelper.OUTPUT_TYPE_PDF, // Output type of the procesed document
         prop, // Properties for the template processing
         outputStream); // OutputStream where the processed document goes.
          String sByteArray = outputStream.toString();
          byte[] outputBytes = sByteArray.getBytes();
          response.setContentLength(outputBytes.length);
          os.write(outputBytes, 0, outputBytes.length);
          os.flush();
          os.close();
        inputStream.close();
        outputStream.close();
         } catch (Exception e)
            //throw new OAException("An Error has occured master: " + e.getStackTrace().toString(), OAException.ERROR);
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
      public static final String DATE_FORMAT_NOW = "yyyy-MM-dd";
      public static String now() {
        Calendar cal = Calendar.getInstance();
        SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW);
        return sdf.format(cal.getTime());
    Thank you in advance.
    Regards
    Kenneth
    Edited by: Kenneth_ on 2010-07-30 12:58
    Edited by: Kenneth_ on 2010-07-30 13:33

    I have now found a solution to this problem. Thank god!
    See the code below.
    Thank you all for helping me getting this far.
    Kenneth
    package bksv.oracle.apps.bkfnd.bkrepgw.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;n
    import oracle.apps.fnd.common.AppsContext;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.dataengine.Parameter;
    import oracle.apps.xdo.oa.util.DataTemplate;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import java.io.OutputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.FileInputStream;
    import java.util.Properties;
    import java.util.Calendar;
    import java.text.SimpleDateFormat;
    import com.sun.java.util.collections.ArrayList;
    import com.sun.java.util.collections.Iterator;
    import java.io.ByteArrayOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletOutputStream;
    import oracle.cabo.ui.data.DataObject;
    * Controller for ...
    public class ReportGenerationCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        String currentDateTime = ReportGenerationCO.now();
        String filename = "/home/appsamba/kkristoff/KKR_TEST_" + currentDateTime;
        //Get application context
        OAApplicationModule am = pageContext.getApplicationModule(webBean);
        AppsContext appsContext = ((OADBTransactionImpl)am.getOADBTransaction()).getAppsContext();
        DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
        HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
        // Set the Output Report File Name and Content Type
        String contentDisposition = "attachment;filename=" + filename + ".pdf";
        response.setHeader("Content-Disposition",contentDisposition);
        response.setContentType("application/pdf");
        //Initilization//   
        try {
          ServletOutputStream os = response.getOutputStream();
          DataTemplate dataTemplate = new DataTemplate(appsContext, "CS", "BKCSSR");
         //Get Parameters
        ArrayList parameters = dataTemplate.getParameters();
         //set Parameter Values as ArrayList of oracle.apps.xdo.dataengine.Parameter
          Iterator it = parameters.iterator();
          while (it.hasNext())
             Parameter p = (Parameter)it.next();
             if (p.getName().equals("P_INCIDENT_NUMBER")) {
              p.setValue("369");
             if (p.getName().equals("P_REPAIR_ORDER_NUMBER")) {
              p.setValue("");
             if (p.getName().equals("P_REPORT_NAME")) {
              p.setValue("Service Request Overview");
             if (p.getName().equals("P_SERVICE_TYPE")) {
              p.setValue("ALL");
         dataTemplate.setParameters(parameters);
          dataTemplate.setOutput(filename + ".xml");
          dataTemplate.processData();
          //OutputStream outputStream = new FileOutputStream(filename + ".pdf");
          ByteArrayOutputStream localByteArrayOutputStream = new ByteArrayOutputStream();
          InputStream inputStream = new FileInputStream(filename + ".xml");
          Properties prop = new Properties();
          // Process template
         TemplateHelper.processTemplate(appsContext, // AppsContext
         "CS", // Application short name of the template
         "BKCSSR", // Template code of the template
         "en", // ISO language code of the template
         "00", // ISO territory code of the template
         inputStream, // XML data for the template
         TemplateHelper.OUTPUT_TYPE_PDF, // Output type of the procesed document
         prop, // Properties for the template processing
         localByteArrayOutputStream); // OutputStream where the processed document goes.
          byte[] b = localByteArrayOutputStream.toByteArray();
          response.setContentLength(b.length);
          os.write(b, 0, b.length);
          os.flush();
          os.close();
        inputStream.close();
        localByteArrayOutputStream.close();
         } catch (Exception e)
            //throw new OAException("An Error has occured master: " + e.getStackTrace().toString(), OAException.ERROR);
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
      public static final String DATE_FORMAT_NOW = "yyyy-MM-dd";
      public static String now() {
        Calendar cal = Calendar.getInstance();
        SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW);
        return sdf.format(cal.getTime());
    }

  • Busrting pdf file cannot be open with Adobe Reader

    OBIEE 10.1.3.4 on Linux redhat 5.2. Configured busting to local file system in BIP, with file format PDF and HTML. The bursting query used is select distinct today KEY,'2297-hen' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,'en-US' LOCALE,'HTML' OUTPUT_FORMAT,
    'FILE' DEL_CHANNEL,'/tmp/cmisout' PARAMETER1,
    'cmis_unmatched_'||to_char(sysdate,'yyyymmdd_hh24_miss') ||'.html' PARAMETER2
    from rpt2298
    union
    select distinct today KEY,'2297-hen' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,'en-US' LOCALE,'PDF' OUTPUT_FORMAT,
    'FILE' DEL_CHANNEL,'/tmp/cmisout' PARAMETER1,
    'cmis_unmatched_'||to_char(sysdate,'yyyymmdd_hh24_miss') ||'.pdf' PARAMETER2
    from rpt2298The job ran successfully and two files generated in the target location. While the html files is OK but the pdf file cannot be opened with Adobe Reader. Verified that my Adobe Read is ok to open pdf files from other sources.

    Do you have any password or encryption settings in your Runtime Properties?I do not think so, but not sure. Is there a way to check it? Is there a properties file.
    Did I misunderstood it? but I can place both PDF and HTML files to the target location, the HTML filess are good only PDF files cannot be open by Adobe Read.

  • Opening pdf file cannot complete command, not enough memory ram?

    while trying to open pdf file size of 117000 kb, photoshop CS6 cannot complete command, not enough ram memory.

    Yes, the pdf file can be viewed using Acrobat and AI.  But when opening in CS6, it show cannot complete the command, not enough enough memory.  I tried in edit menu>preference->performance -> Increase the Ram also cannot be open.

  • "This file cannot be viewed on mobile devices."

    Hi Acrobat.com,
    "This file cannot be viewed on mobile devices."
    I'm wondering why some of my files online aren't "viewable" with an iPhone (3Gs) and other files are readable.
    I noticed that files created (New) on Acrobat.com will not be displayed on the iPhone
    while files created on the workstation (Apple) work fine (on both platforms).
    Please, please, please, help me.
    PS: I searched the forum for an answer or similar post,
    without success. May be I din't use the right keywords ; - )

    Hi there,
    Thanks for posting; I'm sorry to hear that you're having trouble with the Acrobat.com mobile app. The error message that you're seeing (thanks for the screenshot here, very helpful) indicates that the file you're trying to open is not a PDF; the message will appear when you try to open a Buzzword document, for example, or some other filetype that can't be previewed on the iPhone app. We're doing our best to improve the quality of our mobile app, so keep the feedback coming - you can help us by suggesting your ideas for improvements or enhancements at our Ideas site:
    http://ideas.acrobat.com
    We get a lot of our inspiration from the ideas that users post there, so I encourage you to participate.
    Please let me know if you need any more information or assistance.
    Best regards,
    Rebecca

  • The PDF file and slideshow view corrupted using iPhoto. Macbook air only get corrupted slideshow and Mac Mini both slideshow and PDF file is corrupted.

    The PDF file and slideshow view corrupted using iPhoto. Macbook air only get corrupted slideshow and Mac Mini both slideshow and PDF file is corrupted.

    Saving as a PDF file for some users have been a problem.  If you boot into  Safe Mode and run iPhoto you can create undamaged PDF files.  We don't know why the problem but this is a workaround.
    This problem prevents many from ordering books, calendars and cards since iPhoto creates PDF file of them for uploading and printing.  Booting into Safe Mode lets them successfully order those items.

  • Some PDF files, cannot be opened by Preview version 6.0.1. The system ask me to upgrade the version and direct me to Adobe site

    Some PDF files, cannot be opened by Preview version 6.0.1. The system ask me to upgrade the version and direct me to Adobe site to install Adobe Reader

    Below a link to a file which is an application to canadian visist visa, you can find the link also in the folowing site:
    http://www.cic.gc.ca/english/information/applications/visa.asp.
    I ttried to open the PDF file form Web, and down loaded from web to my Mac, but in both attempts did not work, and I 've beem asked to upgrade to a later Adobe version from the site or from the PDF file.
    Application for Temporary Resident Visa [IMM 5257] (PDF, 338 KB)

  • Download PDF files instead of viewing them within Safari?

    I would like to automatically download PDF files instead of having to view them within Safari.
    I have disabled Acrobat as the default reader and now Safari has switched to using Preview. However, I cannot find a way to also disable Preview to allow the PDF file to be downloaded instead of displayed within a Safari window.
    Anyone have any ideas on how to do this seemingly simple task?

    It's amazing to me that simply asking Safari to default to auto download a PDF is so arcane. It's incredible that Apple doesn't have a Safari preference for this very simple action!
    The Terminal and Onyx methods recommended above are just ways of accessing a setting for Safari that Apple hasn't added to Safari Preferences. As I understand it, settings like this are built into Safari - they just aren't readily user-accessible. This is why programs like Onyx and Safari Enhancer exist, to open up "hidden" features and settings.
    I imagine Apple's developers debate these things, trying to decide what would be simpler to leave out to avoid complexity and what confusion (but allow third-party or Terminal methods to access) and which would be better added to the regular Preferences settings.
    Since this is a feature you'd like to see in Safari Preferences, I'd recommend submitting this as feedback to Apple.
    In the meantime, though, I'd consider it a good thing that there are built-in ways to get the setting that you prefer. Personally, I don't find the default settings such a hindrance. They're intended to help the "average" user (the new Mac user, the non-technical user, etc.) who wants a PDF file to just open, without having to understand how to work with it. For the more savvy user, there are multiple methods of downloading and/or opening PDFs. I'm rather like you - I prefer to download PDFs (in which case I use the Control-click method if I notice the link is to a PDF) or sometimes I allow the PDF to open in Safari, then Control-click on the open PDF and choose the option to open in Acrobat Reader. I find the latter method even smoother than downloading and then opening, in fact. If I decide it's a file I want to keep, I save it to my hard drive; otherwise I just close it.

  • Opening a PDF file in 100% view.

    I need to know how to change the view when opening up a PDF file.  Everytime I open a file it opens in 200% view.
    How do I get them to always open in 100% view?

    Every time I close and reopen Acrobat X my custom Page Layout and Zoom settings are reset to "Automatic."   The issue is how to save these settings so they remain, permanently, unless and until I change them. Clicking "OK" in the preferences box does not do the trick, at least for me.   I just want all documents to open at my preferred zoom setting.  This seems so elementary. I'm running WIndows 7 Professional.

  • PDF file doesn't view properly in firefox & favicon doesn't show in Safari

    I've got three issues I could use some advice with.
    1. I used some iFrame code generously posted by Oldtoad that allows a pdf file in an IFrame. It works beautifully in Safari. here's an example: http://web.mac.com/phelpssculpture/Site/resumeone_page_DavidPhelps.html
    but in Firefox it only opens as a dialog box asking what I want to do with the file (download, etc)
    Is there any way to make this view properly in Firefox?
    2. I've gone through the process to have a favicon in the address box (ico file uploaded with iTweak) and this views great with Firefox, but nothing in Safari (not sure about others) I've deleted the WebpageIcons.db file repeatedly, emptied cache, deleted all my bookmarks for the site, etc.
    Anyone know how to make this work in Safari?
    3. I recently updated my site (from iWeb 06) using iWeb 08 and published. A lot of search links got broken. I created a new sitemap (verified by google) and now, no matter what page a search refers to, when you click on it, only my home page opens. Did I do something wrong? It used to be that if a search pointed to a certain page, clicking that result took you directly to that page.
    Any suggestions for these problems would be greatly appreciated.
    Thank you, David

    Old Toad:
    I finally got it! the favicon works now at: http://web.me.com/phelpssculpture
    Your Instructions at:http://toadstutorials.info/ #22 did the trick.
    One problem I had with TextWrangle was I was doing a search and replace for <head><meta and it wasn't working. What I figured out was that there was other code on the line after <head><meta which was preventing the new code from working. I did a minor adjustment on each page in iWeb to force it to republish each page. That made the <head><meta line consistent on each page, then I selected the entire line and replaced it as per your instructions. It worked great. My experience was that iTweak did not process the code properly and was very slow, but this process was great.
    Thank you for all your help. Sincerely, David

  • PDF file on my view

    I want attach my PDF file on my web dynpro view
    I have read in this forum about my problem the using of IFrame element but don't work.
    Please help me, thanks

    I guess you could avoid such problems using mapping. Here's some example code, modified from an example:
    // Original code from 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
    // www.BruceEckel.com. See copyright notice in CopyRight.txt.
    import java.io.RandomAccessFile;
    import java.nio.MappedByteBuffer;
    import java.nio.channels.FileChannel;
    static int length = 0x8FFFFFF; // 128 Mb
    public static void mapThis (String file) throws Exception {
        MappedByteBuffer out = new RandomAccessFile(file, "rw")
            .getChannel().map(FileChannel.MapMode.READ_WRITE, 0, length);
        byte b;
        if(!out.isLoaded()) out.load();
         for (int i = 0; i < length; i++) {
             b = out.get(i);
             manipulate(b);
    As for Bertram's solution, couldn't get it to work properly in a dynamic use case - I'm getting the input stream from IResource, and I get a ClassCastException everytime I use something different from InputStream. With that problem comes another one: InputStream.read() consuming the first byte from the file, which is a problem when dealing with PDF and DOC files, for example. Since I know the users are opening PDF files, made a quick-and-dirty workaround by inserting manually the missing byte. Really dirty one, actually - the byte changes with the file format. Below is the code I used - it works, but I'd love to see a different workaround.
    public void openFile( )
        //@@begin openFile()
            //KM files are shown in a table
            //get index of selected table row
         int i = wdContext.nodeTableContent().getLeadSelection();
         //get the name of the according object (resource)
         String name = wdContext.nodeTableContent().getTableContentElementAt(i).getObjectName();
         String path = wdContext.currentContextElement().getPath();
         try {
         RID pathRID = RID.getRID(path"/"name);
         IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
         com.sap.security.api.IUser sapUser = wdClientUser.getSAPUser();
         IUser ep5User = WPUMFactory.getUserFactory().getEP5User(sapUser);
         IResourceContext resourceContext = new ResourceContext(ep5User);
         com.sapportals.wcm.repository.IResource resource = ResourceFactory.getInstance().getResource(pathRID, resourceContext);
         InputStream in = null;
         in = resource.getContent().getInputStream();
         int bSize = 10 * 1024;
         byte[] bArr = new byte[bSize];
         ByteArrayOutputStream baos = new ByteArrayOutputStream ();
         int offset = 0;
         int data;
         //dirty!
         String ext = name.substring(name.length()-3);
              if("pdf".equalsIgnoreCase(WDWebResourceType.getWebResourceTypeForFileExtension(ext).getFileExtension())) {
              byte b = '%';
              baos.write(b);     
         while ( (data=in.read(bArr)) != -1)
         baos.write(bArr);
         IWDAttributeInfo pdfAttributeInfo = wdContext.getNodeInfo().getAttribute(IPrivateKMBrowserAppCompView.IContextElement.PDF_RESOURCE);
         IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType) pdfAttributeInfo.getModifiableSimpleType();
         binaryType.setFileName(name);
            binaryType.setMimeType(WDWebResourceType.getWebResourceTypeForFileExtension(ext));
         wdContext.currentContextElement().setPDFResource(baos.toByteArray());
         } catch (Exception e) {
        //@@end

  • Some pdf files cannot be read by eReaders other than Acrobat

    I have several books in pdf format.  All, including the attached, read perfectly in Acrobat and all, except the attached, read perfectly in various eReaders.  The attached file, however, cannot be read by any reader other than Acrobat and cannot be imported into Calibre and converted to any other format.
    What is unique about this file?
    I can not find any way to attach the file.  Please post instructions.
    Using Windows 8, Adobe Reader X 10.1.8,

    You cannot attach PDF files to the forum, only images (e.g. screen shots) and not at all in an email reply.
    To share a PDF put it on acrobat.com, your own web site, or a file sharing site, and reply with the URL.
    What does Adobe Reader X say for Document Security (under File > Properties)? The SECURITY METHOD is the key information. You are quite correct that some PDF files use security methods which lock them to Acrobat.

  • PDF file cannot be previewed.

    I have uploaded one pdf file on acrobat.com to embed same pdf
    file in my website so visitor can see pdf file into browser.
    But after uploading pdf file, i m getting following message.
    "This file cannot be previewed. Please download it instead."
    How i can resolve this ?
    Your given reply/comments are much appreciated.
    Thanks in advance.
    GS
    Krish Inc.

    Hello GS/krishinc,
    What you're seeing is expected behavior, depending on what is
    inside the .pdf.
    PDF's have many different functionalities, and capabilities,
    and not all of them are available through the simple preview that
    acrobat.com's preview supplies.
    If your PDF has some features, or pages that the Acrobat.com
    simple preview doesn't support, then it will suggest you download
    the file.
    Options are to leave it as it is and have it as a
    downloadable pdf, or to remove some of the advanced pdf features
    within the PDF document before sharing it.
    Hope this helps out, if not please give more information
    about the PDF file you're sharing, and perhaps private messaging me
    the link to the share.
    Thanks!
    Pete

  • Acrobat 8, pdf file cannot be OCR

    I have a pdf file 11x17, that is an image but when I try to run OCR and highlight, I keep getting the same message. I dont have this problem with 8 1/2 x 14. How to remedy?

    Hello krishinc,
    Thanks for your posting.
    What you're able to able to embed into your website, is the
    PDF preview that Acrobat.com is able to make. Not every PDF is able
    to have a preview created for it.
    In the event that we are unable to create a preview that
    particular PDF file, the option to download it will be presented,
    so that the end user can view it with their PDF viewer.
    If you are the creator of this PDF, then perhaps simplifying
    the contents of the PDF will allow us to create a visible preview
    of the file.
    Hope this helps!
    Good luck,
    Pete

  • PDF file cannot be repaird

    I cannot open downloaded PDF files even from trusted sources.  The message says:   "There was an error opening this document.  The file is damaged and could not be repaired.      This is a fairly recent development.

    Okay, I've seen this. It's Safari too, I know, based on the symptoms. There's good news and bad news.
    Start with the bad news: As the error message says, the PDF(s) is/are damaged and it CANNOT be repaired. It/they was/were corrupted during the download.
    Now the good news: While the file(s) can't be fixed, this CAN be prevented going forward.
    Download the offline installer here: http://get.adobe.com/reader/enterprise/ - DO NOT RUN IT YET - Save it only
    Quit Safari
    Go to: Mac HD/Library/Internet Plugins
    Trash the AdobePDFViewer.plugin file
    Trash the AdobePDFViewerNPAPI.plugin file
    Empty the trash
    Reboot
    Mount the downloaded DMG and reinstall Reader
    Relaunch Safari and redownload the PDF(s) in question.
    They should open with no errors now.

Maybe you are looking for

  • How do I add MPEG clips, on my hard drive, to my iMovie library?

    I have downloaded clips directly from my camcorder to my hard drive- MPEG format.  I want to work with them in iMovie, but when I go to add them to my iMovie library they are greyed-out and not available.  What am I doing wrong?

  • Displaying BLOB of type word doc in XML Publisher pdf output

    Hi all, Please guide me relating the Displaying BLOB of type word doc in XML Publisher pdf output with links or pointers.In the following xml column TRADE_LICENSE_COPY is BLOB when queried from toad and if clicked on the ouput word doc is being opene

  • Printing in Tiger

    I recently relocated and am looking for a job. I transferred all my resumes from my floppies to a USB flash disk which would be better in my situation. Unfortunately I am still using Office98 on my ibook G4 with Tiger. Whenever I print (and in this c

  • How to handle inventory management scenario

    Hi All, In How to handle inventory management scenario whitepaper, I fail to understand the basic difference between 'Inventory Management with non-cumulative Key Figures' and 'Inventory Management with Snapshots'. Can anyone please explain me the ba

  • How can I get my ringtones from iPhone 4 to the 5 thanks

    I have connected my iTunes to laptop and I cannot get my ringtones to my iPhone 5s can somebody help me thanks