Pdf converter download error 2002

I'm trying to download firefox pdf converter and get a printer error 2002

Hello Mahfoud,
Thanks  for your reply. 
I just confirmed that we already installed latest hotfixes.
We are using  SQL Server 2008 R2 Enterprise
Edition 10.50.2500.0.
Regards,
Satish Jadhav

Similar Messages

  • PDF converter / download function failing

    https://files.acrobat.com
    File converts .pdf -> word
    Download fails, error in Mozilla Firefox 17.0.10 'file not found'
    Single file only selected
    Works yesterday, not today
    Yesterday, log out, log in then worked ok
    But not today
    Tried moving file to new folder, select single file download - still no go
    But all OK ... in IE. 
    While figuring this out, I checked ealrier fixes - similar questions on your site unanswered for months with 80-100 views.
    Clearly a common problem, appears unfixed for some time and is annoying your users.
    Maybe put some material on the Files site indicating people should use MS IE over Mozilla,
    and what is the work you are doing to test/fix this?

    Hi Jeffrey,
    It sounds like you may not be access the UK Adobe Store. Try this link: http://www.adobe.com/uk/products/catalog.html
    -David

  • SSRS Report Excel, PDF, Word download error.

    I am facing urgent issue in downloading excel, word and excel format of report. If report size exceed 3+ Mb then I can enable to download the report. Reports
    gets downloaded for smaller size.
    Reports gets rendered properly in browser but when I tries to download them it gets failed. I tried on crome, firefox, Internet explorer. But it
    fails in every browser.
    Kindly support me to resolve this issue.
    Below is the screenshot of the exceptions.
    Regards,
    Satish Jadhav

    Hello Mahfoud,
    Thanks  for your reply. 
    I just confirmed that we already installed latest hotfixes.
    We are using  SQL Server 2008 R2 Enterprise
    Edition 10.50.2500.0.
    Regards,
    Satish Jadhav

  • Download pdf converter error 2002

    I'm trying to download pdf converter - At the end of the download it tells me there is a printer error 2002

    Hi Jeffrey,
    It sounds like you may not be access the UK Adobe Store. Try this link: http://www.adobe.com/uk/products/catalog.html
    -David

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = L_SPOOLNO
          NO_DIALOG                = SPACE
          DST_DEVICE               = MSTR_PRINT_PARMS-PDEST
        IMPORTING
          PDF_BYTECOUNT            = MI_BYTECOUNT
        TABLES
          PDF                      = MTAB_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
    Thanks in advance
    Monika
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
    Transfer the 132-long strings to 255-long strings
    LOOP AT MTAB_PDF.
    TRANSLATE MTAB_PDF USING '~'.
    CONCATENATE WA_BUFFER MTAB_PDF INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    it_attach = WA_BUFFER.
    APPEND it_attach.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    ****GET THE FILE NAME TO STORE....................
    v_path = 'C:\PD Form\' .
    CONCATENATE v_path p_pernr-low '.pdf' into v_name.
        create object v_guiobj.
        call method v_guiobj->file_save_dialog
          EXPORTING
            default_extension = 'pdf'
            default_file_name = v_name
            file_filter       = v_filter
          CHANGING
            filename          = v_name
            path              = v_path
            fullpath          = v_fullpath
            user_action       = v_uact.
        if v_uact = v_guiobj->action_cancel.
          leave to current transaction.
        endif.
    ..................................DOWNLOAD AS FILE....................
        move v_fullpath to v_filename.
        call function 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = MI_BYTECOUNT
            filename                = v_filename
            filetype                = 'BIN'
          TABLES
            data_tab                = it_ATTACH
          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.

    My Generated Spool request is PDF Spool. It contains Adobe Forms data. To Download Adobe form
                 Spool (PDF Spool) into PDF format,
    First,
    A)     Read PDF Spool data by using u2018FPCOMP_CREATE_PDF_FROM_SPOOLu2019 Function module.
    B)     Assign the Output Data to XSTRING format
    C)     Convert that XSTRING data to Binary Format using 'SCMS_XSTRING_TO_BINARY' Function module.
    D)     Save File on Application server using OPEN DATASET , TRANSFER , CLOSE DATASET.You can see your
                          downloaded file in Transaction AL11 in specified directory.
    You can save your file on Presentation server also using GUI_DOWNLOAD.
    First three steps are necessary if your spool is PDF Spool.
    Basically we need this when we are downloading Adodbe forms ( which is not a SAPScript or smartforms)
    Example :
    DATA :
      e_pdf1 TYPE  fpcontent,
      e_renderpagecount1  TYPE i.
      CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
        EXPORTING
          i_spoolid               = l_spoolno
          i_partnum               = '1'
       IMPORTING
         e_pdf                   = e_pdf1
         e_renderpagecount       = e_renderpagecount1
    *   E_PDF_FILE              = E_PDF_FILE1
    * EXCEPTIONS
    *   ADS_ERROR               = 1
    *   USAGE_ERROR             = 2
    *   SYSTEM_ERROR            = 3
    *   INTERNAL_ERROR          = 4
    *   OTHERS                  = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DATA : buffer  TYPE  xstring,
      append_to_table  TYPE  c.
      DATA : output_length TYPE  i.
      TYPES : BEGIN OF ty_binary,
                binary_field(1000) TYPE c,
              END OF ty_binary.
      DATA : lt_binary TYPE TABLE OF ty_binary WITH HEADER LINE.
      DATA : lv_xstring TYPE xstring.
      lv_xstring = e_pdf1.
    * Convert xstring to binary.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer                = lv_xstring
         append_to_table       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          binary_tab            = lt_binary.
      DATA : wa_binary LIKE lt_binary.
      DATA: BEGIN OF itab OCCURS 0,
      field(256),
      END OF itab.
      DATA: dsn(50000) VALUE '/usr/sap/tmp/',
      length LIKE sy-tabix,
      lengthn LIKE sy-tabix.
      CONCATENATE '/usr/sap/tmp/' lv_pernr '.pdf' INTO dsn.
    ******* Save file on Application server
      OPEN DATASET dsn FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_binary.
        TRANSFER lt_binary-binary_field TO dsn.
      ENDLOOP.
      CLOSE DATASET dsn.
      CLEAR lt_binary.
      REFRESH lt_binary.
    cheers

  • I have Nuance PDF Converter 7.2 and after I scan a document and want to email it, I get an error message that says the scan cannot be attached to an email.

    I want to be clear: I can scan the document with Nuance PDF Converter 7.2, but after the scan, I want to email the scan to someone.
    When I click on the word "email" on the left side of the Nuance screen, I get a failure message. For a couple of years this process worked without a problem. I was told by Nuance Support that the problem was in the email software. Is there something on a drop
    down menu that I can click on the resolve the problem? Thanks.

    The problem could be that your computer doesn't have Thunderbird identified as the default e-mail program, so the first step is:
    Thunderbird: Menu bar: Tools: Options: Advanced Tab: System Integration:
    Press the "Check Now..." button.
    In the resulting "System Integration" window, make sure that "E-Mail" is check-marked, and "Always perform this check when starting Thunderbird" is checked. Then click the "Set as Default" button.
    If you have Windows 8 or 8.1, then there is also another step:<br>
    Windows Control Panel: Programs: Default Programs: Set your default programs.<br>
    Find "Thunderbird" on the left side, and click to select it.<br>
    On the right side, click "Set this program as default".<br>
    Then reboot the computer.<br>
    If the problem still exists, then do a clean install of Thunderbird:
    Certain Thunderbird problems can be solved by performing a ''Clean reinstall''. This means you remove Thunderbird's program files and then reinstall Thunderbird. Please follow these steps:
    #Download the latest version of Thunderbird from http://www.mozilla.org/en-US/thunderbird/ and save the setup file to your computer.
    #After the download is complete, close all Thunderbird windows (Click Exit/Quit from the menu button on the right).
    #Delete the Thunderbird installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #** C:\Program Files\Mozilla Thunderbird\
    #** C:\Program Files (x86)\Mozilla Thunderbird\
    #*'''Mac:''' Delete Thunderbird from the Applications folder.
    #*'''Linux:''' If you installed Thunderbird with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Thunderbird on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/en-US/thunderbird/ Thunderbird Download Page], simply remove the folder ''thunderbird'' in your home directory.
    #Now, go ahead and reinstall Thunderbird:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to open Thunderbird after clicking the Finish button.
    <b>WARNING:</b> Do not run Thunderbird's uninstaller or use a third party remover as part of this process, because that could permanently delete your Thunderbird data, including but not limited to, extensions, emails, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!

  • Error while opening PDF file downloaded  from database Blob column

    Hi All,
    I am working on jdev 11.1.1.4.0.
    In my use-case I am using filedownload Actionlistner on a link to get the PDF file stored in the database in blob field. These files are being uploaded from other use-case in adf only.
    After getting the dialog box to open/save/cancel for the PDF file when i click on open then i am getting an error *'Adobe Reader could not open 'abc.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 docoded)' for some files , and to my surprise I am able to open some files.
    When I open these PDF files separately from desktop I am able to view the content of each and every file in adobe reader.
    I dont know where the problem exactly lies , while uploading/downloading the file . Any ideas/thoughts to resolve this issue?
    Thanks
    Kanika

    Thanks a lot Timo...!!!
    I checked the PDF file downloaded directly from the blob column in DB, there only it is corrupted so must be the problem in uploading the file. I am checking the code line by line,, but no problem in setting the file content type,size etc.
    Here is the code snippet ..
    byte[] buff;
    buff = new byte[(int)length]; -- Length is the file size
    int bytesRead = is.read(buff);
    for (int i = 0; bytesRead < buff.length; i++) {
    // int b = is.read();
    int b = is.read();
    if (b == -1)
    break;
    buff[i] = (byte)b;
    BlobDomain blobDomian = new BlobDomain((buff));
    TestVORow = (TestVORow Impl)TestVO.createRow();
    if(blobDomian != null) {
    TestVORow.setAttachment(blobDomian);
    am.getTransaction().commit();
    This seems to be Ok to me..the same issue, file is still corrupting.
    Any thoughts from your side ???
    Thanks
    Kanika
    The problem is resolved.
    Changes made are instead of
    InputStream is;
    used ... BufferedInputStream bis ;
    and after
    for (int i = 0; bytesRead < buff.length; i++) {
    // int b = bis.read();
    int b = bis.read();
    if (b == -1)
    break;
    buff[i] = (byte)b;
    bis.close(); // use this close bufferedInput Stream.
    Able to open each and every file now..Thanks for your suggestions Timo and Frank.
    Edited by: Kanika on Mar 6, 2012 3:15 AM

  • Download error on PDFs--can't find helper--please help!

    Hi,
    I'm trying to use USPS.com to print labels. It used to work great for me until I downloaded the newest Firefox version and also installed the new CS3. I have Mac OS 10.5. When I go make a label at USPS (or try to download any PDF), I get an error like this and the document won't open, I can't print anything:
    Download Error
    /Users/heidinylnd/desktop/statement.pdf could not be opened, because the associated helper application does not exist. Change the association in your preferences
    I have Acrobat 8 Professional. I downloaded Acrobat Reader 8 to see if that would put the required "helper" back in place. No luck. I even made that the default program to open PDFs. I used to get "Preview" to open the PDFs, but that's not working now, either. Erg!
    Please help!
    Heidi

    I did! I had to fix it through Firefox. Apparently something doesn't install automatically with the new CS3 or 10.5--whichever is the culprit.
    Try this:
    Go to Firefox in your top menu options
    Scroll down to preferences
    When the "Main" screen comes up, click on "Content"
    Hit the last button on the page, "Manage"
    You'll then be able to see what program is linked to PDFs. On mine, no action was set once I installed the new programs and deleted my old version of Acrobat.
    I didn't fix this in Explorer, but I'll bet there's a similar process. I worked on finding the answer for 4 hours--finally getting help through firefox's volunteer forums! I even downloaded the new Acrobat reader and that didn't do anything before this.
    Hope it works for you, too!
    Heidi

  • Random selections of mp4 videos won't sync, convert for iPhone option in iTunes comes up with unknown error 2002, help please!

    I've been having massive issues copying mp4 video files onto my iPhone 4 from my windows 7 (64 bit) pc.
    I converted a large number of avi files into mp4 using aiseesoft movie converter and most of them work just fine.
    However about a quarter of the files with no Obvious difference in size and converted the same way will not sync.
    Instead a message appears saying these cannot be played on the iPhone.
    Also when then trying to use the iTunes convert for iPhone function It fails for unknown error 2002.
    Any help on why this is happening and how to stop it would be greatly appreciated.
    Thanks

    When the videos are in the Movie library, try using the Create IPod and iPhone Version in the Afvanced tab of iTunes.

  • I bought the adobe expert PDF.  Got error message failed to be converted ?

    I bought the adobe expert PDF.  Got error message failed to be converted when I tried to convert PDF to Word? What did I do wrong?                 

    See if any of the articles here help: http://forums.adobe.com/community/exportpdf?view=documents
    You can also try to contact Adobe Customer Support via http://helpx.adobe.com/contact.html?product=export-pdf
    [topic moved to ExportPDF forum]

  • Downloaded the pdf converter to word....how do I run the program?

    downloaded the pdf converter to word....how do I run the program?

    Hi seang449,
    Please let me know which software you purchased and for what OS? Is it Adobe Acrobat or Create PDF service?
    After downloading the software you need to run the .exe file (WIN) / .dmg file (MAC) to install the application.

  • Has anyone downloaded a Mac PDF Converter online ?  I can't get it to work.  OR any ideas on how to convert pdf to word

    Has anyone downloaded the software Mac PDF converter?   I cannot get it to work OR get anyone from the company to contact me .

    try this one, works for me
    http://www.macupdate.com/app/mac/33501/pdf-ocr-x-
    hard to find anything reliable,

  • Convert pdf to word error message "conversion failure", where can I find out more info why conversion failed?

    I tried each of the available exportformats:  .doc, .docx, .xls, .rtf.  None of them worked, which only the message "conversion failure".

    Hi bergmanc,
    It sounds like there may be an issue with the file that you're trying to convert. Have you tried to convert other files? If so, are they converting without error?
    Please tell me a little more about the file that you're trying to convert. For example, what is its file size, how many pages does it have, are there lots of graphics, or a mix of fonts? If the file is complex, it may be that the ExportPDF service is timing out before it can complete the conversion process. It also possible, that the PDF may not be written properly, if t was created by a third-party appellation.
    You can simplify the conversion process by disabling OCR as described here: How to disable Optical Character Recognition (O... | Adobe Community (but this solution isn't optimal if the PDF was created from a scanned document.)
    Please let us know a bit more about your file, and we'll see what we can figure out.
    Best,
    Sara

  • I downloaded acrobat reader dc. after download completed, I could not open many PDF files. Error read: "could not open this file because its either not a supported file or because the file has been damaged". I opened a new user account and moved these fil

    I recently downloaded acrobat reader dc. After download was complete, I could not open PDF files. Error read "Adobe acrobat reader DC could not open this file because its either not a supported file or the file has been damaged". Any suggestions?

    HI davidd92392148,
    Is this error occurring for all PDF files that you try to open? There is an issue where all file icons can change to the PDF icon after installation, so is it possible that the files you're trying to open have been affected by this issue (and aren't actually PDF files)? Please see Application, file icons change to Acrobat/Reader icon.
    If that document isn't the key, then please tell us more about these files. Where are they stored? Did they open in previous versions of Reader?
    Best,
    Sara

  • Printing large pdf and download to power point error message

    Dear experts,
    We ran into the issue that we get an error message when printing to pdf or download to power point, the report is very big.
    Error message:
    A fatal error occurred while processing the request. The server responded with: Error while executing PDFRpcCall.processMessage com.siebel.analytics.utils.InputStreamWithLimit$ReadOverTheLimitException at com.siebel.analytics.utils.InputStreamWithLimit.incTotalBytes(InputStreamWithLimit.java:58) at ...............
    On the internet, i thougt i found a solution and set this
    <JavaHost>
    <PDF>
    <InputStreamLimitInKB>0</InputStreamLimitInKB>
    </PDF>
    </JavaHost>
    in the instanceconfig.xml and restarted bi server, java host server and presentation server. Unfortunately, nothing helped; error still exists, cannot download to ppt or print to pdf.
    Any help is really appreaciated, many thanks in advance.
    regards,
    Thomas

    Hi,
    Go through reply in this...Will solve your issue...http://software.itags.org/enterprise-application/62968/
    In C:\OracleBI\web\javahost\config\config.xml
    {<PDF>
    <!-- Size limit for PDF request message -->
    <InputStreamLimitInKB>0</InputStreamLimitInKB>
    <!-- Path to PDF userconfig.xml file. -->
    <!-- <UserConfigFile/> -->
    </PDF>
    <XMLP>
    <InputStreamLimitInKB>0</InputStreamLimitInKB>
    </XMLP>}
    By default they are 2048 and 8192 change them to 0
    Restart BI Server and Java host server.
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Oct 29, 2010 2:08 AM

Maybe you are looking for