PDF FILE AS EMAIL ATTACHMENT

Dear Experts,
                          How to send pdf file as email atachment, can some one give me some codings or links.
Thanks and REgards,
Thirukumaran. R

Mailing is possible when i open the pdf file it's giving the  decoding  error
i here with attached the codings for ur ref.
FUNCTION Z_HRFM_SEND_OFFERLETTER_MAIL.
*"*"Local Interface:
*"  IMPORTING
*"     VALUE(IV_APPLID) TYPE  PERSNO
*"     VALUE(IV_REPMGR) TYPE  PERSNO
*"     VALUE(IV_CONTROLMGR) TYPE  PERSNO
*"     VALUE(IV_REPFMGR) TYPE  PERSNO
*"     VALUE(IV_ACTION) TYPE  MASSN
*"     VALUE(JOIN_1000) TYPE  DATS
*"     VALUE(POSITION_1000) TYPE  STEXT
*"     VALUE(PLACE_1000) TYPE  ORT01
*"     VALUE(LOC_1000) TYPE  ORT01
*"     VALUE(GROSS_1000) TYPE  NUMC7
*"     VALUE(BASIC_1000) TYPE  NUMC5
*"     VALUE(CONV_1000) TYPE  NUMC5
*"     VALUE(FOOD_1000) TYPE  NUMC5
*"     VALUE(VAR_1000) TYPE  NUMC5
*"     VALUE(PERNR1_1000) TYPE  PERSNO
*"     VALUE(COMP_ADD) TYPE  CHAR200
*"  EXCEPTIONS
*"      APPLICANT_NOT_FOUND
*"      REPFORM_MGR_NOT_FOUND
*"      REPMGR_NOT_FOUND
*"      CONTROLMGR_NOT_FOUND
*"      NO_EMAILID_FOUND
*"      SENT
*"      NOT_SENT
*&   CREATION INFORMATION                                                                       *
*&   AUTHOR           : thiruKumaran
*&   CREATION DATE    : 29.07.2009                                                            *
*&   TRANSPORT REQUEST:                                                              *
*&   FUNCTIONAL SPEC# :                                                                         *
*&   TECHNICAL SPEC#  :                                                                         *
*&   PURPOSE          :
* Local Variable Declaration
data : EV_APPLNAME  TYPE  EMNAM,
EV_REPMGR_NAME  TYPE  EMNAM,
EV_CONTROLMGR_NAME  TYPE  EMNAM,
EV_CONTROLMGR_GEN TYPE  CHAR2,
EV_REPMGR_GEN TYPE  CHAR2,
EV_APPL_GEN TYPE  CHAR2,
EV_REPFORM_GEN  TYPE  CHAR2,
EV_REPFORM_NAME TYPE  EMNAM,
EV_STRAS  TYPE  STRAS,
EV_ORT01  TYPE  ORT01,
EV_ORT02  TYPE  ORT02.
  DATA : l_APPname         TYPE  emnam,
         l_evaluation_date TYPE begda,
         l_extension_date  TYPE begda,
         l_emailid         TYPE comm_id_long,
         tab_lines         TYPE sy-tabix,
         fm_name           TYPE rs38l_fnam.
data:/1BCDWB/FORMOUTPUT type  FPFORMOUTPUT ,
     /1BCDWB/DOCPARAMS  type SFPDOCPARAMS ,
     ie_outputparams   type SFPOUTPUTPARAMS .
DATA : CONTENTS_HEX TYPE  SOLIX.
* Structure Declaration
  DATA : s_job_info       TYPE ssfcrescl,
         s_control_param  TYPE ssfctrlop,
         s_composer_param TYPE ssfcompop,
         s_doc_data       TYPE sodocchgi1.
* Internal Table Declaration
  DATA : i_otfdata      TYPE TABLE OF itcoo,
         i_pdf          TYPE TABLE OF solisti1,
         i_pdfdata      TYPE TABLE OF tline,
         i_receivers    TYPE TABLE OF somlreci1,
         i_packing_list TYPE TABLE OF sopcklsti1,
         i_message      TYPE TABLE OF  solisti1.
