Access denied: Adobe PDF error when opening PDF in IE9

Adobe Version: 11.0.3
IE9, Windows 7
Opening the PDF document from web browser opens a "Adobe PDF Document" dialog box with "Access Denied" error message.
However, on clicking "OK" on the dialog box, the PDF document appears in the desired section.
But, still trying to get rid of the access denied error message as this pops up each time a PDF is being opened.
Please help asap.
Thanks.

Hello Adobe technical Team,
I am struggling to fix the issue. Tried a lot of combinations to manipulate PDF preference, browser setting but failed to fix the issue. Can someone please look into the details and advise? Thanks in advance for any help.input.

Similar Messages

  • Not valid PDF error when opening PDF file

    I am trying to view a pdf and it starts opening with Adobe but then says it cannot open because it is not a valid pdf. But I have been able to view it on my laptop and other computers.   Please help!
    amanda

    I emailed it to myself from my laptop and then was able to open it on my tablet. So clearly it is a valid pdf.... why can't I open it directly on my tablet?
    Sent from my Samsung Galaxy Tab® S

  • "Access Denied" pop up error while opening adobe online form in IE8.

    "Access Denied" pop up error while opening adobe online form in IE8. I use crosslink to connect to client network and then open IE with App Tunnel. Tried to re-install Acrobat reader multiple times but issue still persist. Even tried to change the PDF properties (Edit-> Preference- General/Internet/Security Enhanced)

    Hello Adobe technical Team,
    I am struggling to fix the issue. Tried a lot of combinations to manipulate PDF preference, browser setting but failed to fix the issue. Can someone please look into the details and advise? Thanks in advance for any help.input.

  • Adobe Acrobat hangs when opening PDFs even after reinstall

    Hello,
    I have 2 new Dell systems that are having issues with Adobe Acrobat.  When opening PDFs, either from an email attachement or file from our server, there is a brief hang that lasts 10-15 seconds, during which Acrobat is unresponsive however the workstation continues to respond.  I've since uninstalled/reinstalled, still no luck.  I've also run updates. Problem unresolved.
    Any ideas

    One of our users is having a similar issue with Adobe Reader 9.2 hanging.  Adobe Reader will eventually open after about 5 seconds.  I've found a work around where if I leave a .pdf document open, any other .pdf I click will open up fine (but a .pdf needs to be left open in Adobe Reader).  This is happening only with one user.  Some of the things I've tried that have not worked: repairing, uninstalling/reinstalling, deleting temp files, opening the file with a different account/profile, downgrading to Adobe Reader 8.1.3.  Anyone have any ideas?  This is only happening to one user at my company.  I've searched the forums here and it looks like other people are having similar issues but there's really not a solution to this.  Any help would be appreciated.  Thank you in advance.

  • Send spool as PDF, error in opening PDF- Could not find the XObject '00014'

    Hi
    I am sendind a spool as PDF and when opening the PDF I am getting error saying Could not find the XObject named ‘00014’.
    Please let me know how I can see the PDF contents proerly.
    Regards
    Bala

    Hi Bala
    Check the sample which can be useful for you.
    Pseudo code for sending PDF attachment:
    TABLES: tsp01.
      TYPES: BEGIN OF t_spool,
                          Rqident TYPE tsp01-rqident,
                    END OF t_spool.
      DATA: i_spool TYPE STANDARD TABLE OF t_spool,
                Wa_spool TYPE t_spool.
      SELECT rqident FROM tsp01
      INTO TABLE i_spool
    WHERE rqowner = sy-uname.
      SORT i_spool DESCENDING BY rqident.
      LOOP AT i_spool INTO wa_spool.
      ENDLOOP.
    YPES: l_ty_tab_pdf TYPE tline OCCURS 0.
      DATA: l_pdf TYPE l_ty_tab_pdf,
                l_spool TYPE tsp01-rqident.
    Type for binary attachment table.
      TYPES: l_ty_tab_objbin TYPE solisti1 OCCURS 0.
      DATA: l_objbin TYPE l_ty_tab_objbin.
                l_spool = wa_spool-rqident.
      CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'            
          EXPORTING
            src_spoolid                    = l_spool
            no_dialog                      = ' '
          TABLES
            pdf                            = l_pdf
          EXCEPTIONS
            err_no_abap_spooljob           = 1
            err_no_spooljob                = 2
            err_no_permission              = 3
            err_conv_not_possible          = 4
            err_bad_destdevice             = 5
            user_cancelled                 = 6
            err_spoolerror                 = 7
            err_temseerror                 = 8
            err_btcjob_open_failed         = 9
            err_btcjob_submit_failed       = 10
            err_btcjob_close_failed        = 11
            OTHERS                         = 12.
      IF sy-subrc <> 0.
        WRITE: / 'error', sy-subrc.
      ENDIF.
    **/ Convert the PDF format to the table type required for the attachment.
    CALL FUNCTION 'QCE1_CONVERT'
        TABLES
          t_source_tab         = l_pdf
          t_target_tab          = l_objbin
        EXCEPTIONS
          convert_not_possible = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
        WRITE: / 'error', sy-subrc.
      ENDIF.
    TABLES: soli.
      DATA: v_email TYPE soli-line.  “Manager’s Email
      DATA: l_adrnr LIKE kna1-adrnr. “Address Number
      DATA: l_objky TYPE nast-objky. “Object Key
      DATA: l_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE.
      DATA: l_objtxt    LIKE solisti1 OCCURS   0 WITH HEADER LINE.
      DATA: l_objpack   LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE.
      DATA: l_doc_chng  LIKE sodocchgi1.
      DATA: l_objhead   LIKE solisti1 OCCURS   0 WITH HEADER LINE.
      DATA: l_tab_lines LIKE sy-tabix.
      CONSTANTS: k_true TYPE boolean_flg VALUE 'X'.
      DATA: l_mail TYPE somlreci1-receiver.
      l_mail = v_email.
    Creation of the document to be sent as File Name
      l_doc_chng-obj_name = 'SENDFILE'.
    Mail Subject
      l_doc_chng-obj_descr =l_text-001.
    “Here text-001 will contains “Compensation Review Statement for Employee Name”
    Here we can concatenate employee first name and last name to l_text-001.
    Completing the recipient list
      l_reclist-receiver = l_mail. “Manager Email Address
      l_reclist-rec_type = 'U'.
      APPEND l_reclist.
    Mail Contents
      l_objtxt = text-002.
      APPEND l_objtxt.
    Calculate email size in bytes
      DESCRIBE TABLE l_objtxt LINES l_tab_lines.
      READ TABLE l_objtxt INDEX l_tab_lines.
      l_doc_chng-doc_size = (l_tab_lines - 1 ) * 255 + STRLEN( l_objtxt ).
    Creation of the entry for the compressed document for the email text
      CLEAR l_objpack-transf_bin.
      l_objpack-head_start = 1.
      l_objpack-head_num = 0.
      l_objpack-body_start = 1.
      l_objpack-body_num = l_tab_lines.
      l_objpack-doc_type = 'RAW'.
      APPEND l_objpack.
    Creation of the document attachment
    (Assume that the data in OBJBIN is in BMP format)
      DESCRIBE TABLE l_objbin LINES l_tab_lines.
      l_objhead = text-001.
      APPEND l_objhead.
      CLEAR l_objpack.
    Creation of the entry for the compressed/attached document
      l_objpack-transf_bin = k_true.
      l_objpack-head_start = 1.
      l_objpack-head_num = 1.
      l_objpack-body_start = 1.
      l_objpack-body_num = l_tab_lines.
      l_objpack-doc_type = 'PDF'.
      l_objpack-obj_name = text-005.
      l_objpack-obj_descr = text-001.
      l_objpack-doc_size = l_tab_lines * 255.
      APPEND l_objpack. "/ .
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = l_doc_chng
          put_in_outbox              = 'X'
        TABLES
          packing_list               = l_objpack
          object_header              = l_objhead
          contents_bin               = l_objbin
          contents_txt               = l_objtxt
          receivers                  = l_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
      IF sy-subrc <> 0.
        WRITE: / 'unsuccessful', sy-subrc.
      ELSE.
        WRITE:  / 'successful'.
      ENDIF.
    *Take note it is a requirement to do a commit work for the email to go into transaction   
      SOST.
    COMMIT WORK.  
    Regards,
    Sree

  • Error when opening PDF files from SAP.

    Hi Gurus
    I have posted this question in ABAP Development section also. Please read the below text.
    We are having a strange intermittent problem with Adobe Reader. When we try to open PDF files from SAP Frontend we get an error pop-up. The pop-up does not have any text. The title of the pop-up has "Adobe Reader". There is a blue question mark and an OK button.
    This issue occurs few times a day in Windows Vista.
    This issue does not occur in Windows XP.
    Since past few weeks, we have been trying to find some error/warning/atleast some text in log files of SAP, OS, Adobe Reader, Registry entries, Event Viewer. So far, we have not found anything.
    SAP is not able to help as this issue occurs intermittently and said when they tried, the issue did not occur. They made two attempts and in each attempt they tried 10 times to reproduce the issue. This issue occurs intermittently.
    Environment
    SAP R/3 4.7 EE SAP_Basis 620 Support Package 61
    Windows Vista Enterprise
    Adobe Reader 9.0 and Adobe Reader 9.1 (tried with both versions)
    SAPGUI 710 Patch 12 (latest patch). It also occured in Patch 11.
    Please suggest
    Thank you
    Pavan

    Now I got to capture the screenshot, however not able to attach/upload here but it says:
    'Reading Untagged Documents'
    lets say i tried to open 6 page document then it said:
    'This 6-page document is untagged and must be prepared for reading. While the document is being
    analyzed, your assistive technology will not be able to interact with this application. '
    then it asked for Reading options
    then a checkbox for to confirm 'Always use the settings from the Reading Preferences (Do not show this dialog again)
    then 'OK/START' and 'cancel' buttons
    It seems, this is the problem with Adobe w.r.t Vista.
    thanks
    Bhudev

  • Scanning causes error when opening PDF

    Every time I scan or print with my HP Officejet 5610v, I can then no longer open a pdf by finding a file in the finder.
    When I try I get the following error:
    The document “iPhone intro.pdf” could not be opened. Acrobat cannot open files in the “Adobe PDF document” format.
    I can still open pdf doc by opening Acrobat and clicking open and then find the file but that is a pain.
    I have deleted my printer/scanner software and re-installed a new driver and tried updating my acrobat but to no avail.
    Anyone have any other thoughts?
    Thanks for the help.

    Use the forum for Adobe Reader.

  • ArialUnicodeMS is missing error when opening PDF

    Hi
    I have Adobe Reader v9.0 on Windows XP SP3
    When I try to open PDF document I get this error:
    "Cannot find or create the font 'ArialUnicodeMS'. Some characters my not display or print correctly"
    The document then open in gibrish.
    Please advise.
    Thank's

    Use the forum for Adobe Reader.

  • Run Time Error When opening PDF File on Computer

    I am getting a run time error when I try to open up PDF's on my computer.  The error message reads, "The application has requested the runtime to terminate in an unusual way.  When I click ok the error box I get a message that says adobe reader has stopped working and the program has been closed.  FYI I am using the latest version of adobe reader

    Operating system is Windows Vista Home Premium..
    Version of Adobe Reader is 10.1.13.
    Any thoughts on what the issue is?

  • Acrobat error when opening pdf email attachments

    I have a user who has the latest version of Adobe Acrobat and Reader installed on his PC running Windows 7 Pro SP1 which is up to date on patches.
    He was unable to open any pdf documents attached to email and was getting an error from Acrobat saying it couldn't open them. I changed the default file association for .pdf file from Acrobat to Reader and now he can open most pdf attachments. The only ones he is having a problem with are ones that come from his bank in what he was told by his banker are secure emails.
    What happens when he clicks on the pdf attachment in the emails from his bank is that he gets a popup with Adobe Acrobat in the title bar of the popup and the message that says "Cannot use Adobe Reader to view PDF in your web browser. Reader will now exit. Please exit your browser and try again." The buttons to click on are OK and Cancel. If he clicks OK, the popup goes away and the pdf then opens in Reader.
    So while he can view the pdf, he gets the annoying popup that he has to click through. Is there any way to get rid of that error message popup so when he clicks on the pdf in the secure emails, that it just opens without error like the pdf's do from non-secure emails?
    Jonathan

    Post your question in the forum for Adobe Reader.

  • Adobe Reader Error in Opening PDF Form

    Why do I get this error message when I try to open PDF Application Form using Adobe Reader?
    "Error encountered while processing node xfa[0].form[0].form1[0].#subform[5].ApplicationEligibility[0]. Unable to find suitable font for Japanese encoding."

    Hi Deepak - I am a different user with the same problem as the guy above. I created a form in LiveCycle and when users open it in Reader it gives the error:
    "Error encountered while processing node xfa[0].form[0].form1[0].#subform[0].#draw[2]. Unable to find suitable font for Japanese encoding."
    Before I try to recreate the form from scratch, do you know how to fix this? For the record, the form was NOT built using any Japanese fonts.
    Thanks,
    Michael

  • 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.

  • Saved Adobe Illustrator as PDF. When opened, PDF does not contain the images?

    I am using a brochure type template in Illustrator and I have placed a few images in the brochure.
    I have completed my brochure and want to save the AI file as a PDF.
    I have saved the PDF file but when I open it, all of the images are gone.
    What can I do to fix this?

    Sorry for all of the vagueness. Here are some details.
    I placed the image by doing: File->Place and then I just dropped the image in. I have tried to embed the image but that didn't seem to help. The images are on my local computer.
    I didn't do anything to the images other than placing a rectangle box/border around the image. I sent to border to the back and brought my images forward.
    I saved the file to a PDF by doing: File->Save a Copy... and then saved it as a PDF.
    I open the PDF file with Adobe Reader XI

  • Error when opening PDF

    Hello,
    I'm having problems when trying to open PDF documents. When I go to open a PDF it tells me it can not open because it is not a valid PDF document but, I am positive that it is a valid PDF document that opens in other apps. How do I fix this??
    Thanks you.

    What is your operating system?  Reader version?
    Can you open that PDF in a text editor, then copy and paste the first two or three lines here in the forum?

  • How do I make adobe my default when opening pdfs?

    My computer has another program that opens PDFs and that seems to be the default on my work computer. The other program doesn't print docs nice and is in my opinion, useless.  I would like to switch it to only open PDFs in Adobe but I can't figure out how to do it. Must the other program be uninstalled? Any help is greatly appreciated.

    In Acrobat go to Edit - Preferences - General and click the Select Default PDF Handler button and then select Acrobat from the list.

Maybe you are looking for

  • BI report to get count

    Hello BI Gurus, I have a BI report where we require to have values in the following format.. For Plant: X OVERALL                               Sep-07          Oct-07     Nov-07     Dec-07     Jan-08     Feb-08 Total No of Machines         1         

  • Printing adobe reader 9.5 form IE11

    how can i fix this? it all for pdf I open in EI11. i am using Adobe Reader 9.5. yes I most use 9.5 because of another program.

  • How to maintain gap between table and graph in a report

    HI, I have a report in which a graph is placed below a table  and data in the table gets increased with time , then how to maintain the gap as constant between table and the graph ?? Like i have 50 rows in a table and then next day 10 rows are added

  • Networking 2 minis and a lacie ethernet disk mini

    The very small newspaper I work for just recently upgraded their equipment. In the department I am in we received two dual core mac minis, and we are wanting to use a lacie ethernet disk mini as our "server". Basically we just need a place to store s

  • No authorization for company code in MRBR

    Transaction MRBR is currently wide open. Anyone with authorization to this transaction can unblock invoices in any company code. Standard security profiles can only restrict users at universal (*) or purchasing group level. We require control on comp