Problem to download a IR to PDF

Hi,
I'm trying to download the data from a IR to a PDF, I have already select the Download Formats: CSV, HTML and PDF.
I'm able to download but when i'm going to open the file comes a message: " The Adobe Reader cannot open 'myfile.pdf' because there isn't support for this kind of file or he was damage".
Apex version: 4.0.0.00.46
Adobe Reader version 9.4.1
Is this error related to the version or I must make another configuration??
Thanks,
Alan

Hi,
Have you configured printing server?
See this document. Even it is for Apex 3.x you get picture what need to be done to get PDF:s
http://www.oracle.com/technetwork/developer-tools/apex/application-express/configure-printing-093060.html
Regards,
Jari

Similar Messages

  • Has anyone run into the problem of downloading or opening an E.pdf file? I am running on 10.6.8 and am unable to open the file. Any suggestions?

    Has anyone run into the problem of downloading or opening an E.pdf file? I am running on 10.6.8 and am unable to open the file. Any suggestions?

    That crash appears to be casued by the Facebook plug-in.
    Create a new account (systempreferences -> accounts or Users & Groups on 10.7 and 10.8), make a new Library in that account, import some shots  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.

  • Problem with downloading PDFs

    I have just downloaded a new version of Adobe Reader X 10.1.2 but can't download PDFs such as my electricity bill and t.v. licence

    Thanks for your help.  I’ve now sorted it via help from the site where I was trying to download the PDF from.  The following action solved the problem:
    ·        Click on 'Tools' then 'Internet Option'
    ·        Click 'Advanced'
    ·        Scroll down to Security
    ·        Uncheck 'Do Not Save Encrypted Pages to Disk'
    ·        Click 'Apply'
    ·        Click 'OK'
    Re: problem with downloading PDFs
    created by MichaelKazlow <http://forums.adobe.com/people/MichaelKazlow>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/4228358#4228358

  • Problem in downloading smartform as pdf file...

    Hi SDNs.,
    while downloading the invoice layout as .PDF file.. i am getting following error...
    <b>OTF end command // missing in OTF data</b>
    and the file is downloading as empty size... ( xyz.pdf with 0kb )
    It is working fine in sandbox... i am getting this error in production...
    what could be the probelm? when this type of error occurs?

    hi raghu.,
    CALL FUNCTION LF_FM_NAME
            EXPORTING
              ARCHIVE_INDEX      = TOA_DARA
              ARCHIVE_PARAMETERS = ARC_PARAMS
              CONTROL_PARAMETERS = W_CTRLOP
              MAIL_RECIPIENT     = LS_RECIPIENT
              MAIL_SENDER        = LS_SENDER
              OUTPUT_OPTIONS     = LS_COMPOSER_PARAM
              USER_SETTINGS      = 'X'
              IS_BIL_INVOICE     = LS_BIL_INVOICE
              IS_NAST            = NAST
              IS_REPEAT          = REPEAT
              OUT_TYPE           = V_OUTPUT
              TEMP_LST           = TEMP_LST
              TEMP_CST           = TEMP_CST
              TEMP_TELF1         = TEMP_TELF1
              TEMP_TELFX         = TEMP_TELFX
              TEMP_NAME1         = TEMP_NAME1
              TEMP_STRAS         = TEMP_STRAS
              TEMP_ADRNR         = TEMP_ADRNR
              TMP_VAT            = TMP_LST
              TMP_CST            = TMP_CST
              TEMP_WERKS         = TEMP_WERKS
              VAT_DATE           = VAT_DATE
              CST_DATE           = CST_DATE
              VAT                = VAT
              I_ADDRESS          = I_ADDRESS
              FLAG_HDR           = FLAG_HDR
              I_ADDR             = I_ADDR
              TMP_CST_DATE       = TMP_CST_DATE                 " mod-004
              TMP_LST_DATE       = TMP_LST_DATE                 " mod-004
            IMPORTING
              JOB_OUTPUT_INFO    = W_RETURN
            TABLES
              IT_KONV            = TEMP_KONV
              IT_VBRP            = IT_VBRP_FORM
            EXCEPTIONS
              FORMATTING_ERROR   = 1
              INTERNAL_ERROR     = 2
              SEND_ERROR         = 3
              USER_CANCELED      = 4
              OTHERS             = 5.
          IF SY-SUBRC <> 0.
      error handling
            CF_RETCODE = SY-SUBRC.
            PERFORM PROTOCOL_UPDATE.
    get SmartForm protocoll and store it in the NAST protocoll
            PERFORM ADD_SMFRM_PROT.
          ENDIF.
        ENDDO.
        LS_COMPOSER_PARAM-TDCOPIES = NAST_ANZAL.
        IF NOT NAST_TDARMOD IS INITIAL.
          NAST-TDARMOD = NAST_TDARMOD.
          CLEAR NAST_TDARMOD.
        ENDIF.
      ENDIF.
    ************************add for pdf**********************************
      I_OTF[] = W_RETURN-OTFDATA[].
      DATA : ITAB2 LIKE DOCS OCCURS 0,
              SIZE TYPE I.
      BIL_NUM = LS_BIL_INVOICE-HD_GEN-BIL_NUMBER.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
       EXPORTING
         USE_OTF_MC_CMD               = 'X'
      ARCHIVE_INDEX                =
       IMPORTING
         BIN_FILESIZE                  = SIZE
        TABLES
          OTF                          = I_OTF
          DOCTAB_ARCHIVE               = ITAB2
          LINES                        = I_TLINE
       EXCEPTIONS
         ERR_CONV_NOT_POSSIBLE        = 1
         ERR_OTF_MC_NOENDMARKER       = 2
         OTHERS                       = 3
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ****************download************************
      CONCATENATE 'C:\' BIL_NUM '.PDF' INTO FILENAME.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                    =
          FILENAME                        = FILENAME
          FILETYPE                        = 'BIN'
    IMPORTING
      FILELENGTH                      =
        TABLES
          DATA_TAB                        = I_TLINE
      FIELDNAMES                      =
       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
         OTHERS                          = 22
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      IF SY-SUBRC = 0.
      message  i000.
      ENDIF.
    is this enough????
    Thanking you..,

  • How to download dunning letter to PDF file in background?

    Hi experts:
    Now my user have a request to download dunning letter to PDF file.
    What I want to know is if there is any way to config to solve this problem or I must develop a program to download?

    hello
    check standard program RSTXPDFT4
    or use function module
    CONVERT_OTFSPOOLJOB_2_PDF
    Thanks
    Anirudh

  • Download ALV report to PDF with Lights

    Hi,
    I have a requirement wherein, when i download ALV report to PDF which has Lights in the first column.  My problem is these lights are not displayed instead i get the following in the PDF
    PDF o/p:
    XOO RED SIGNAL
    OXO YELLOW SIGNAL
    OOX GREEN SIGNAL
    Please let me know how to get the lights in the PDF o/p
    Thanks & Regards,
    Sandhya

    Hi Sandhya,
    U can convert any type of display(SF,ALV) to PDF.....
    User Program rstxpdft4 to convert it first the O/P need to be converted into spool.
    cheers,
    Naveen.

  • Re: Problem providing download link for BLOB data in apex report

    Hi Don,
    Your solution below worked but in the download option i only see save but not open for PDf file in the blob. Please let me know if you have any suggestion to achieve it
    Thanks
    Jo
    Problem providing download link for BLOB data in apex report 
    591953 Nov 19, 2008 1:55 PM (in response to 660436)
    Currently Being Moderated
    Good morning,
    Here is how I have solved this problem.
    1. The select statement in the sql for the report should not include the BLOB column. I decided to select only 2 columns, the column that has the key and the column with the filename.
    2. On the first column ( the primary key ) I put in the format statement that was simply DOWNLOAD:TABLENAME:BLOB_COLUMN:PRIMARY_KEY
    This works. I believe that the Oracle error I was getting was because I was trying to apply this format statement to the actual BLOB column.
    So, it appears that you can use any of the columns in the report to hold the DOWNLOAD format statement since in the format statement, you are defining the BLOB table, BLOB column and the primary key into that column.
    Hope this helps,
    Don.

    Branched out from a years old thread.
    user3003326 Don't post to old threads, please.

  • When I try to click on a download link for a .pdf file Firefox does not recognize the MIME type and tries to download the file as "index.php"

    When visiting a site I frequent I tried to download a linked .pdf file. Previously I've used Firefox 7.0.1 to download the link with no problem. Using Firefox 8 however I the browser does not recognize the .pdf link's mime type. Instead of recognizing the download link as a .pdf file Firefox 8 tries to download it as "index.php". Firefox 8 does this with .doc files and .txt files as well. When I downgrade to 7.0.1 again the problem disappears.

    Hi hakmacpace,
    I'd try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    You could also try [https://support.mozilla.org/en-US/kb/Managing-profiles?s=create+a+new+profile&r=2&e=es&as=s#w_creating-a-profile Creating a new profile].
    Hopefully this helps!

  • Adobe Reader XI won't launch, can't download or open existing PDF files.

    Running Windows 7 and have had no trouble with PDF files until few weeks ago.  Now Adobe Reader Xi won't execute and I can't download or open existing PDF files using Adobe.  Interesting that I can open existing PDF files unsit PaintShop Pro X4 but not in Adobe.  Have unistalled and reinstalled Adobe Reader XI several times with no change in problem.

    You can try using Windows Explorer to navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement

  • Can't download word docs or PDF's from Google Docs

    I cannot download word docs or pdf's from Google docs.  I can download MP3's.
    I get an error message saying IE can't find the website.
    The google docs forum response to this problem was to uninstall the current version of Flash and install Flash 10.1  I'd like to try this suggestion but don't know how to implement the procudure or where to find Flash 10.1 and choose which version of it to install
    What is the best way to do that?
    I currently have Flash Player 10.3.181.14 installed
    I use IE Ver 8.0.6001.1870
    And Windows XP pro version 5.1.2600 SP 3 Build 2600
    Thanks in advance for any help you can offer

    I cannot quite understand how Google Docs is related to Flash Player.  But anyway, to revert to an earlier Flash Player version
    downoad the FP uninstaller from http://kb2.adobe.com/cps/141/tn_14157.html and save it to disk;
    download the archived FP 10.1 installers from http://kb2.adobe.com/cps/142/tn_14266.html and save it to disk;
    close all browser instances, then run the downloaded uninstaller;
    extract the latest 10.1 installer (ActiveX for IE, plugin for other browsers) and run it.
    Don't hesitate to ask again if my instructions are not clear.

  • I am having difficulty downloading attachments (i.e. pdfs, photos) from email. Is there a way to improve this process?

    I am having difficulty downloading attachments (i.e. pdfs, photos) from email. Is there any way to make this process faster? Thanks!

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • TS5376 I'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.

    'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.  I have even done a repair to see if that works and it has not.  Has anyone else found a new way to get it working?

    Try Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Problem with Download! on N78

    I'm having a problem with Download! on my N78 (sw v. 12.046). I can open Download but it freezes, and I also can't download any applications. When Download! freezes, my only option to shut it down is to boot the phone..I can switch to other open applications but Download! is freezed. This is giving me hard time, can't install any applications. Any help or ideas? Anyone else having this problem?

    Backup your data, and try doing a soft reset. *#7370#, (use this code at your own risk, since it deletes some important data's in your phone memory, including the data of installed applications on phone memory - means if you installed a java file to your card, it stores some data in your phone memory which will be deleted when you soft reset. So you will have to reinstall that software)

  • HT2292 hello i'm facing  problem  i downloaded iTunes version 11 32bit  and after i installing the set up when i opened the iTunes a massages  occur saying i tunes could not connect to iTunes store an unknown error occurred (-3212) even  though my interne

    Hello i'm facing  problem  i downloaded itunes version 11 32bit for windows 7 and after i installing the set up when i opened the iTunes a massages  occur saying i tunes could not connect to iTunes store an unknown error occurred (-3212) even  though my internet is on

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • How do I download and print a pdf file in osx mountain lion

    How do I download and print a pdf file?

    control click on your PDF to download option
    Open it on your desktop Command-P is the short cut for print option.

