Sending a document as an  attachement to an email id.

Hi,
   I have a requirement to send a PDF document as an attachment to an Email Id like [email protected] I have few doubts please can anybody clear my doubts?
1 . What are the pre-requisites to send a mail to Yahoo or other ids?
2. Any special configurations need i get from Basis Team?
3. I am using Function module SO_NEW_DOCUMENT_ATT_SEND_API1.
4. In the configuration of NACE i have given Medium as Simple mail..
Regards,
Sekhar.J

Hi Sekhar,
In order to send the mail attachment as PDF file, there is no need for any special configurations to be made.
What you have to keep in mind is to use the FM "Convert_OTF_2_PDF" before using the FM "SO_NEW_DOCUMENT_ATT_SEND_API1".
Also, with the document type while building the document data for the attachment,use the doc type as "PDF" instead of "RAW".
In case you have any further clarifications,do let me know.
Regards,
Puneet Jhari.

Similar Messages

  • 'send to' widget? I need to send pdf without downloading and attaching to an email (one click send function)

    Is there a 'send to' widget I can attach to a pdf document or form to send pdf without downloading and attaching to an email (one click send function)

    From this conversation's thread it appears that Acrobat is not the application / service at issue.
    As this user forum has as its focus "Acrobat" it seems that the OP is in the wrong place.
    Acrobat's one click send feature provides the user a "draft" email. The user still has to process ("click") through steps with the email client/service to actually get the email out and on its way.
    I'm sure that "one click" does everything is available somewhere. Considering all it'd have to do and do right it'd be rather expensive.
    Be well...

  • When trying to send a picture as a attachment io a email its states a I to install a email program?

    Whwn trying to send a pictsure as a attachment to a email,n it states I need to install an email program, I allready email.  What do I need to do.

    Please have a check on the following link:
    http://helpx.adobe.com/photoshop-elements/kb/freeze-or-error-no-email.html

  • Send pages document as pdf attachment without including the whole document in the message

    What I am trying to do is to write a document in pages then send it as a pdf attachment which shows as a mail icon in the mail message.  One then clicks on the icon and the attached file opens.  Seems I can do it if I send it as a word doc but every time I try and send it as a PDF the whole document shows up in the email body....
    Is there something I am not doing?
    Thanks
    Bryan

    Hi Gee,
    We also tried this:
    Wrote document in Pages and used "export" to save it as a PDF document.
    Fired up Mail, clicked on add attachment and as usual we got the document in the body
    Highlighted the document and right clicked.
    In drop down menu we selected "show as Icon" and it did just that
    We then sent it to our Tablet where, believe it or not it came up as an attachment NOT in the body of the mail.
    Just shaking our heads on this on but I do really think Jerry is absolutely right so will not take any more chances and add a second page if I have to send a pdf......
    Bryan

  • Unable to send Microsoft Office documents as a attachment to an email

    MacBook Pro Mac OS X 10.9.4
    Microsoft Office for Mac 2011
    MS Exchange mail server
    When i am in Microsoft Office Word or Excel and trying to send the document as an email attachment
    I get an error saying  “unable to mail please make sure your program is configured correctly and that you can send mail with it”. 
    The work around is to open Outlook and create an email with an attachment.  This works BUT I would like to be able to
    send from within Office documents as well.
    Anyone have a suggested correction?
    Thanks!

    Hi,
    Based on my research, users who encountered the similar issue are able to fix this issue using one of the following method:
    1. Restarting Mac and holding the Shift key down as it booted to start the Mac in Safe Mode. Then restart Mac normally.
    2. Try to rebuild your Outlook 2011 database. You can do it with pressing the option key and opening your outlook and rebuild the database.
    Since this forum is specific to the Office for Windows version, it's better to post your question the forum for Mac:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from
    your interaction with us. Thank you for your understanding.
    Steve Fan
    TechNet Community Support

  • I recently retired and stopped my subscription to Adobe Pro.  Now I cannot open a pdf document as an attachment in an email.  Can you please advise as to how to correct this problem?

    I recently retired and stopped my subscription toe Adobe Pro.  Now I cannot open a pdf attachment in an email with Adobe Reader.  How can I solve this issue?

    OK. Then the next thing to try is to right-click a PDF file, select Open With, Choose Default Program, then select Reader from the list and tick the "Always use this application..." box, and click OK.

  • Send PDF file as an attachement en an email (only 1 st page send?)

    Hi all !
    I have a requirement to send a spool job as an .PDF attachement via email for my client.
    I was using the FM CONVERT_ABAPSPOOLJOB_2_PDF to convert a spool into a PDF file
    Then Convert PDF from 132 to 255 characters.
    Then I use the following code from the forum to send the attachment to email
    Document information.
              W_DOC_CHNG-OBJ_NAME = 'ATTACHMENT'.
              W_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
              CONCATENATE TEXT-T07 PN-PABRP PN-PABRJ INTO W_DOC_CHNG-OBJ_DESCR separated by space.
              W_DOC_CHNG-SENSITIVTY = 'F'. "Functional object
             W_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
              W_DOC_CHNG-DOC_SIZE = V_LINES_BIN * 255.
    Pack to main body as RAW.
    Obj. to be transported not in binary form
             CLEAR I_OBJPACK-TRANSF_BIN.
              I_OBJPACK-TRANSF_BIN = ''.
    Start line of object header in transport packet
              I_OBJPACK-HEAD_START = 1.
    Number of lines of an object header in object packet
              I_OBJPACK-HEAD_NUM = 0.
    Start line of object contents in an object packet
              I_OBJPACK-BODY_START = 1.
    Number of lines of the object contents in an object packet
              I_OBJPACK-BODY_NUM = V_LINES_TXT.
    Code for document class
              I_OBJPACK-DOC_TYPE = 'RAW'.
              I_OBJPACK-OBJ_NAME = 'ATTACHMENT'.
              APPEND I_OBJPACK.
    Packing as PDF.
              I_OBJPACK-TRANSF_BIN = 'X'.
              I_OBJPACK-HEAD_START = 1.
              I_OBJPACK-HEAD_NUM = 1.
              I_OBJPACK-BODY_START = 1.
              I_OBJPACK-BODY_NUM = V_LINES_BIN.
              I_OBJPACK-DOC_TYPE = 'PDF'.
              I_OBJPACK-OBJ_NAME = 'ATTACHMENT'.
              CONCATENATE 'Remuneration_Statements_' PN-PABRP '_' PN-PABRJ  '.pdf'
              INTO I_OBJPACK-OBJ_DESCR.
              I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255.
              APPEND I_OBJPACK.
              clear I_OBJPACK.
    Document information.
              CLEAR I_RECLIST.
    e-mail receivers.
              read table it_pernr into wa_pernr
                  with key pernr = pernr-pernr binary search.
              if sy-subrc eq 0.
                I_RECLIST-RECEIVER = wa_pernr-usrid.
              endif.
              I_RECLIST-COM_TYPE = 'INT'.                   "Internet Email
    *I_RECLIST-notif_del  = 'X'.
    *I_RECLIST-notif_ndel = 'X'.
              I_RECLIST-EXPRESS = 'X'.
              I_RECLIST-REC_TYPE = 'U'. "Internet address
              APPEND I_RECLIST.
              CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
                  DOCUMENT_DATA                    = W_DOC_CHNG
              PUT_IN_OUTBOX                    = ' '
                  COMMIT_WORK                      = 'X'
            IMPORTING
              SENT_TO_ALL                      =
              NEW_OBJECT_ID                    =
              TABLES
                 PACKING_LIST                     = I_OBJPACK
       OBJECT_HEADER                    = W_OBJHEAD
           CONTENTS_BIN                     = I_OBJBIN
           CONTENTS_TXT                     = I_OBJTXT
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
            RECEIVERS                        = I_RECLIST
    The email did succesfully send to the receipents but only the first page of the PDF attachement file was sent not the 2nd page.
    Can any body help ?
    Thanks a lot

    Hi all !
    I have a requirement to send a spool job as an .PDF attachement via email for my client.
    I was using the FM CONVERT_ABAPSPOOLJOB_2_PDF to convert a spool into a PDF file
    Then Convert PDF from 132 to 255 characters.
    Then I use the following code from the forum to send the attachment to email
    Document information.
              W_DOC_CHNG-OBJ_NAME = 'ATTACHMENT'.
              W_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
              CONCATENATE TEXT-T07 PN-PABRP PN-PABRJ INTO W_DOC_CHNG-OBJ_DESCR separated by space.
              W_DOC_CHNG-SENSITIVTY = 'F'. "Functional object
             W_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
              W_DOC_CHNG-DOC_SIZE = V_LINES_BIN * 255.
    Pack to main body as RAW.
    Obj. to be transported not in binary form
             CLEAR I_OBJPACK-TRANSF_BIN.
              I_OBJPACK-TRANSF_BIN = ''.
    Start line of object header in transport packet
              I_OBJPACK-HEAD_START = 1.
    Number of lines of an object header in object packet
              I_OBJPACK-HEAD_NUM = 0.
    Start line of object contents in an object packet
              I_OBJPACK-BODY_START = 1.
    Number of lines of the object contents in an object packet
              I_OBJPACK-BODY_NUM = V_LINES_TXT.
    Code for document class
              I_OBJPACK-DOC_TYPE = 'RAW'.
              I_OBJPACK-OBJ_NAME = 'ATTACHMENT'.
              APPEND I_OBJPACK.
    Packing as PDF.
              I_OBJPACK-TRANSF_BIN = 'X'.
              I_OBJPACK-HEAD_START = 1.
              I_OBJPACK-HEAD_NUM = 1.
              I_OBJPACK-BODY_START = 1.
              I_OBJPACK-BODY_NUM = V_LINES_BIN.
              I_OBJPACK-DOC_TYPE = 'PDF'.
              I_OBJPACK-OBJ_NAME = 'ATTACHMENT'.
              CONCATENATE 'Remuneration_Statements_' PN-PABRP '_' PN-PABRJ  '.pdf'
              INTO I_OBJPACK-OBJ_DESCR.
              I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255.
              APPEND I_OBJPACK.
              clear I_OBJPACK.
    Document information.
              CLEAR I_RECLIST.
    e-mail receivers.
              read table it_pernr into wa_pernr
                  with key pernr = pernr-pernr binary search.
              if sy-subrc eq 0.
                I_RECLIST-RECEIVER = wa_pernr-usrid.
              endif.
              I_RECLIST-COM_TYPE = 'INT'.                   "Internet Email
    *I_RECLIST-notif_del  = 'X'.
    *I_RECLIST-notif_ndel = 'X'.
              I_RECLIST-EXPRESS = 'X'.
              I_RECLIST-REC_TYPE = 'U'. "Internet address
              APPEND I_RECLIST.
              CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
                  DOCUMENT_DATA                    = W_DOC_CHNG
              PUT_IN_OUTBOX                    = ' '
                  COMMIT_WORK                      = 'X'
            IMPORTING
              SENT_TO_ALL                      =
              NEW_OBJECT_ID                    =
              TABLES
                 PACKING_LIST                     = I_OBJPACK
       OBJECT_HEADER                    = W_OBJHEAD
           CONTENTS_BIN                     = I_OBJBIN
           CONTENTS_TXT                     = I_OBJTXT
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
            RECEIVERS                        = I_RECLIST
    The email did succesfully send to the receipents but only the first page of the PDF attachement file was sent not the 2nd page.
    Can any body help ?
    Thanks a lot

  • Sending payslip as a PDF attachment with an email

    Hi Experts,
    I need to send an email with payslip as a PDF attachment. I wonder how this can be done for country China. The payroll driver program seems doesn't helps to send an email. Can any one tell me, if this can be achieved directly, else will have to write a code for the same.
    Thanks.
    Warm regards,
    Harshad. M

    Hi,
               Here two Z-program needs to be develop.One program is to convert payslip into PDF file & store the PDF file in a folder where you send as an E-Mail.
    Then create a spool request in Remunation statement. Maintain the Mail id's in Inftype-105.
    Develop one Z program which will Send Email with PDF attachment.
    Run this program  the second screen will display where you have to attach the spool request no & the mail ID. Then execute the program to send as email.
    Snita

  • Send backend PO as pdf attachment in an eMail to creator of SC

    Hello,
    I'm working on an SRM 5.5 Add-On on ERP6.0 system (one-client SRM system). Now i want to send the PO which is created in the backend vie eMail as PDF attachment to the creator/initiator of a SC.
    I already pass the SC number in field EKPO-BEDNR into the PO which works fine.
    A new output type for external sending is created as well. The standard functionality which creates the normal output to the supplier. But I want to send it to the creator of the SC.
    Where is the right place to change the receipient list of this eMail? Are there any BADIs I can use?
    Any hint would be appretiated.
    Kind regards,
    Thomas

    Hello,
    I'm working on an SRM 5.5 Add-On on ERP6.0 system (one-client SRM system). Now i want to send the PO which is created in the backend vie eMail as PDF attachment to the creator/initiator of a SC.
    I already pass the SC number in field EKPO-BEDNR into the PO which works fine.
    A new output type for external sending is created as well. The standard functionality which creates the normal output to the supplier. But I want to send it to the creator of the SC.
    Where is the right place to change the receipient list of this eMail? Are there any BADIs I can use?
    Any hint would be appretiated.
    Kind regards,
    Thomas

  • External Send Billing Document - Issues Generating Body Text in Email

    Have generated output type to email billing document as PDF to customer. I am using medium 5 for 'External Send' and have everything working well - the subject line is correctly showing the company name and invoice number, also the PDF is tagged correctly the same data. The issue I am having is trying to incorporate body text in the email itself. I found OSS note 753622, and it indicates this is not possible but the note is quite old. I have combed internet for solutions on this, and many suggestions seem to point to function module CONVERT_OTF_AND_MAIL but not clear to me that this can be overcome here. Would appreciate any insights if someone has experienced this requirement as well.
    Thanks,
    Jay

    Jason,
    The FM you mentioned CONVERT_OTF_AND_MAIL is only for converting the OTF format to the email format. It has no other role in displaying some texts in the email.
    As already pointed out, it is not possible in standard SAP. You have to go for the custom code in the report program meant for the output type.
    This is the widely accepted and used practice in output world.
    Hope this helps you

  • I want to attached scanned documents as an attachment.  So far in PDF and Jpeg the entire document appears

    Summary: Sending scanned documents as an attachment.  In PDF and JPEG the entire document is displayed rather than an Icon

    As long as you used the paper-clip Attach icon, that should be fine.
    The entire document appears to you because your Mac recognizes the document type, and displays it for you, saving you from having to mouse around and find a Reader for it. You can still use the Save icon to save a copy of only the attachment.
    To avoid problems with other email readers, be sure the checkbox [√] send windows-friendly attachments is checked.
    I addition, some email readers cannot cope with any attachments positioned at any place in the document other than at the very end. So make sure you move the cursor to the absolute end of the document before clicking "Attach".
    If all else fails, send an email that says, "attachment to follow", then send the attachment right away in a separate email, with nothing else in the body of the message. Some use the Subject abbreviation (nt) to indicate "no text", that is, no words typed in the message portion.

  • Send a document to a single member of the role

    I'm working with 11g
    I have a process with 2 roles.
    The first role is "Author" , is a initial task and sends a document (composed by attach and some metainformation) to the examiner.
    The second role is "Examiner" and examines the document from approve or reject.
    The members of this role are "examiner1", "examiner2" and "examiner3".
    In some case the Author must send a document at only one examiner ( for example "examiner2" ) ; in the Author form I insert a selectOneChose to select a single examiner.
    In the BPM process how do I send a documento at only one examiner of the role "Examiner"?
    Must I create a role for every single examiner ( one role for examiner1, one role for examiner2 ... and so on)?
    How can I solve this problem?
    Thanks
    Elena

    Hi,
    you can assign it to the whole group, but as soon as one member did review it the process can continue.
    or
    you setup a business rule and based on a certain condition a certain member gets the taks assigned.
    Hope this helps,
    Ron

  • Sending Appleworks document to PC user

    How do you convert a document created on Appleworks via wp to a word document? I recently tried to send the document as an attachment, & recipients replied with "please send as a word document". It was saved in documents with cwk at the end of title of document. I am not that computer literate & am still trying to understand macs. Any help would be appreciated. Thanks.

    Hi KJDiGi,
    Welcome to AppleWorks discussions.
    Your question drew numerous quality answers. Allow me to mention something you should be aware of or maybe you already are.
    There's a suggestion to save as PDF, with Acrobat Reader a PDF can be copied printed etc.. So let's just say you want to send a PDF that neither can be copied nor printed. Okay we're thinking James Bond stuff here huh; with the file open click Print > PDF > Save as PDF, at the bottom of that screen is a button titled "Security Options..." in there you can set passwords:
    1. To open the document
    2. To copy text, images and other content
    3. To print the document.
    As you see when security or maintaining document integrity is important using that button is the way to go. With our Mac OS X we have some nice PDF security built in.
    A suggestion: in the upper right of these forums is the Search feature. In there thousands of questions have been asked (the issue you asked about as well) with answers. It's a wealth of information that may save you time awaiting one of us endusers to respond to a question asked.
    These Discussions are enduser helping enduser, not Apple employees answering questions. Apple provides these discussion forums for endusers however, Apple neither monitors nor engages in discussions. Enduser such as yourself when they have extra time answer questions.
    Again, welcome to AppleWorks Discussions, have fun here.
    Cordially,
    RicD

  • I cannot open documents that are sent to my email account

    I have Adobe reader and can open documents with the exception of any documents sent to my email at
    att.net My email provider has tried on several occasions to find any problems with the email account ect.
    with no resolve. My search engine is Mozilla firefox

    By accessing my account through one of the suggested addresses, then re-entering my username and password which creates a new bookmark, has allowed me to open a document which was attached in an email.
    Thank you for the advise.

  • I want to email a Pages document as a Word doc. I used to be able to do this by clicking on share then send via mail then on Word and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    I want to email a Pages document as a Word doc. I used to be able to do this by clicking on 'share' then 'send via mail' then on 'Word' and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    It's difficult to do more than guess when you don't say what version of OS X or Pages you're running, but if you're on the latest, have you tried the Share menu -> Send via Mail command?
    If that doesn't help, you may have better luck if you ask in the Pages forum:
    Pages
    When you repost, be sure to include full details about your versions so that people know what it is you're working with.
    Regards.