*& Work area declaration.
  DATA : w_receivers    LIKE LINE OF i_receivers,
         w_packing_list LIKE LINE OF i_packing_list,
         w_message      LIKE LINE OF i_message.
  CALL FUNCTION 'Z_HRFM_GET_OFFERED_DATA'
    EXPORTING
      IV_APPLID                   = IV_APPLID
      IV_REPMGR                   = IV_REPMGR
      IV_CONTROLMGR               =  IV_CONTROLMGR
      IV_REPFMGR                  = IV_REPFMGR
      IV_ACTION                   = IV_ACTION
   IMPORTING
     EV_APPLNAME                 = EV_APPLNAME
     EV_REPMGR_NAME              = EV_REPMGR_NAME
     EV_CONTROLMGR_NAME          = EV_CONTROLMGR_NAME
     EV_CONTROLMGR_GEN           = EV_CONTROLMGR_GEN
     EV_REPMGR_GEN               = EV_REPMGR_GEN
     EV_APPL_GEN                 = EV_APPL_GEN
     EV_REPFORM_GEN              = EV_REPFORM_GEN
     EV_REPFORM_NAME             = EV_REPFORM_NAME
     EV_STRAS                    = EV_STRAS
     EV_ORT01                    = EV_ORT01
     EV_ORT02                    = EV_ORT02
   EXCEPTIONS
     APPLICANT_NOT_FOUND         = 1
     REPFORM_MGR_NOT_FOUND       = 2
     REPMGR_NOT_FOUND            = 3
     CONTROLMGR_NOT_FOUND        = 4
     OTHERS                      = 5.
  IF sy-subrc  = 1.
    RAISE applicant_not_found.
  ELSEIF sy-subrc  = 2.
    RAISE repform_mgr_not_found.
  ELSEIF sy-subrc = 3.
    raise    REPMGR_NOT_FOUND.
    ELSEIF sy-subrc = 4.
      raise CONTROLMGR_NOT_FOUND .
  ENDIF.
*finding email id of applicant
  SELECT SINGLE usrid_long INTO l_emailid FROM pb0105
    WHERE pernr = IV_APPLID AND subty = '0010' AND endda = '99991231'."#EC *
  IF sy-subrc <> 0.
    RAISE no_emailid_found.
  ENDIF.
*  s_control_param-no_dialog = 'X'.
*  s_control_param-getotf    = 'X'.
*  s_composer_param-tddest   = 'LP01'.
*  s_composer_param-tdnoprev = 'X'.
* Sending PDF by mail
CALL FUNCTION  '/1BCDWB/SM00000046'    "'ZHR_OFFER_FORM'
*"'/1BCDWB/SM00000046'
  EXPORTING
   /1BCDWB/DOCPARAMS        = /1BCDWB/DOCPARAMS
    APPLICANT_NAME           = EV_APPLNAME
    POSITION                 = POSITION_1000
    JOINING_DATE             = join_1000
    REPFORM                  = EV_REPFORM_NAME
    REPMGR                   = EV_REPMGR_NAME
    CONTROLMGR               = EV_CONTROLMGR_NAME
    PLACE                    = PLACE_1000
    APPLICANT_GENDER         = EV_APPL_GEN
    BASE_PLACE               = loc_1000
    REPMGR_GENDER            = EV_REPMGR_GEN
    REPFORM_GENDER           = EV_REPFORM_GEN
    CONTROLMGR_GENDER        = EV_CONTROLMGR_GEN
    GROSSS                   = gross_1000
    BASIC                    = basic_1000
    CONVEYANCE               = conv_1000
    FOOD                     = food_1000
    VARIABLE                 =  var_1000
    CITY                     = ev_ORT01
    DISTRICT                 = ev_ORT02
    ADDRESS                  = ev_stras
    C_DATE                   = sy-datum
    APPLICANTID              = pernr1_1000
    comp_address             = comp_add
IMPORTING
   /1BCDWB/FORMOUTPUT       = /1BCDWB/FORMOUTPUT
EXCEPTIONS
   USAGE_ERROR              = 1
   SYSTEM_ERROR             = 2
   INTERNAL_ERROR           = 3
   OTHERS                   = 4
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 : binary_tab.
call function 'SCMS_XSTRING_TO_BINARY'
  exporting
    buffer                = /1BCDWB/FORMOUTPUT-PDF
  tables
    binary_tab            = I_PDFDATA.
REFRESH i_pdf[].
  CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
      EXPORTING
        line_width_dst = '255'
      TABLES
        content_in     = i_pdfdata
        content_out    = i_pdf.
    DESCRIBE TABLE i_pdf LINES tab_lines.