Maybe you are looking for

  • Lenovo Flex 2 15 warranty is incorrect

    I bought my laptop on November 11th, 2014. I bought it at Futureshop in Canada. I looked up the warranty status and it has the wrong date on it.  I have called 2 times and they said it would be fixed in 24 hours. Today I check and it is still the inc

  • Amount from 2 different columns. import format?

    Hi all, Im trying to import amounts from 2 different columns. If accounts are "123" or "234" or...etc Then pull from column else use column 9 can this be done in one import script? I want to know if I can assign import format amount to column 5 but o

  • [Help] lowering and moving pictures forward in photoshop cs4

    hi, i dont know how to explain this problem very well but, i'd like to know how to move images up and down, and forward into the picture. here is a example. i got 2 images, one of a cat, one of a cat bed. and i want to move the cat, so it's lowered i

  • Email PO to buyer via output determination

    I'm trying to configure the emailing of a PO to a buyer (ME partner function) or alternatively user responsible (VU partner function) using output determination. I do not wish to use the vendor partner function. I've got a condition table where I can

  • In sawserver.out.log, Japanese becomes ????? - Question Mark

    Hello . The sawserver.out.log does not show Japanese character. All Japanese characters become "?????" . (Question Mark) How can I fix this issue ? In sawlog[n].log, there is no issue. These files show Japanese correctly. I know sawserver.out.log is