How to open pdf documents when marked 'error, access denied' (these are not damaged or non-compliant)?

I have tried to open them as attachment to an email, and also as a file in my Adobe Reader XI file...same message "There was an error opening this document. Access denied."  This began very suddenly--like something was 'turned off' in the system.
Funtbird1963

The message means that a file which is needed to run Adobe Reader has been locked by the system. So it isn't exactly that Adobe Reader is turned off, but the effect is the same.
Something to try. Can you start Adobe Reader from the START menu in the normal way? If you can, are you able to use Open from the File menu to open a PDF?

Similar Messages

  • How to open pdf document in other window by using java script

    Hello All,
    I am working in R12 Application.
    My jdeveloper version is 10.1.3.3.0.3
    I want to open pdf document in other window on clicking the button
    for that i have written following code in process request of the controller:
    pageContext.putJavaScriptFunction("doFilterSwitch", "function doFilterSwitch(){window.open('/t01/oracle/TEST/inst/apps/TEST_appsdev2/logs/appl/conc/out/545042.pdf'); }");
    OAButtonBean moHelp =(OAButtonBean)webBean.findChildRecursive("Download");
    moHelp.setOnClick("doFilterSwitch()");
    but when i hit download button it gives me the below error:
    The webpage cannot be found
    HTTP 404
    Most likely causes:
    There might be a typing error in the address.
    If you clicked on a link, it may be out of date.
    What you can try:
    Retype the address.
    Go back to the previous page.
    Go to and look for the information you want.
    More information
    please help me out
    Regards,
    sheetal

    Instead of giving the link in Process form request, give the link directly in Destination URI property of the button and in target property write _blank.
    Note : use normal button not submit button

  • [adobe 11.0.09 | windows XP] error when open pdf document and persistent error message even if adobe is closed

    Hi
    I encounter a problem on a windows XP laptop using acrobat 11.0.09.
    When i try to open a .pdf document i get an windows error message.
    The document open well else, but i get persistent windows error message then, and i get them even if i close this document.
    When i look application event i have this :
    Nom de l’application défaillante acrord32.exe, version : 11.0.9.29, horodatage : 0xsyntpfcs.dll
    Nom du module défaillant : 7.5.19.5, version : 00001599, horodatage : "a long string"
    Code d’exception : 0x%7
    Décalage d’erreur : 0x%8
    ID du processus défaillant : 0x%9
    Heure de début de l’application défaillante : 0x%10
    Chemin d’accès de l’application défaillante : %11
    Chemin d’accès du module défaillant: %12
    ID de rapport : %13
    I try to uninstall / reinstall acrobat without change, this error message still stay when i open a pdf document.
    cordialy

    Hi ,
    I solve my problem :
    1- chkdsk /f to test the disk => nothing particular
    2- I use defraggler to defrag the harddrive ( was very fragmented)
    I thing this two step doesn't change anything.
    3- then i use Adobe Reader Acrobat Cleaner Tool and restart laptop
    4- Reinstall Adobe Reader.
    5- I just let reader11.0 folder in c:\program files\Adobe and delete other old reader folder.
    6- did same in c:\documents and settings\%username%\application data\adobe\acrobat\
    seems to work know
    will survey to be sure and back to confirm
    thank

  • Unable to open PDF document when run through task/workflow

    Hi all,
    I am currently usign a background method to send a smartform as a PDF document to all the agents who approve.
    When i send the smartform in mail as a PDF documetn throught the task i get an error message when opening the PDF document which says that 'The file could nto be opened because it was either not a supported file type or because the file was damaged(for example, it was sent as an email attachment and wasn't decoded correectly'.
    The below is the code i am using to send the smartform
    { CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = 'ZFI_ASSET_PDA_NOTIF'
        IMPORTING
          fm_name            = lv_form_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.}
    { ls_ctrlop-getotf    = 'X'.
      ls_ctrlop-no_dialog = ''.
      ls_compop-tdnoprev  = 'X'.
    ls_ctrlop-DEVICE = 'LOCL'.
      ls_ctrlop-preview   = 'X'.
      ls_ctrlop-no_dialog = 'X'.}
      CALL FUNCTION lv_form_name
        EXPORTING
          control_parameters = ls_ctrlop
          output_options     = ls_compop
          user_settings      = 'X'
          gv_prctr_txt       = gv_prctr_txt
          gv_cc_text         = gv_cc_text
          gv_class_txt       = gv_class_txt
          gv_lname           = gv_lname
          gv_fname           = gv_fname
          gv_position        = gv_position
          gv_initiator       = gv_initiator
          gv_bookcost        = gv_bookcost
          gv_bookvalue       = gv_bookvalue
          gv_date            = gv_date
          gv_prctr           = gv_prctr
          gs_anla            = gs_anla
          gv_emv             = gv_emv
          gv_cond            = gv_cond
          gv_operable        = gv_operable
          gv_action          = gv_action
          gv_justify         = gv_justify
          gv_replace         = gv_replace
          gv_replace_comment = gv_replace_comment
          gv_process         = gv_process
        IMPORTING
          job_output_info    = lt_job_output
        EXCEPTIONS
          usage_error        = 1
          system_error       = 2
          internal_error     = 3
          OTHERS             = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE 'S'  NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT lt_job_output-otfdata INTO ls_otf.
        lt_otf = ls_otf.
        APPEND lt_otf.
        CLEAR lt_otf.
      ENDLOOP.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = lv_len_in
        TABLES
          otf                   = lt_otf
          lines                 = lt_tline
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          OTHERS                = 4.
    Fehlerhandling
      IF sy-subrc EQ 0.
      ENDIF.
      LOOP AT lt_tline.
        TRANSLATE lt_tline USING '~'.
        CONCATENATE ls_buffer lt_tline INTO ls_buffer.
      ENDLOOP.
      TRANSLATE ls_buffer USING '~'.
      append ls_buffer TO lt_objbin.
    DATA  lv_counter         TYPE i.
      DO.
        lt_record = ls_buffer.
        APPEND lt_record.
        SHIFT ls_buffer LEFT BY 255 PLACES.
        IF ls_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    Attachment
      REFRESH:
      lt_reclist,
      lt_objtxt,
      lt_objbin,
      lt_objpack.
      CLEAR ls_objhead.
      lt_objbin[] = lt_record[].
    lt_objhex[] = lt_record[].
      CLEAR lv_descp.
      CONCATENATE 'Asset'
                  gs_anla-anln1
                  'Approval details'
             INTO lv_descp
    SEPARATED BY space.
    Create Message Body
    Title and Description
      CONCATENATE  'Please find attached the approval details of asset : '
                   gs_anla-anln1
              INTO lv_mail_descp
             SEPARATED BY space .
      lt_objtxt = lv_mail_descp.
      APPEND lt_objtxt.
      CLEAR  lv_mail_descp .
    appending space lines into text of mail.
    DO 3 times.
      CLEAR lt_objtxt.
      APPEND lt_objtxt .
    ENDDo.
    CONCATENATE 'This is an automatically generated message.'
                 'Please do not reply to this mail.'
           INTO lv_mail_descp
         SEPARATED BY space .
    lt_objtxt = lv_mail_descp.
    APPEND lt_objtxt.
      DESCRIBE TABLE lt_objtxt LINES lv_lines_txt.
      READ     TABLE lt_objtxt INDEX lv_lines_txt.
      ls_doc_chng-obj_name = 'smartform'.
      ls_doc_chng-expiry_dat = sy-datum + 10.
      ls_doc_chng-obj_descr = lv_descp.
      ls_doc_chng-sensitivty = 'F'.
      ls_doc_chng-doc_size = ( lv_lines_txt - 1 ) * 255  + STRLEN( lt_objtxt ) .
    Main Text
    wa_doc_chng-doc_size = ( v_lines_txt - 1 ) * 255 + strlen( i_objtxt ).
      CLEAR lt_objpack-transf_bin.
      lt_objpack-head_start = 1.
      lt_objpack-head_num = 0.
      lt_objpack-body_start = 1.
      lt_objpack-body_num = lv_lines_txt.
    lt_objpack-doc_type = 'RAW'.
        lt_objpack-doc_type = 'TXT'.
      APPEND lt_objpack.
    Attachment
    (pdf-Attachment)
      lt_objpack-transf_bin = 'X'.
      lt_objpack-head_start = 1.
      lt_objpack-head_num   = 0.
      lt_objpack-body_start = 1.
      DESCRIBE TABLE lt_objbin LINES lv_lines_bin.
      READ TABLE lt_objbin INDEX lv_lines_bin.
      lt_objpack-doc_size = ( lv_lines_bin - 1 ) * 255 + STRLEN( lt_objbin ) .
      lt_objpack-body_num = lv_lines_bin.
      lt_objpack-doc_type = 'PDF'.
      lt_objpack-obj_name = 'ATTACHMENT'.
      lt_objpack-obj_descr = lv_descp.
      APPEND lt_objpack.
      LOOP AT t_mail_addr.
        CLEAR lt_reclist.
        lt_reclist-receiver = t_mail_addr-mailid.
        lt_reclist-rec_type = 'U'.
        APPEND lt_reclist.
      ENDLOOP.
      IF t_mail_addr[] IS INITIAL.
        CLEAR lt_reclist.
        lt_reclist-receiver = mail id.
        lt_reclist-rec_type = 'U'.
        APPEND lt_reclist.
      ENDIF.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = ls_doc_chng
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = lt_objpack
          object_header              = ls_objhead
          contents_bin               = lt_objbin
          contents_txt               = lt_objtxt
          receivers                  = lt_reclist
         CONTENTS_HEX                = lt_objbin
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      DATA: l TYPE sy-subrc.
      l = sy-subrc.
    When i run the above code in Se38, I get an email with a attachment that i am able to open. The problem seems to be with user WF_BATCH.
    I have already checked all the existing threads on this. I did this coding as per one of the SDN threads itself.
    I am able to open the PDF attachment even when i test the method. The problem is only when it is run through a task/workflow.
    Please advice.
    Thanks and Regards,
    Soumya Gayatri.
    Edited by: Soumya Gayatri on Apr 14, 2009 8:40 PM
    Edited by: Soumya Gayatri on Apr 14, 2009 8:44 PM
    Edited by: Soumya Gayatri on Apr 14, 2009 8:45 PM
    Edited by: Soumya Gayatri on Apr 14, 2009 8:47 PM
    Edited by: Soumya Gayatri on Apr 14, 2009 8:47 PM

    Hello,
    You should see an "Edit" in the top right of your post, you can use that to edit it.
    As I said, use  before and after the coding, but without the spaces (after "{" and before "}" ).
    Try it!
    Testing:
    this is code
    regards
    Rick Bakker
    Hanabi Technology

  • Unable to Open PDF Documents - DDE Server Error

    Each time I open a document using Adobe Reader XI, I get an error message "Unable to contact DDE Server". Is there a fix for this?

    First thing to try is to disable Protected Mode [Edit | Preferences | Security (Enhanced)].

  • How to open PDF automatically when printing with distiller?

    Does anybody know how to get the PDF to automatically open when I print a  document using distiller please?  It is driving me crazy
    Thanks
    Mark

    I am printing to a single PS file from my wordprocessor. Distiller watches the PS file folder and automatically converts the PS file to PDF. Then nothing happens, despite toggling of the 3 options. Is this universal, does it never work?
    When I use a Windows wordprocessor (like MS Word or WordPerfect for Windows) and the Adobe PDF printer driver, then the PDF is automatically opened in Acrobat, but I understand that Distiller is bypassed. Acrobat ignores the product of Distiller -- unless, of course, you doubleclick on Distiller's PDF output icon, or right-click on it and choose View.
    Acrobat 7 (I believe it was) opened automatically for us from Distiller. How disappointing if 9 has irretrievably lost this ability.

  • Hi, I have a MacBook Air and try to save and open pdf document but receive this message: Adobe Reader could not open 'aw14lookbook.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an ema

    Adobe Reader could not open 'aw14lookbook.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).

    Most likely http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html

  • When using firefox, table lines are displayed in a pdf document when I set them to backround colour not to display borders, can you help?

    I am an Web Designer and create PDF files for download from the sites that I develop. I use version 19.0 of Firefox.
    Included in these PDF files are tables which display certain data, and I have made some table columns wider with the fill colour the same colour as the table border colour.
    Recently table borders have appeared in the filled in areas, which I do not want to happen.
    Also the look of the Adobe Reader is different in Firefox. and normal in IE and Opera browser which I also use.
    So overall, the the PDF file is not being displayed correctly in Firefox. If I could I would have attached a screen dump of the display error, to help. Can you offer a solution please?

    The same problem here, this started with the latest version.
    I found a temporal solution which is change the default "previewer" in the Options -> Applications tab
    You need to install the Adobe Reader Plugin described [[here|http://support.mozilla.org/en-US/kb/use-adobe-reader-plugin-view-or-download-pdf-files]].

  • How to open pdf files in browser using flex

    hi,
    my project is having a Document explorer wchich contains pdf
    files,iwant to open it in the browser.can any one tell me how to
    open pdf documents using flex programming(i tried with different
    thing like swf's but my client wants only pdf formatt).

    Another option is by calling a JSP page. This example will
    open a pdf file into a new browser without displaying the download
    "save" prompt.
    Function to call the JSP:
    private function downloadFlyer(event:Event):void {
    var jspLink:URLRequest = new
    URLRequest("jsp/downloadpdf.jsp?fileName=Fundraiser_flyer_2008.pdf");
    navigateToURL( jspLink, "_blank" );
    JSP code:
    <%@ page errorPage="error.jsp" %>
    <%@ page import="java.io.*" %>
    <%
    //Get the parameters
    String downloadFileName=request.getParameter("fileName");
    String fileName = application.getRealPath("/downloads/" +
    downloadFileName);
    File file = new File(fileName);
    if (!file.exists()) {
    throw new IOException("File does not exist.");
    // Get the size of the file
    long length = file.length();
    // You cannot create an array using a long type.
    // It needs to be an int type.
    // Before converting to an int type, check
    // to ensure that file is not larger than Integer.MAX_VALUE.
    if (length > Integer.MAX_VALUE) {
    throw new IOException("File too big.");
    response.reset();
    response.resetBuffer();
    response.setContentType( "application/pdf" );
    response.setHeader ("Content-Disposition", "filename=" +
    downloadFileName);
    //Prevent the Java error: "getOutputStream() has already
    been called for this response"
    out.clear();
    out = pageContext.pushBody();
    InputStream in = new FileInputStream(file);
    OutputStream output = response.getOutputStream();
    try {
    int curByte=-1;
    while( (curByte=in.read()) !=-1){
    output.write(curByte);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    } finally{
    output.flush();
    in.close();
    response.flushBuffer();
    %>

  • Open PDF document through JavaFX

    Hello All,
    I want to open pdf document when user clicks on "Help" link in JavaFX. PDF document is usually locally stored on user's machine.
    How I can achieve this ?
    thnx in advance,
    Venky

    Will it work for Linux ?No, of course.
    I think you must do something like:
    var params = [ 'cmd', '/c', pdfFilePath ]; on Windows
    var params = [ 'open', pdfFilePath ] on Mac
    var params = [ 'gnome-open', pdfFilePath ] on Linux with Gnome
    var params = [ 'kde-open', pdfFilePath ] on Linux with KDE
    then your Runtime.getRuntime().exec(params);
    You can catch exceptions if you are not sure of the platform (particularly Gnome vs. KDE): if raised, try something else...
    That's how Processing does its open() function. (Untested in JavaFX...)

  • Error Occurs When Opening PDF Documents Over Home Netrwork

    Installation:  XP/SP3; Adobe CS2 Premium (Acrobat Professional 7.1.0); Wireless Home Network with Cisco Router; shared My Documents folder stored on the Desktop PC.
    Problem:  PDF documents created locally with Adobe Acrobat and stored in the My Documents folder on the Desktop PC can not be opened by my laptop PC when they are accessed over the home network.  The error message received from Adobe Acrobat is “There was an error opening this document.  Access denied.”  There is no error number.  Click OK is the only option.  However, the same PDF documents can be successfully accessed and opened using the Desktop PC.
    PDF documents stored in the shared My Documents folder on the PC that have NOT been created locally using Adobe Acrobat can be successfully opened over the home network and by the Desktop PC.  All other non-PDF files can be successfully access and opened over the home network.
    Is there some setting within the Adobe installation that is blocking access to locally created PDF files over my home network?

    John - in viewing Properties the key difference is under the PDF Tab.  The
    PDF documents that can't be accessed over my home network do not have any
    entry for the application that created the document, and the PDF Producer
    section is also blank.  I also discovered a PDF document created on my
    laptop and stored on my Desktop can be successfully accessed by the laptop
    over my home network as well as the Desktop PC, and the PDF Tab has the
    correct information.  It would appear there is incorrect option or corrupted
    application with the Adobe software on my Desktop.
    Can you provide some additional guidance on how best to provide you all the
    creation options in Acrobat?
    Thank you.

  • Hello! I just want to know how to open a document (.pdf or .doc).

    I have looked at Labview\vi.lib\platform\browser.llb\Open a Document on Disk.vi but the vi has many subvi's. It works well but when I  build a new application I always get errors when I try to open the document. Thank you.

    Altenbach....  we're gonna start calling you "Hawkeye" 
    There was not much info on the other post other than tst's reply..  I'll check it out..
    Thanks buddy!
    RayR
    EDIT PORTION:
    Humm...  the titles were similar....  "Hello! I just want to know how to open a document (.pdf or .doc) after the press of a control button. Thank you."
    But you're right.. nothing mentioned about a build..  >> SORRY: Not Duplicate Post <<
    Message Edited by JoeLabView on 09-21-2007 11:38 AM

  • I am trying to use powerpoint but when I open a document I want to work on it does not open on my desktop. It appears as open on mission control but it disappears offscreen. How can I get it to open where i need it and can work on it?

    I am trying to use powerpoint but when I open a document I want to work on it does not open on my desktop. It appears as open on mission control but it disappears offscreen. How can I get it to open where i need it and can work on it?

    It's almost certainly too late.
    The time to create a backup is before a catastrophe.  After a catastrophe, it's too late.

  • I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working"

    I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working" then I get Windows is looking on line for a solution, but then my document closes. I tried uninstalling and reinstalling Adobe Reader XI, rebooted my computer but this did not help.  I get the same message. What to do?

    Can you open Reader by itself?  If so, check if disabling Protected Mode improves the situation [Edit | Preferences | Security (Enhanced)].

  • I am running Vista and Windows Mail, I can not open PDF files when in Windows Mail, I must save to Desktop first, this has changes recently and I do not know why or how to fix

    I am running Vista and Windows Mail, I can not open PDF files when in Windows Mail, I must save to Desktop first, this has changes recently and I do not know why or how to fix.
    Why after 6 year's this has changed?
    I would like to open PDF's straight from Window Mail.

    Good day Jeff.
    I am running most current Adobe Reader X.
    Tks Mark

Maybe you are looking for

  • Can no longer download journal articles with Safari or Firefox

    As of three weeks ago I am no longer able to download and save journal articles, though I am able to read them.  I can save documents when there is simply a "save" or "view" button indicated next to a document in small blue letters if I click the "sa

  • Spatial index - mapviewer demo

    Hi, I tried the mapclient.jsp demo of the maviewer demo and it only returns a blue image. I check the log file and found this: [oracle.sdovis.JDBCDataSource4PT, Thu May 18 10:21:36 CST 2006, ERROR] *** SQL Exception while querying theme: THEME_DEMO_C

  • When getting information from SLD, should SMSY create a system for EP?

    I've connected my EP NW2004s system ES3 to the SLD.  I connected Solution Manager 4.0 to SLD so that SMSY can get information from the SLD.  When I run the import, I see: 1. ES3's server sapeps03 created under SMSY Landscape Component ->Server. 2. ES

  • Smtp-plugin

    Hello, the smtp-plugin was introduced with the sap web as 6.10. In the documentation is described that the smtp-plugin replaces external components to exchange E-Mails with a mail-server. I think, it replaces absolutely to communicate with - ms excha

  • Unable to Data Collection Methods in CCMS/RZ20

    Hi gurus, There are lot of Montoring Objects for which there are no data collection methods already assigned which I am trying to do. I am able to do method assignments only to data analysis and auto reaction methods but not " data collection " which