Maybe you are looking for

  • Kernel Panics and Frequent Re-Boots - Help!

    Hi all, I'm new to this, and haven't posted before - I am getting possibly three times a day random reboots and kernel panics (the same thing?). No pattern to the problems. Sometimes I'll close the lid of my Macbook and then a minute later and I'll h

  • Error while running BDC in Background

    Hi, I am using BDC for a custom transaction YMMFGC. The operation that I am acheiving using this transaction is updating Materials from SalesOrg/Dist Chnl to another SalesOrg/Dist Chnl. When I am trying to run the Program in Foreground in No Screens

  • Error in Viewing the report in InfoView and CMC  error #UNAVAILABLE

    Hi, I am using BO XI 3.1 Edge series server with latest fix packs. My problem is i created a webi report with Administrator account using the webi rich client tool and after creating the report i exported  to CMS . when i am trying to view the data i

  • Saving a file with Dreamweaver it doesn't show up finder view of folder

    Since I updated Mac Leopard it seems that when saving a file with Dreamweaver 8 it shows up in the files list but it doesn't show up in the finder when I look at the same folder. But if I save to the desktop the file is visible and if I save to anoth

  • Forum connexion problem

    Hi, Since the last week I'm facing connexion problem to the Forum. Error page 404, 502, website unavailable and so on, are very often the page which I get whenever I try to get a page Forum (database general, installation etc.). This problem exists t