Problem in download pdf files.

I downloaded adobe reader but it shows invalid PDF file how can I read these files.

To configure the browser to use Acrobat or Adobe Reader to open PDF files:
1. Quit Internet Explorer(any other browser)
2. Start Acrobat or Adobe Reader.
3. Choose Edit > Preferences.
4. Select Internet in the list on the left.
5. Deselect(Uncheck) Display PDF in Browser, and click OK.
6. Restart Internet Explorer

Similar Messages

  • Spool to PDF - Problems with downloading PDF file when converting with job

    Hi all!
    I've got a problem. I've got a program that writes a smartform into the spool. After that, I am using the function modules RSTS_GET_ATTRIBUTES and CONVERT_OTFSPOOLJOB_2_PDF to convert it into PDF. I retrieve a internal table with the binary content for the PDF file. Now i can download the file to the desktop by using the method cl_gui_frontend_services=>gui_download.
    But there is a problem: when the spool excesses 99 pages, the function module CONVERT_OTFSPOOLJOB_2_PDF asks the user via popup if the PDF should be created in background. If the user commits, the internal tables that should contain the binary PDF data is emtpy. A background job writes the binary data into the spool. The user has got an empty file that will be generated by cl_gui_frontend_services=>gui_download.
    So, is it possible to suppress the popup to create the PDF allways online? Or how can I write the PDF file if there will be create any spool id in background? You'll find my current code below.
    * Prüfen ob es die übergebene Spoolnummer überhaupt gibt
      SELECT SINGLE * FROM tsp01 INTO ls_tsp01 WHERE rqident = id_spoolid.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
    * TemSe-Objekte speichern sequentielle Daten. Ein TemSe-Objekt kann aus
    * mehreren Teilen bestehen. Dieser FB ermittelt die wichtigsten Attribute
    * eines TemSe-Objekts. Falls das Objekt aus mehreren Teilen besteht, werden
    * die Attribute entsprechend zusammengefaßt.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
        EXPORTING
          client        = ls_tsp01-rqclient
          name          = ls_tsp01-rqo1name
          part          = 1
        IMPORTING
          objtype       = ld_objtype
        EXCEPTIONS
          fb_error      = 1
          fb_rsts_other = 2
          no_object     = 3
          no_permission = 4
          OTHERS        = 5.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
      IF ld_objtype(3) = 'OTF'.
        lf_is_otf = 'X'.
      ELSE.
        lf_is_otf = ' '.
      ENDIF.
      IF ( lf_is_otf = 'X' ).
    *   Konvertiere OTF-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
    *        pdf_destination          = 'T'
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          EXCEPTIONS
            err_no_otf_spooljob      = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_dstdevice        = 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.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ELSE.
    *   Konvertiere ABAP-Liste-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_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.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ENDIF.
      WHILE ( lf_file_ok = '' ).
    *   Die in der Tabelle lt_pdf enthaltenen Binärdaten werden nun in eine
    *   Datei geschrieben. Da alle übergebenen Tickets in die gleiche Datei
    *   geschrieben werden, kann der im Speicher gehaltente Protokolleintrag
    *   gelesen werden
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            bin_filesize              = ld_numbytes
            filename                  = cd_filename
            filetype                  = 'BIN'
    *    append                    = SPACE
    *    write_field_separator     = SPACE
    *    header                    = '00'
    *    trunc_trailing_blanks     = SPACE
    *    write_lf                  = 'X'
    *    col_select                = SPACE
    *    col_select_mask           = SPACE
    *    dat_mode                  = SPACE
          confirm_overwrite         = 'X'
    *    no_auth_check             = SPACE
    *    codepage                  = SPACE
    *    ignore_cerr               = ABAP_TRUE
    *    replacement               = '#'
    *    write_bom                 = SPACE
    *    trunc_trailing_blanks_eol = 'X'
    *    wk1_n_format              = SPACE
    *    wk1_n_size                = SPACE
    *    wk1_t_format              = SPACE
    *    wk1_t_size                = SPACE
    *  IMPORTING
    *    filelength                =
          CHANGING
            data_tab                  = lt_pdf
          EXCEPTIONS
            file_write_error          = 1
            no_batch                  = 2
            gui_refuse_filetransfer   = 3
            invalid_type              = 4
            no_authority              = 5
            unknown_error             = 6
            header_not_allowed        = 7
            separator_not_allowed     = 8
            filesize_not_allowed      = 9
            header_too_long           = 10
            dp_error_create           = 11
            dp_error_send             = 12
            dp_error_write            = 13
            unknown_dp_error          = 14
            access_denied             = 15
            dp_out_of_memory          = 16
            disk_full                 = 17
            dp_timeout                = 18
            file_not_found            = 19
            dataprovider_exception    = 20
            control_flush_error       = 21
            not_supported_by_gui      = 22
            error_no_gui              = 23
            OTHERS                    = 24.

    Creating a PDF file with over 99 pages through SAP seems rather unreasonable to me. What are you printing - Encyclopedia Britannica? For cripes sake... Have you thought about creating more than one spool request or using something completely different? Why do you have to do this through spool? You can get Smartform output directly into PDF, there are a lot of example out there.
    The only solution that comes to mind is rather brutal - create a copy of the function module and get rid of the popup. Although it just might time out after that...

  • Has anyone experienced problems saving downloaded pdf files in Yosemite?

    In Mavericks, I could choose the pdf file destination folder using the save dialog box's "search" entry to select the folder to save a file in. Now the search feature seems to have been disabled. Yosemite appears to have implemented a new method to choose a destination folder. It sometimes allows me to navigate to a parent folder and get a list of sub folders that I can scroll through to choose the desired one. Problem is that the feature seems to be unstable - I can't reliably get this feature to work and wonder if I can downgrade to Mavericks.

    In Mavericks, I could choose the pdf file destination folder using the save dialog box's "search" entry to select the folder to save a file in. Now the search feature seems to have been disabled. Yosemite appears to have implemented a new method to choose a destination folder. It sometimes allows me to navigate to a parent folder and get a list of sub folders that I can scroll through to choose the desired one. Problem is that the feature seems to be unstable - I can't reliably get this feature to work and wonder if I can downgrade to Mavericks.

  • Problem opening downloaded PDF files

    When I click on a PDF link in Safari, I would normally expect the document to open with Acrobat 7.0.
    What is happening now, is that the screen changes to 'browse' option asking me to identify which application will open the PDF. When I click on Acrobat 7.0, the screen goes blank.
    So, basically, I can't open downloaded PDFs from Safari, (though it's Ok with Opera, Firefox etc)
    In the Acrobat prefs, in the internet settings, 'Display PDF in browser using: Adobe Acrobat 7.0 Professional (7.0.0)' is checked.
    Mac Power PC, 2G RAM, OSX 10.4.11; Safari 3.2.1, Acrobat 7.0.0

    Do you have more that one version of Acrobat or reader loaded?
    Only one is certified to work at a time.

  • Problem in Downloading PDF file in ITS

    Hi,
    We are using SSFCOMP_PDF_PREVIEW function module , in ITS only blank screen appearing. There after we made Z function module  where we called the ALEWB_DOWNLOAD function module of the screen PBO module. Now file is getting displayed in a full screen mode. We want that file should come within screen as it is normal R/3 scenario.Please help in this. Is there any other download function module which works in ITS(Internet Transaction Service)

    First create the Samrtform for the preview and then convert the same using the FM below:
    call function 'CONVERT_OTF'
           exporting
                format                = 'PDF'
           importing
                bin_filesize          = v_binfilesize
           tables
                otf                   = gt_otf[]
                lines                 = gt_pdf[]
           exceptions
                err_max_linewidth     = 1
                err_format            = 2
                err_conv_not_possible = 3
                others                = 4.
      if sy-subrc <> 0.
        raise no_pdf_written.
      endif.

  • Problems viewing downloaded PDF files with Adobe Download Assist.

    How can I start using Adobe Down Load Assist, I need to view some forms in PDF format? & How can I change the way I view my forms?

    Are you trying to view PDF forms?  If so then you may want to use Adobe Reader.  You can find the download for Adobe Reader at http://get.adobe.com/reader/.

  • PDF PROBLEMS!  Not able to download PDF files into Safari anymore?!?

    I was always able to download PDF files into Adobe Reader from the internet. I can't download them anymore...My MacBook keeps trying to load and reload the page, but never does it. I downloaded the most recent Adobe Reader 9, but this did not fix the problem. I can open PDF files I have saved, but can' t download them in Safari. Any ideas? Thanks-

    Hi Jes,
    I get an error message saying
    "The page cannot be found"
    infact when i hover the mouse over the link i am able to see the correct path and the correct correct values as follows
    schema.procedure?V=04&C=001
    but when i click on it, i get the error as above.
    i am not sure whether it is any permissions issue in linux. or is the procedure not getting executed properly at all.
    but iam able to read those pdfs and insert them into an oracle table.
    but just not able to download them back again.
    but exactly the same code and same tables etc work in windows.
    Thanks,
    Philip.

  • Problem downloading pdf file in Safari

    My website has a link which downloads a pdf file, which opens in a new browser window. In OS X, this works properly using the latest Safari update (4.0.5), as well as in Firefox and several other browsers (the file opens in Preview). I also run Windows XP using Boot Camp. I updated Safari to 4.0.5 in Windows, and also installed the latest version of Adobe Reader. But when I link to the pdf file in Windows using Safari, the program freezes. Both Firefox and Internet Explorer download the pdf file properly in Windows (the file opens in Adobe Reader).
    I'm pretty sure that earlier Windows Safari versions correctly downloaded pdf files. Could this be a problem with Safari 4.0.5? Is there plugin in the new Safari that I'm missing, or something that needs to be set in either Safari or Adobe Reader?

    I went through the recommended uninstall/reinstall procedure, but unfortunately it didn't fix the problem. When I first ran the new Safari install and clicked on the link to download the pdf, it opened a new window with a message that it couldn't find the server on which the pdf file is located (but of course it's on the same server as the parent page). After churning (hourglass cursor) for a couple of minutes, the new page (now running Adobe Reader, I think) displayed a small cube with question marks (missing file). On subsequent tries, Windows shut down Safari as "not responding".
    I suspect that the problem is with Adobe Reader 9.3.1 and its interaction with Safari. (The other browsers continue to download the pdf properly.) I checked the Adobe site but didn't see an obvious way to install an earlier version of Reader, but willl investigate this further.
    Many thanks for your help. (I've been forced to learn more about Windows than I really wanted to know.)
    Charles Hearn

  • I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this

    I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this is extremely irritating, I cannot re-initialize the same file or initialize and another PDF file after I have initialized the first file. If you cannot help please let me know if should use an earlier  version of Reader or find anther company that has the appropriate software.

    Perhaps you missed that you started a discussion at I have OS 10.9.2 and have downloaded latest version of Reader 11. I can no longer fill in form or scroll using the side bar. and you did not respond to the last post there.

  • Hi, since installing mountain lion on my macbook, it wont download pdf files from internet sites, the same problem does not exist on my mac mini, i am using firefox on both macs, please help!

    Hi, since installing mountain lion on my macbook, it wont download pdf files from internet sites, the same problem does not exist on my mac mini, i am using firefox on both macs, please help!

    Back up all data.
    Quit Safari. In the Finder, select Go ▹ Go to Folder... from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then launch Safari and test.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • I cannot download PDF files and have many other problems with updates since 3.6.18 are you guys going to fix or should I switch to IE?

    Hi Guys,
    I have had heaps of trouble with plugins and add on's since using upgrades after 3.6.18. Now I cannot download PDF files!
    Are you Guys going to fix what used to be a good browser or do I have to use IE?
    Please keep it simple.
    John Smith

    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE any Unwanted/Suspicious Extensions (add-ons) -> Restart Firefox
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Zoom -> click "Reset"
    -> go to View Menu -> Page Style -> select "Basic Page Style"
    -> go Tools Menu -> Clear Recent History -> '''''Time range to clear: select EVERYTHING''''' -> click Details (small arrow) button -> place Checkmarks on ALL Options -> click "Clear Now"
    -> go to Tools Menu -> Options -> General -> '''''When Firefox starts : select "Show My Home Page"''''' -> Type the address of the website which you want to be your HomePage e.g. http:www.google.com -> click OK
    You can enable the Trustworthy Add-ons later. Check and tell if its working.

  • Mavericks 10.9.1. Freezes or trackpad becomes slow and unresponsive when viewing downloaded PDF files in Preview.Help!

    The earlier post was my first attempt at posting and had some typos. Repeated with typos corrected.
    I have a Macbook Pro Retina 13" Late 2013 with preinstalled Mavericks.I now have the 10.9.1 update. Almost from the time of purchase in Nov '13, I have been experiencing freezes and slow & unresponsive trackpad. I have more or less narrowed this symptom as happening when viewing downloaded PDF files. The only option is to force eject, if available or shut down. I spoke to Support as I thought it was a RAM issue and they told me that in Mavericks RAM showing almost full was normal as it uses RAM differently. They took me through some resets and cleaning up which has helped a little but freezing stll happens. This never happened with my Macbook AIr running Lion. Any suggestions?
    Shankar9
    Macbook Pro Retina 13" Late '13-Mavericks 10.9.1
    Macbook Air 13" Mid '11-Lion
    Macbook Aluminium 13" Late '08-Snow Leopard

    So a PDF file that you can view in Preview on your MBA causes your new MBP to lock up and/or slow down. Is this right? Also you say more or less narrowed down to PDFs with Preview but does the computer exhibit this behavior with other programs and if so under what conditions? And how much free hard drive space do you have?
    Viewing memory use in Mavericks is different than with previous versions of the OS. Today it looks like we need to pay attention to what Apple calls Memory Pressure which is gauged by the bar graph in Activity Monitor and to the Virtual Memory being used. When the memory pressure graph bar gets too high it turns red and that's bad news. Looking at how much memory is being used doesn't help - I have a 16GB computer and with almost nothing running it still shows something like 15.79GB used but the memory pressure graph is just a think green line. So unless you see the memory pressure bar turning red lets not worry about memory usage at the moment.
    If among the things AppleCare had you do was reinstall Mavericks then I recommend a trip to the Apple store - and take a problem PDF file with you to demonstrate.

  • Adobe Reader 9.0 has delay when downloading PDF file through proxy server

    There is an issue with the Adobe Reader (and Acrobat) 9.0 PDF Link Helper ActiveX control for Internet Explorer (6 or 7) on Windows computers with respect to proxy servers. Due to this issue, there is a 2 minute delay for any Internet Explorer web browser on the Deere network before any PDF file will open from the Internet within the IE web browser if In-Place activation (Display PDF in Browser) is enabled in Adobe Reader 9. This problem does not affect Adobe Reader 8.
    What we are seeing is that when someone on the Deere network clicks on a links to a PDF file in the Internet, the PDF file downloads immediately. But then, after the PDF file is downloaded, the Adobe Reader 9 PDF Link Helper ActiveX control tries to talk directly to the Internet web site. The Adobe Reader 9 PDF Link Helper ActiveX control does not know how to negotiate our proxy server. So after a minute or two, the Adobe Reader 9 PDF Link Helper ActiveX control times out (gives up) and allows the IE browser to display the downloaded PDF file in the IE browser.
    We work around this issue by disabling In Place Activation for PDF files in IE (uncheck Display PDF in Browser). But we would like a fix for the PDF Link Helper ActiveX control.
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\9.0\Originals]
    "bBrowserIntegration"=dword:00000000
    [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\9.0\Originals]
    "bBrowserIntegration"=dword:00000000
    Here's what our proxy people see when they do a trace of a PDF file download through their proxy server with IE 7 and Adobe Reader 9 with Display PDF in Browser checked.
    The browser tells the proxy to download the pdf, it does and sends it to the browser. Before the browser opens it something in Acrobat ( or I.E. ? ) tries to make a connection back to the content server that hosted the pdf. Unfortunately this agent does not ask the proxy to make the request for it, but rather asks local DNS to resolve the Internet server name. This request dies because our internal private network does not know anything about the Internet. Only the DNS used by the proxy can resolve Interent names. After two unsuccessful DNS queries into the private network, the agent tries to resolve the same Internet name with NBNS ( netbios name service) queries again into the private network, with the same results. These requests persists for more than two minutes ( over 200 unresolved queries ). Then for whatever reason the agent gives up and the already downloaded pdf file loads into the browser.
    I have a TCP capture file if you want it.

    Hi,
    I have the same problem with some specific PDF files. For more than 90% it hangs when opening the file, but sometimes it works (with the same file).
    The workflows where it sometimes worked:
    a) Loading the PDF, the reader is started the first time and displays license dialog.
    b) The reader was already runing and file is loaded with Drag&Drop or File/Open in the Reader
    But most times it does not load.
    I could not find out which file is missing or trying to be opened. So I tried with the CP949.TXT.
    I found no CP949.TXT in Reader 8 installation, so I took it from the link, pasted into notepad and stored in the respective directory
    C:\Program Files (x86)\Adobe\Reader 9.0\Resource\TypeSupport\Unicode\Mappings\win\
    Now it seems to work fine, opening PDFs with double click from exporer.
    But why did Adobe Reader 8 not have the TypeSupport directory at all?
    Even when having found a fix (hack?), I think I did not understand the cause of this problem.
    Regards,
    TheLastReader

  • When I try to open a downloaded PDF file it opens for about 6 seconds and then closes - how can I fix that?

    I am using a Dell XPS8500 desktop with 64 bit Windows 7.
    No problem downloading PDF files but when I open them they disappear before I can print.

    Hello,
    Which application are you trying to open the PDF files in? Firefox or Adobe Reader? Or another?
    If adobe reader then please make sure that your copy is up to date. You can get the latest version here - http://get.adobe.com/uk/reader/
    Also I notice that you are using Firefox 19. Unless you have a particular reason to run an old version of Firefox is it much better to keep updated. The latest version is v22. New security fixes are applied in every new version of Firefox. Without them your PC is vulnerable. Please see this article: [[Update Firefox to the latest version]]

  • With the new update: I click on .pdf to download and multiple new tabs open w/o downloading .pdf file

    Every time I click to download a .pdf file for a study on the following site
    http://www.regionschristiancenter.org/the-rabbis-son/rabbis-son-study-archives/archives-dvarim-deuteronomy/
    Firefox opens multiple new tabs and does not stop doing so until I close the browser and even then it opens up on its own and continues to open multiple new tabs. If I do not get to it quickly enough, I may have to do this more than twice.
    I have tried downloading a study on Internet Explorer and do not have this issue. There is also a Microsoft Word option that works on Firefox but it's the .pdf that is the problem.
    I have not attempted to download any other .pdf files from other sites so I do not know if it is a problem with all .pdf files. But as stated above, it is not an issue with .pdf on IE.

    Could you check your PDF viewer preference and try changing it to a different viewer to see whether that helps? This article describes how to access that setting: [[How to disable the built-in PDF viewer and use another viewer]].
    Unfortunately, the settings file that stores those application handling preferences sometimes contains crossed up settings or settings which Firefox cannot actually implement. In that case, you generally need to rename or remove that file and let Firefox rebuild it. The steps for that are in this article: [[Firefox repeatedly opens empty tabs or windows after you click on a link]] -- skip to the section "Reset actions for all content types".