****for mailing********
    w_receivers-receiver = l_emailid.
    w_receivers-rec_type = 'U'.
    w_receivers-com_type = 'INT'.
    APPEND w_receivers TO i_receivers .
    s_doc_data-obj_name =  text-001.
    s_doc_data-obj_descr = text-001.
    CLEAR w_packing_list-transf_bin.
    w_packing_list-head_start = 1.
    w_packing_list-head_num   = 0.
    w_packing_list-body_start = 1.
    w_packing_list-doc_type   = 'RAW'.
    w_packing_list-body_num   = tab_lines.
    APPEND  w_packing_list TO i_packing_list.
    CLEAR w_packing_list.
    w_packing_list-transf_bin = 'X'.
    w_packing_list-head_start = 1.
    w_packing_list-head_num   = 1.
    w_packing_list-body_start = 1.
    w_packing_list-doc_type   = 'PDF'.
    w_packing_list-body_num   = tab_lines.
    w_packing_list-doc_size   = tab_lines * 255.
    w_packing_list-obj_descr  = text-001.
    w_packing_list-obj_name   = text-001.
    APPEND  w_packing_list TO i_packing_list.
*& Writing mail message
  concatenate  'Hi' EV_APPLNAME into l_APPname separated by space.
  w_message = L_APPNAME.
  APPEND w_message TO i_message.
  w_message = text-009.
  APPEND w_message TO i_message.
  w_message = text-002.
    APPEND w_message TO i_message.
  w_message = text-990.
  APPEND w_message TO i_message.
  w_message = text-003.
    APPEND w_message TO i_message.
  w_message = text-990.
  APPEND w_message TO i_message.
  w_message = text-004.
  APPEND w_message TO i_message.
  w_message = text-005.
  APPEND w_message TO i_message.
    "Call the FM to post the message to SAPMAIL
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data              = s_doc_data
        put_in_outbox              = 'X'
        commit_work                = 'X'
      TABLES
        packing_list               = i_packing_list
        contents_txt               = i_message
*        contents_bin               = i_pdf
        CONTENTS_HEX               = I_PDF
        receivers                  = i_receivers
      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.
  raise sent.
  else.
    raise not_sent.
  endif.
* To send mail immediatly
    IF sy-subrc = 0.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                           AND RETURN.
    ENDIF.
ENDFUNCTION.
can u give some suggestions,
Thanks and REgards,
Thirukumaran. R

