Adobe reader problem on viewing PDF file created by crystal report

I have a VB6 application to export the PDF file by using crystal report 9. However, when I viewed the PDF file under Adobe reader 8, I have a following message when I hit the page down key.
"An error exists on this page. Acrobat may not display the page correctly.
Please contact the person who created the PDF document to correct the problem."
After hit okay, this message will be gone and I can see the PDF file without problem. However, I don't have this issue when using Adobe reader 5 or 6 version.
If I crystal report 11 version to export the PDF, everything works fine also but our production machine can only use crystal report version 9, not 11.
Anyone have idea?? Thx!

Sounds as if there is a bug in the older version of Crystal reports.
If you are prevented from installing fixes for bugs, you may well be
stuck with the effect of the bug.
Aandi Inston

Similar Messages

  • Cannot open Adobe Reader XI or any PDF file

    When I try to open Adobe Reader XI or any PDF file, it says that it "cannot open in Protected Mode due to an incompatibility with your system configuration. Would you like to open Adobe Reader with Protected Mode disabled?"  When I choose open with Protected Mode disabled, it then displays "Acrobat failed to load its Core DLL.” Please help. Thank you. All PDF’s and adobe reader use to work on my computer. Thank you.  When I try troubleshooting the problem, “incompatible application” is listed under the troubleshooting report.

    Hi
    Please follow this KB doc: http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html
    Thanks

  • How can I hide page thumbnails navigation bar at the start up of Adobe Reader and open a pdf file?

    How can I hide page thumbnails navigation bar at the start up of Adobe Reader and open a pdf file? I could not find this option under Preferences tab? Thanks

    Hey there,
    Thanks for your reply. That works for the files I do what you said. However, for files I have not done that, It still shows the navigation bar. Any idea, how to do it default for any files?
    Thanks agian

  • Adobe reader will not open pdf files I have saved as, or, export as pdf to my desktop (latest Maverick). The same file does open when I am on the source website (i.e. user manuals etc.). Why?

    Adobe reader will not open pdf files I have saved as, or, export as pdf to my desktop (latest Maverick). The same file does open when I am on the source website (i.e. user manuals etc.). Why?

    iMac G4, Mac OS X (10.4.9)
    Make sure you have the latest Adobe Reader installed for your OS.
    http://www.adobe.com/support/downloads/product.jsp?platform=macintosh&product=10
    Did you try using Preview. If you control click on the PDF on your desktop you can use the "open with" option.

  • Adobe Reader doesn't open .pdf files anymore. Error: 213:11.

    Adobe Reader doesn't open .pdf files anymore. It's written Error: 213:11. Details: laptop with Windows XP, Adobe Reader X

    Are these local or online documents?  If online, in what browser?  If local, does the documents folder and docs themselves have sufficient permissions?
    Is there anything else beside the number 213:11?

  • I DL ver 9,10,11 of Free Adobe Reader - cannot open any PDF file.

    I get an error message "The instructions at xxxx referenced memory at xxxx. The memory could not be written." What is wrong?

    tI did as you instructed and got no good results. I even restored my Adobe files from several weeks ago from Carbonite and could not load Adobe REader nor open any PDF file that I was previously able to open.
    When I try to open a PDF file, I get a web page that has two panes. One pane on the left has a red box area with some options. The pane on the right is grey and has some options. The web page disappears after about 5 seconds so I can't read it all.
    I tried opening three files after reinstalling Adobe Reader and after restoring my Adobe files. One folder that I restored as "Cache" and had a file inside called "AcrobatFnt11 then another file called AdobeCMapFnt11 and the other file called AdobeSysFnt11.
    I'm extremely anxious to be able to open and load all my PDF files like I was able to for years before.
    Thank you.
    [spam links removed again!]

  • PDF file created from Oracle Report is attached wrongly

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2, document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

    The code looks absolutely good. I have the same code working in my system. Only difference is I use TRUE and DBMS_LOB.Session for the BLOB I use to read from the BFILE.
    I can suggest one more way to handle to binary attachments if you are on Oracle 9i DB are later versions.
    procedure attach_document (p_document_id   in varchar2,
                               p_display_type  in varchar2,
                               p_document      in out nocopy clob,
                               p_document_type in out nocopy varchar2)
    is
      l_nid        number;
      l_directory  varchar2(100);
      l_filename   varchar2(100);
      l_content_type varchar2(100);
      l_src_offset binary_integer := 1;
      l_dst_offset binary_integer := 1;
      l_err_msg    varchar2(100);
      l_amount     number;
      l_bfile BFILE;
      l_blob  BLOB;
      l_clob  CLOB;
      file_not_found exception;
      pragma EXCEPTION_INIT(file_not_found, -22288);
    begin
      l_nid := to_number(p_document_id);
      l_directory := trim(wf_notification.GetAttrText(l_nid, 'ATTR_DIRECTORY'));
      l_filename := trim(wf_notification.GetAttrText(l_nid, 'ATTR_FILENAME'));
      l_content_type := trim(wf_notification.GetAttrText(l_nid, 'ATTR_CONTENT_TYPE'));
      l_bfile := BFILENAME(l_directory, l_filename);
      dbms_lob.createtemporary(l_blob, true, dbms_lob.Session);
      dbms_lob.createtemporary(l_clob, true, dbms_lob.Session);
      begin
        dbms_lob.FileOpen(l_bfile, dbms_lob.File_Readonly);
      exception
        when file_not_found then
          l_err_msg := to_char(sqlcode)||' - Attachment File "'||l_filename||'" is not found.';
          raise_application_error(-20002, l_err_msg);
      end;
      dbms_lob.LoadBLOBFromFile(l_blob, l_bfile, dbms_lob.LobMaxSize, l_src_offset, l_dst_offset);
      dbms_lob.FileClose(l_bfile);
      -- Encode the BLOB content to BASE64 and attach to notification  
      wf_mail_util.EncodeBLOB(l_blob, l_clob);
      l_amount := dbms_lob.GetLength(l_clob);
      dbms_lob.Copy(p_document, l_clob, l_amount, 1, 1);
      -- Mention an appropriate Content Type so that Notification System
      -- understands the attachment content
      p_document_type := l_content_type||'; encoding=base64; name='||l_filename;
    end attach_document;Here I read the BLOB from the filesystem and base64 encode it before giving it to the Mailer. Please note that this is a PLSQLCLOB based attachment as against PLSQLBLOB that you are using.
    Thanks - Vijay

  • PDF file created from Oracle Report is created wrongly using dbms_lob

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2,
                                                                                         document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2,
                                                                                         document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

  • Android running Adobe Reader can't view PDF

    My Android running Adobe Reader can't view Adobe PDF attachments that someone has emailed me through Exchange Server.
    I can, however, read the same PDF attachments if I receive said PDFs in my Gmail account.
    Please advise.
    Thanks,
    Jonathan Smith

    Im having the same problem, most pdf attachments work fine but I have a supplier who I can only view a blank page as the data does not display. Any ideas on how to correct this problem?

  • Permissions - Viewing PDF Instances of a Crystal Report

    I have the following registered and installed products.
    Crystal Server V1
    Crystal Reports V1
    I have a number of crystal reports setup to schedule to create a pdf output instance.
    I am trying to allow specific Active Directory Groups access to view the PDF instances of the Crystal report. The users are only allowed access to view the PDF instance not the Crystal report. The users will view the pdf instance within InfoView.
    Can someone please let me know the correct path, as I have been through the permissions and have set everything to allow and the report nor the pdf's show.
    Thanks for your assistance.
    Regards

    Does not look like you are using this in a .NET app at all(?). That being the case, you're in the wrong forum. And if this a high priority, having BOE you should have phone support. I suggest you contact support via phone. Else, you can create a case here;
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300
    Ludek

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • Problems opening & printing pdf files created on a Mac

    I am at my wit's end! I recently upgraded to a new version of Acrobat and suddenly a lot of my clients could no longer open my pdf files. I uninstalled the latest version of Acrobat and reinstalled an older version (Acrobat 8.1.3). Some clients started being able to open my pdf files but others could not. So I started using the Acrobat Share server and sending links. Some of my clients cannot open those either and many cannot print even if they can open the files that way. I personally also cannot print from the Acrobat Share server. The pdf files print out with all the surrounding graphics and application design elements. I also can't open the pdf files that I created on my Mac using my PC laptop running Vista. I have tried opening and printing both pdf files and the Acrobat Share links from my Mac and my PC laptop running Vista, to no avail.
    I was under the impression that compatibility problems between Macs and PCs were largely a thing of the past. I was also under the impression that the whole point of exchanging pdf files was that pdf files are cross-platform compatible. Not only am I am losing tons of valuable time, I may be losing credibility with my clients (especially since I have an IT background). I desperately need to know what version of Acrobat I should be running on my Mac so that when I scan documents into my Mac, the pdf files that are created are completely 100% compatible with both Mac and PC operating systems regardless of what operating system and what version of Acrobat my clients are running. I also need to be sure that those same pdf files I create on my Mac can be seemlessly printed out from either a Mac or PC regardless of the operating system or Acrobat Reader version. If anyone can help me get to the bottom of this, I will be eternally grateful. Thanks.

    This file downloaded and works fine for me in Preview on both OS X 10.5.7 and 10.4.11 (and opens in Acrobat Pro 9.1.1 and 8.1.5, and the latest version of Reader on both versions of the OS). As expected.
    If you're printing from Acrobat.com by right clicking in the image area and selecting Print, don't. This isn't printing the PDF, it's printing the Flash frame that contains, as you've noticed, buttons and other elements. (Adobe's Mac Flash plugin is notoriously buggy.) Direct your clients to download the file by selecting the download button, not by right clicking and printing.
    Again, your PDF file is fine.

  • Adobe reader won't recognise pdf file when downloaded

    Hi all
    Hope I'm in the right forum, if not would be grateful for correct re-direction ...
    I have a web site written in DWcs4 with a link to a PHP page offering a pdf document for download.
    The PHP code includes the "content-disposition: attachment " header in order to prompt the "view or save as" download box.
    When the link in the web page is accessed the pop up box asking to view or save the file works fine  (as desired) however when trying to view the pdf file,
    acrobat reader opens automatically but gives a message similar to the following :
    my_pdf(1).pdf is not an permitted file type or is damaged (for example sent as an email attachment and not correctly coded)
    Firstly I dont understand why the file reference has a (1) added to it (the source file is simply my_pdf.pdf)
    secondly I dont understand why the file is not recognised since I created it myself in Adobe 8.0 converted from a word doc.
    Any help would be GREATLY appreciated.
    Thanks
    Wadyaro

    Hi Luv_craft,
    Have you tried to check to print with other PDF documents. Try open a different PDF document and check if you have option to print or you are able to see the list to choose the printer to print with.
    Regards,
    Ajlan Huda.

  • Problem in viewing PDF File.

    Hi All,
    I created a servlet which reads the PDF file from the file system and to show it in the browser. And I attached the URL in my HTML Page. Whenever I click on that URL it is activating PDF viewer in the browser and browser is showing the blank page. But, The moment I refresh the page I was able to view the PDF document. I am sure this is not a coding problem. It looks like some problem with the plug-in. I tried by reinstalling the Acrobat Reader 5.0 still I am facing the same problem. I am using Windows2000 Professional, SilverStream 3.7.is the application Server. Database is Oracle 8i.
    I want to avoid the second step(i.e refresing the page to view PDF document). Can any one help me out in this matter.
    Thanks in advance for helping me out in this problem.
    Thanks
    Shivaji

    I've been working on displaying pdf from a servlet, and although I don't know exactly what your situation is, here is how I served up the pdf file from the servlet using the HttpServletResponse object.
                byte[] data = getFileBytes();// from somewhere
                response.setContentType("application/pdf");
                response.setContentLength(data.length);
                java.text.SimpleDateFormat dateFormat = new java.text.SimpleDateFormat("EEE, dd MMM yyyy - HH:mm:ss z");
                response.setHeader("Expires", dateFormat.format(new java.util.Date()));
                response.getOutputStream().write(data); //Write out the pdf report
                response.getOutputStream().flush(); //flush the buffer

  • Rusty Solomon : Adobe Reader Error while opening pdf files

    Hello everyone,
    I have a systematic error opening PDF files with Adobe Reader X (10.1.1)
    "Adobe Reader has encountered a problem and needs to close. Please excuse us for the inconvenience."
    By waiting I installed Foxit but I would understand.
    I uninstalled Adobe and reinstalled but it's still the same.
    Thank you for your answers in advance
    Rusty Solomon

    First I would try to update to 11.1.8.
    If that does not fix it, tell us your operating system.

Maybe you are looking for

  • Agent DashBoard Issue

    Hi All,           After adding some action box Trabs Group, I can't see my agent dash board anymore. I have checked all the slots. Even after swtiching back to the defualt Action box, I still don't see my dashboard. I'll appreciate your comments and

  • Export to pdf gives differents amounts then export to rpt

    Post Author: christof CA Forum: Exporting Hello, When using a specific report and performing a preview in de web console and in the designer the amounts shown in this report are OK but when exporting this report to pdf the amounts are changed. In the

  • Escaping Boolean & Try/Catch blocks

    Hi everyone- You all have been so great. I finally got my double/int and all working on my calculator. Now, I have one more question that I cannot figure out. My booleans to escape when form is not completed correctly are not working. That is, it wil

  • URL Focus

    We have a corporate dashboard built in Dashboard Builder that contains a swf and a viewer. The swf has 5 KPIs and each KPI has 5 different opendoc url that launches a webi report in the viewer. We can launch a webi report on a new page and that works

  • Using data dictionary

    Hi everyone, I am a new user to Oracle 10g XE. I would like to know if there is any way for me to list the size of each object in my current schema follow by the object name. Any advice / help would be appreciated. Regards