Maybe you are looking for

  • HT1923 I can't delete the Apple folder in Common Files

    My computer would not recognize my iPhone.  I tried the troubleshooting tips found online, uninstalling everything in order.  When verifying all files had been removed, I could not delete the Apple folder in Common Files as it says the folder or a fi

  • System Tray Status Error Message

    HP CP1025nw.  XP.  with USB connection.  Printer works fine, but gives error message on screen, "HP Systems Tray has encountered a problem and needs to close.  We are sorry for the inconvienience."    "Please tell Microsoft about this problem.  (send

  • Memory Efficiency of BufferedImage and ImageIO

    This thread discusses the memory efficiency of BufferedImage and ImageIO. I also like to know whether if there's possible memory leak in BufferedImage / ImageIO, or just that the result matches the specifications. Any comments are welcomed. My projec

  • [ANN}10.1.2 Fix-List is available

    If you were wondering whether to upgrade to JDeveloper 10.1.2, here is the fix-list of the bugs fixed in this release: http://www.oracle.com/technology/products/jdev/htdocs/10.1.2.0.0/1012fixlist.htm

  • START UP ERROR;  Please upgrade your video display drivers.

    I recently updated to the latest version of Premiere Pro CC (2014) and when I opened it I got the message about updating the video drivers as it could not find any capable play modules. I have looked everywhere on how to update the drivers but have f