Error Getting while opening an adobe attachment "Output cannot be displayed because an error occured "

Hello Experts,
In our project where CRM Web ui is UI technology used, i am displaying list of attachments in one block.
WHen i am clicking on these adobe form outputs which are in the form of links, i am getting an error "Output cannot be displayed because an error occured".
Can anyone please tell me what is missing which is leading to this error ?
Thanks and Best Regards,
Nikhil Kulkarni

Generally this kind of error messages occur when there is a gap b/w the PDF rendering and the layout ..
The only way to find out the error is debugging, where you have caught the exception from the driver program.
Naveen

Similar Messages

  • Why do pages that consist solely of a jpg or png result in the message that the image cannot be displayed because it contains errors?

    Whenever I click on URL links to pages that consist solely of a jpeg or png, I get a text-only message 'the image cannot be displayed because it contains errors'. Yet if I copy the same URL and try it in IE, the image displays just fine. This has been happening for some time, thru several upgrades of Firefox.

    That is the default text that Firefox displays on a tab.<br />
    As soon as the image has loaded then that text is replaced by the image.
    If you keep seeing that text then something is blocking images.
    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Getting error message while opening PDF file.

    Hello Experts....
    I'm getting error message while opening the attached PDF file in mail.
    I'm Sending the payslip to mail which is converted into .PDF format.
    Where exactly the problem i m not getting.
    Please help....

    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid                    = rqident
            no_dialog                      = ' '
           DST_DEVICE                     = out_parms-pdest
          PDF_DESTINATION                =
           get_size_from_format           = out_parms-pdest
          IMPORTING
            pdf_bytecount                  = bytecount
           pdf_spoolid                    = pdfspoolid
          LIST_PAGECOUNT                 =
           btc_jobname                    = jobname
           btc_jobcount                   = jobcount
          TABLES
            pdf                            = out_tab
          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 NE 0.
      ENDIF.
    *CALL FUNCTION 'BAPI_GET_PAYSLIP_PDF'
    EXPORTING
       employeenumber       = PERNR-PERNR
       sequencenumber       = '00001'
       payslipvariant       = 'PAYSLIP-PM'
    IMPORTING
      RETURN               =
      PAYSLIP              = PAYSLIP
      PDF_FSIZE            =
    ******************CONVERTING PAYSLIP(XSTRING) TO BINARY FORMAT******
    call function 'SCMS_XSTRING_TO_BINARY'
       exporting
         buffer                = payslip
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
       tables
         binary_tab            = OUT_TAB.
        check not ( out_tab[]  is initial ).
        refresh i_record.
        clear : i_record.
        call function 'QCE1_CONVERT'
          tables
            t_source_tab         = out_tab
            t_target_tab         = i_record
          exceptions
            convert_not_possible = 1
            others               = 2.
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
       do.
         i_record = it_attachment_long.
         append i_record.
         shift it_attachment_long left by 255 places.
         if it_attachment_long is initial.
           exit.
         endif.
       enddo.
        select single ltx into subject from t247
                   where mnr eq pn-begda+4(2)
                     and spras eq 'EN'.
        condense subject.
        concatenate 'Payslip for the month of' subject pn-begda+0(4)
                                  into subject separated by space.
        describe table lt_objbin lines l_att_lines.
        read table lt_objbin index l_att_lines.
        lv_document_data-doc_size = tab_lines * 255 .
        lv_document_data-obj_name = 'Payslip'.
        lv_document_data-obj_descr = subject.
    e-mail body
        clear lt_objpack-transf_bin.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = tab_lines.
        lt_objpack-doc_type = 'RAW'.
    LT_OBJPACK-doc_size = STRLEN( LT_OBJTXT ).
        append lt_objpack.
    For e-mail attachment
        lt_objhead = 'payslip.pdf'.
        append lt_objhead.
        lt_objbin[] = out_tab[]."i_record[].
        "describe table i_record lines l_att_lines.
        describe table out_tab lines l_att_lines.
    CLEAR LT_OBJPACK.
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_att_lines.
        lt_objpack-doc_type = 'PDF'.
        lt_objpack-obj_name = 'attachment'.
        lt_objpack-obj_descr = 'payslip'.
        lt_objpack-doc_size = ( l_att_lines - 1 ) * 255 + strlen( lt_objbin ).
        append lt_objpack.
    make recipient list
       " check user_mail_id is not initial.
        lt_reclist-receiver =  user_mail_id.
        lt_reclist-rec_type = 'U'.
        append lt_reclist.
        call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          exporting
            document_data              = lv_document_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          tables
            packing_list               = lt_objpack
            object_header              = lt_objhead
            contents_bin               = lt_objbin
          contents_txt               = lt_objtxt
            receivers                  = lt_reclist
          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.
        if sy-subrc = 0.
          write:/ 'Mail sent to', 30 user_mail_id.
          write : sy-uline.
        else.
          write:/ 'Error encountered'.
        endif.
        clear : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
        refresh : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
       clear : filepath+3(17), pdffile, encryptpdf, batch_file.
        clear : out_tab, i_record, filetable.
        clear : user_mail_id, password.
      else.
        write : 'payslip not generated'.
      endif.
    end-of-selection.
    Please Check....

  • I am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/rirefox/components/ref helper.JS:510 in English

    i am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/Firefox/components/ref helper.JS:510 in English

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • Error ocurred while signing in adobe reader, whattaf

    error ocurred while signing in adobe reader, whattaf

    Hi, Harvey.
    I'm sorry for the issues you're having.
    So it sounds like you're trying to sign into Adobe Reader X's right-side Tools Pane with your Adobe ID ([email protected]), yet you're seeing an error message. Is that the issue? What does the error message say? Can you try signing out from Reader, closing Reader, and then re-opening Reader and signing back in? Does the error mesage still appear?
    Also, what Reader version and operating system (Mac, Win) are you using?
    Thanks. With a little more info, we should have some more ideas for you.
    Dave

  • Error:null while opening .bpel file

    Hello,
    I'm getting an error ERROR:null while opening a .bpel file. Any pointers to solve it. Is it some JDeveloper bug. I'm using JDeveloper 10.1.3.3 version.

    Hello,
    I'm getting an error ERROR:null while opening a .bpel file. Any pointers to solve it. Is it some JDeveloper bug. I'm using JDeveloper 10.1.3.3 version.

  • I updated my itunes to 11 and found out my phone and ipod were not compatible. I uninstalled it and reinstalled 10.7 but now I get an error message when I try to open itunes saying "the file cannot be read because it was created by a newer verison"

    I updated my itunes to 11 and found out my phone and ipod were not compatible. I uninstalled it and reinstalled 10.7 but now I get an error message when I try to open itunes saying "the file cannot be read because it was created by a newer verison" What do I do?

    Thank you for clarify I'm supposed to read the ENTIRE article. I thought I was just supposed to read the title and magically everything will fix itself. I appreciate you taking the time to help me however I do not appreciate the caps and the way you have addressed the situation. If you are not going to kindly help people/make suggestions just don't try! And for the record my conclusions are not illogical, the iOS7 thing is on the website in small font (which I got by reading the ENTIRE thing) and you should really find a new hobby because your socialization skills need some help! That goes for you too Chris. Not everyone is a tech nerd

  • HT4528 I can't seem to sync my iPhone with iTunes.  I keep getting this message:  iTunes could not connect to the iPhone because an error occurred while reading from this device.  What can I do?

    I can't seem to sync my iPhone to my computer; I keep getting this message:  "iTunes could not connect to the iPhone because an error occurred while reading from this device."  I get the same message with my iPad, even though they all share the same account.  What can I do?

    This could be caused by a USB connection issue. Make sure the iPhone is directly connected to the Mac using the USB cable it came with. Also, try disconnecting all other USB devices.
    If you haven't already try resetting the iPhone by holding the Home and Sleep/Wake buttons until you see an Apple logo as described here:http://docs.info.apple.com/article.html?artnum=305743

  • I am getting an error message while managing my cloud it says "cannot turn off backup" when i want to remove apps from the clous. how do i fix?

    i am getting an error message while managing my cloud it says "cannot turn off backup" when i want to remove apps from the clous. how do i fix?

    Hey ktillis88,
    Thanks for the question. Based on the information you have provided, the following resource may be helpful:
    iCloud: Understanding Backup alert messages
    http://support.apple.com/kb/TS4576
    "Backups for appname cannot be turned off at this time."
    This message occurs if disabling Backup for an app on your iOS device does not complete successfully. Wait a few minutes and then attempt to disable Backup for the app again. If you continue to receive this alert, contact iCloud Support for assistance.
    Thanks,
    Matt M.

  • TS1717 My Itunes won't open and I am getting message "the file "iTunes Library .itl" cannot be ready because it was created by a newer version of iTunes".  Any suggestions?

    My iTunes won't open and I am getting message "the file iTunes library .itl"cannot be read because it was created by a newer version of iTunes.  Anyone have a suggestion?

    I don't know why this error occurs, unless you have attempted to downgrade iTunes.
    This method should get you up and running again.
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • Updated iTunes and now get an error message that the file iTunes Library.itl cannot be read because it was created by a newer version of iTunes. ??

    updated iTunes and now get an error message that the file iTunes Library.itl cannot be read because it was created by a newer version of iTunes. ??

    hello!
    i have a similiar problem:
    i upgraded my mac from 10.6.8 to 10.7.something recently, but i did NOT update itunes, still running version 10.4.1. now i wanted to open itunes but it tells me, that my iTunes Library.itl was created by a newer version of iTunes - which i never used!
    its annoying since i dont want to be forced to download a 720MB pckage of itunes every month - even more so, if the system start "lying" to me.
    or is it another problem? anyone got the same? any solution? maybe an erratic prompt?
    thanks, florian

  • My iTunes won't open on my laptop. Error message says The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes. Help Please!

    My iTunes won't open on my laptop. Error message says The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes. Help Please!

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • Need solution for the following sync error: "iTunes could not sync calendars to the iPad "iPad name" because an error occurred while sending data from the iPad"

    Need solution for the following sync error: "iTunes could not sync calendars to the iPad "iPad name" because an error occurred while sending data from the iPad"

    I want to add that I deleted all the old back-ups and created a new back-up without any issues except sync problem.

  • Hello! The new version of Firefox I have a problem with opening the site VKontakte. The browser displays the following error: "Firefox has determined that the s

    Hello!
    The new version of Firefox I have a problem with opening the site VKontakte. The browser displays the following error: "Firefox has determined that the server redirects the request for this address in a way that it will never end." How to solve this problem? Please excuse me for my English.
    Sincerely, Vsevolod.

    You're welcome

  • Error message is showing while connecting to itunes - "This iphone cannot be used because the required software not installed. Run the itunes installer to remove the itunes, then install the 64bit  version of itunes - Pls Help

    I tried to install in my Sony Vaio Laptop - Model Name SVF15218SGW Serial No 54****************954. After installation of itunes, when i am trying to connect error message is showing as follows -
    "This iphone cannot be used because the required software not installed. Run the itunes installer to remove the itunes, then install the 64bit  version of itunes".
    i already installed 64bit version. but not connecting my iphone with itunes
    PLEASE HELP.!!!!
    <Personal Information Edited by Host>

    Hello Negaz
    When you uninstalled iTunes, did you uninstall it by using the article below or just uninstalled iTunes? The best practice is to remove not only iTunes, but also other associating software in the order that the first article give. If that does not work, then check out the second article for more troubleshooting options for connecting your iPhone to your computer.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Regards,
    -Norm G.

Maybe you are looking for