Similar Messages

  • How to set up link on icon to forward PDF file as email attachment

    HI,
    I need urgent help.
    I know this used to work but cant find it in Acrobat XI.
    We created a file for a client, on the last page is a twitter, facebook and linkedIn icon which are set as links in Indesign to forward to the matching social network. Works fine when I created PDF with Hyperlinks.
    We also set up an envelope symbol which shall get, now where it is set up as PDF,  a link, so the PDF itself can get forwarded as a email attachment.
    I can not find this function on a MAC nor on PC Acrobat XI.
    Hope you can help, much appreciated!!!!
    THANKS

    Have a look at this thread:
    http://forums.adobe.com/thread/1275490?tstart=0
    where there is a script for submitting the PDF by email.

  • Can't open PDF file as email attachment

    I have windows xp with adobe reader 8. When I try to open a pdf attachment file in my email it wants to go to my browser and won't open. Just get a warning messege. I want it to open in adobe reader. I can save it and then open it from my documents given on option when I right click. I do not get any options when I right click while it is still attached to the email. It started when I screwed up opening another pdf file in my email. An option box poped up with a chice between adobe or browser. I picked browser and then clicked the apply button. I have not been able to undo it. I can't find that option.

    I tried that.
    I saved the file 8pdk_96_4.pdf to my desktop and tried to open it using Adobe Reader but I get the same message: Adobe Reader could not open '8pdk_96_4.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).

  • Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait

    Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait...
    I tried downloading updates like it said to but it still will not display the document.  How do I print the PDF file ASAP

    Can you give us a LOT more info?
    What email client? What version of Reader (I can only assume you even have Reader at this point)?
    Please wait? I'm sure it says more than that, right?
    Have you tried simply saving the PDF (it IS a PDF correct?) to your desktop and opening it from there?
    Did you get this form from the IRS or did it come from somewhere else? If the IRS again, what version of Reader?
    Help us help you.

  • How to send PDF file as an attachment in email?

    Hi Folks,
    I have successfully configured SMTP and by now I can successfully send normal text messages along with .TXT files. However, when I am trying to send an email along with .pdf file as an attachment, I am getting the mail in my inbox, but I cannot open the .pdf file! I am getting the following Acrobat error:
    Acrobat could not open 'abc.pdf' because it is either not a supported file type or because the file has been corrupted
    Can any help me in solving this problem?
    Thanks in advance
    Regards,
    Faisal

    Hi Vajha,
    Thanks alot for your kind reply. I also express my apologies for responding to your reply lately.
    I beleive all the links you have sent me are talking about ABAP coding. what I am interested in is,
    is there any configuration that I am missing in SCOT (Basis side)?
    Since I am not an ABAPER, so I carry out these activities.
    Can anyone please answer the following queries of mine:
    1. Can't we send any PDF attachment in a mail from R/3?
    2. Do we have to do it through coding only?
    3. In scot we have option "All formats except fllw". But it does not work for me. Any inputs?
    Thanks in advance.
    Regards,
    Faisal

  • Trying to attach pdf files to emails I'm sending to myself.  Instead of attaching the file, it copies the text.  I want the file so I can have it on my iPad.  I've been able to do this in the past, but not the last two tries.  What's wrong?  Thanks.

    Trying to attach pdf files to emails I'm sending to myself.  Instead of attaching the file, it copies the text.  I want the file so I can have it on my iPad.  I've been able to do this in the past, but not the last two tries.  What am I doing wrong?  Thanks.

    You aren't doing anything wrong.
    If the PDF is short enough, your iPad Mail app will display the text as part of the mail.
    Actually it is still an attachment.
    Tap and HOLD on the text and you should see options to "Open In..." that will allow you to open the PDF in most PDF readers such as iBooks, GoodReader, etc.

  • I opened a PDFs file that was attached to an email message and now it will not close when I press "Done" as it usually does. Does anyone have a solution to suggest? Thanks.

    I opened a pdf file that was attached to an email message I received and now it will not close when I press "Done" as files usually do. Does anyone have a solution to suggest please? Thanks.

    Try double clicking your home button then force close the stuck PDF by swiping upward. Once you've done that just click the home button again to exit.

  • I've been attaching pdf's to emails forever.  All of the sudden my pdf files won't attach to any email.  I have tried from home, work, different providers, etc.  Nothing is working.  What could the problem be?

    I have been attaching pdf files to emails forever.  All of the sudden my pdf files won't attach to an email.  It just sits there and spins like it's trying to attach but quits half way through.  What could the problem be?

    Please try repairing Reader installation on your machine. Do you get any error message while attaching the pdf file?
    Regards,
    Deepak

  • Starting yesterday I can scan a pdf file in from the scanner and can not send a pdf in an email attachment

    Starting yesterday I can scan a pdf file in from the scanner and can not send a pdf in an email attachment.  What happened?  Windows 8

    Adobe Reader can't scan documents. What software do you use?

  • Sending a pdf file as an attachment in the workflow.

    Dear All,
    In my workflow , i want to send a pdf file as an attachment.I know this topic has been discussed in earlier threads but i couldn't make out from them.So plz if possible do give simple detailed solution for better understanding.
    Regards,
    Geet Bijlani.

    The SOFM Object should be created as follows.
    1) get the relationship using class 'CL_BINARY_RELATION' using method 'READ_LINKS'
    2) get the instance ID from INSTID_B
    3) split the value according to the keyfields in SOFM and create object SOFM
    4) bind each object to the Workitem or Email.
    with regards,
    Sudhahar R

  • Error while sending PDF file by Email

    Hi All,
    I have a requirement to send multiple files by Email attachement from SAP to internet address.
    All files sent correctly, except one PDF file.
    I have 2 spools, and I am using FM CONVERT_OTFSPOOLJOB_2_PDF to get PDF data for Spool.
    Then I am converting the 134 length PDF data to 255 Email Attachement binary table.
    Now I have 2 file F1.PDF and F2.PDF, in SAP Office outbox and in receivers email, F2.PDF opening fine, however for F1.PDF I am getting some error no 109 in Adobe, which says "There was an error processing a page.There was a problem reading this document. (109)".
    Please help in figuring out the reason for this.
    Additional Information F2.PDF has some text data (SAP Script output) and F1.PDF has some text data with logo (SAP Script Output)
    Thanks in advance

    hi check out following code..
    REPORT ZRICH_0003.
    DATA: ITCPO LIKE ITCPO,
    TAB_LINES LIKE SY-TABIX.
    Variables for EMAIL functionality
    DATA: MAILDATA LIKE SODOCCHGI1.
    DATA: MAILPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: MAILHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: MAILBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILREC LIKE SOMLREC90 OCCURS 0 WITH HEADER LINE.
    DATA: SOLISTI1 LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    PERFORM SEND_FORM_VIA_EMAIL.
    FORM SEND_FORM_VIA_EMAIL *
    FORM SEND_FORM_VIA_EMAIL.
    CLEAR: MAILDATA, MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
    REFRESH: MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
    Creation of the document to be sent File Name
    MAILDATA-OBJ_NAME = 'TEST'.
    Mail Subject
    MAILDATA-OBJ_DESCR = 'Subject'.
    Mail Contents
    MAILTXT-LINE = 'Here is your file'.
    APPEND MAILTXT.
    Prepare Packing List
    PERFORM PREPARE_PACKING_LIST.
    Set recipient - email address here!!!
    MAILREC-RECEIVER = '[email protected]'.
    MAILREC-REC_TYPE = 'U'.
    APPEND MAILREC.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = MAILDATA
    PUT_IN_OUTBOX = ' '
    TABLES
    PACKING_LIST = MAILPACK
    OBJECT_HEADER = MAILHEAD
    CONTENTS_BIN = MAILBIN
    CONTENTS_TXT = MAILTXT
    RECEIVERS = MAILREC
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    OPERATION_NO_AUTHORIZATION = 4
    OTHERS = 99.
    ENDFORM.
    Form PREPARE_PACKING_LIST
    FORM PREPARE_PACKING_LIST.
    CLEAR: MAILPACK, MAILBIN, MAILHEAD.
    REFRESH: MAILPACK, MAILBIN, MAILHEAD.
    DESCRIBE TABLE MAILTXT LINES TAB_LINES.
    READ TABLE MAILTXT INDEX TAB_LINES.
    MAILDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( MAILTXT ).
    Creation of the entry for the compressed document
    CLEAR MAILPACK-TRANSF_BIN.
    MAILPACK-HEAD_START = 1.
    MAILPACK-HEAD_NUM = 0.
    MAILPACK-BODY_START = 1.
    MAILPACK-BODY_NUM = TAB_LINES.
    MAILPACK-DOC_TYPE = 'RAW'.
    APPEND MAILPACK.
    Creation of the document attachment
    This form gets the OTF code from the SAPscript form.
    If you already have your OTF code, I believe that you may
    be able to skip this form. just do the following code, looping thru
    your SOLISTI1 and updating MAILBIN.
    PERFORM GET_OTF_CODE.
    LOOP AT SOLISTI1.
    MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
    APPEND MAILBIN.
    ENDLOOP.
    DESCRIBE TABLE MAILBIN LINES TAB_LINES.
    MAILHEAD = 'TEST.OTF'.
    APPEND MAILHEAD.
    Creation of the entry for the compressed attachment
    MAILPACK-TRANSF_BIN = 'X'.
    MAILPACK-HEAD_START = 1.
    MAILPACK-HEAD_NUM = 1.
    MAILPACK-BODY_START = 1.
    MAILPACK-BODY_NUM = TAB_LINES.
    MAILPACK-DOC_TYPE = 'OTF'.
    MAILPACK-OBJ_NAME = 'TEST'.
    MAILPACK-OBJ_DESCR = 'Subject'.
    MAILPACK-DOC_SIZE = TAB_LINES * 255.
    APPEND MAILPACK.
    ENDFORM.
    Form GET_OTF_CODE
    FORM GET_OTF_CODE.
    DATA: BEGIN OF OTF OCCURS 0.
    INCLUDE STRUCTURE ITCOO .
    DATA: END OF OTF.
    DATA: ITCPO LIKE ITCPO.
    DATA: ITCPP LIKE ITCPP.
    CLEAR ITCPO.
    ITCPO-TDGETOTF = 'X'.
    Start writing OTF code
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    FORM = 'ZTEST_FORM'
    LANGUAGE = SY-LANGU
    OPTIONS = ITCPO
    DIALOG = ' '
    EXCEPTIONS
    OTHERS = 1.
    CALL FUNCTION 'START_FORM'
    EXCEPTIONS
    ERROR_MESSAGE = 01
    OTHERS = 02.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    WINDOW = 'MAIN'
    EXCEPTIONS
    ERROR_MESSAGE = 01
    OTHERS = 02.
    Close up Form and get OTF code
    CALL FUNCTION 'END_FORM'
    EXCEPTIONS
    ERROR_MESSAGE = 01
    OTHERS = 02.
    MOVE-CORRESPONDING ITCPO TO ITCPP.
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
    RESULT = ITCPP
    TABLES
    OTFDATA = OTF
    EXCEPTIONS
    OTHERS = 1.
    Move OTF code to structure SOLI form email
    CLEAR SOLISTI1. REFRESH SOLISTI1.
    LOOP AT OTF.
    SOLISTI1-LINE = OTF.
    APPEND SOLISTI1.
    ENDLOOP.
    ENDFORM.

  • Preview 6.0, no send file as email attachment?

    Does anyone know where they put the send file command?  I need to email pdfs from Preview all the time.
    There used to be a "send file as email attachment" command under the edit menu.  It's gone.  Anyone have any suggestions?

    Handsomfreddy wrote:
    Sorry, I dont understand what you are referring to. Can you calify please "undo the changes."
    Thanks,
    Andy
    Didn't you just post this (below)
    Handsomfreddy wrote:
    Very bizarrely Parallels had changed this Mail Preference to some weird Windows program [Disk Clean up or something equally random] thus preventing me from emailing anything from any program.
    That's the change I am referring to.

  • Pdf-file in email

    When I receive a pdf-file in email on my ipad air, I cannot open the pdf-document. It worked perfectly yesterday, but suddenly today I cannot. I have not downloaded/done anything strange on/with my ipad. When I click on the pdf-attachment, it downloads. Then when I click on the downloaded document, I get the following message:
    To view the full contents of this document, you need a later version of the PDF viewer. You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html
    For further support, go to www.adobe.com/support/products/acrreader.html
    Please help!

    That sounds like a message that you would get on a computer rather than on an iPad. Are you having issues with all PDF files or just PDF files from one particular source? Can you close the message and try to use the Open In option?

  • How do I send a pdf file by email

    How do I send a PDF file as an attachment to an email?

    Just like any other file...
    On Sat, Mar 7, 2015 at 12:16 AM, larrys19338374 <[email protected]>

  • No option when opening a pdf from an email attachment

    I recently had trouble opening a pdf file that was attached to an email, and while mucking around with it, I tried opening it up in Word (which didn't help that particular problem anyway).  Unfortunately, now, all my emailed pdf files open up automatically in Word rather than Acrobat Reader.
    So now my question is, how do I get them to automatically open in Acrobat reader directly from the emailed attachment instead of Word? At the moment I have to save them all to my c: drive, then right click on them and select Open With Acrobat Reader 10.  What I want is for them to automatically open in Acrobat Reader 10 rather than having to save them all to my c: drive first because I have many, many of them to print out.  Can anyone help me with this please?

    Hi,
    Can you try saving any PDF onto your local machine (say C:\) and then right click on the same.
    1. Click on the "Open With > Chose Program".
    2. Select Adobe Reader 10 and make sure that you check the checkbox "Always use the selected program to open this kind of file"
    3. Click on OK and you should be good to go.
    Hope this does the trick
    Ankit

Maybe you are looking for

  • My Macbook Pro doesn't recognize my external hard drive

    I had my external HD attached to my MBpro when I attempted to empty trash. The trash window showed it emptying thousand upon thousands of files (way more than was in the bin) and had a negative sign in front of the number of items being deleted. I ca

  • Greater than function not sourcing bool?

    HI, I have the following. Whenever I try to connect the 'Greater than' output to the AND function I keep getting a connection error "Dynamic type not Bool" well something like that. If this is the case how come I was allowed to connect the 'Less than

  • 10.10.4 update allows enabling of TRIM support for non-Apple SSDs

    Careful with Trim and Samsung SSD's.  https://blog.algolia.com/when-solid-state-drives-are-not-that-solid/

  • SELECT FOR UPDATE with the SKIP LOCK clause

    Hi, I have a query regarding the SELECT FOR UPDATE with the SKIP LOCK clause. Whether this will be really good for parallel processing. Also if we are selecting a set of records in a cursor whether the lock will be done at the records level once we f

  • My COM driver doesn't show any methods or properties in LabView 6.0.

    I have a working COM driver (VB, VC++, and others) that does not function in LabView 6.0. After I setup the Automation Refnum, Automation Open, and then either Invoke Node or Property Node shows no methods or properties. Am I doing anything wrong?