PO send in Email requires more attachments

Hi All,
Currently we have configured a message to send the PO to vendor and this process works fine, Now we need to attach some more files in the same email.. Please let me know how to do it and Is there any user exit or BADI for this.
regards,
Prabhu

Hi Ramesh,
How to do in outlook??
Hi Dipak,
Yes the documents are attached in the PO -via  ME21n or ME22n, I am working on 4.7 E.
Can you give me some BADI for this ??
regards
Prabhu

Similar Messages

  • TS3276 Cannot send an email to more than 9 contacts?

    Unable to send an email with more than 9 contacts.  Get the following issue -
    The server response was: #4.5.3 Too many recipients.
    The email will send on ipad/iphone but doesnt on imac using both apple mail & air mail?
    Imac has Maverick installed.
    Any suggestions? Thanks

    Is the info in this link hat you are looking for: http://email.about.com/od/emailnetiquette/a/cc_and_bcc.htm ?

  • Sending an email with more than 75  characters

    Please can you tell me, how i can send an email with more than 75 characters from a workflow. We need to send a link which has more than 130 characters.

    Hi Benjamin,
    You have a couple of options:
    Put your link into a container element and put that into your text instead of hardcoding it.
    Instead of the sendmail step, create a task based on SELFITEM.SENDTASKDESCRIPTION. This is exacly the same as the mail step minus the 'different' step editor in the builder. There you can create the text using the sapscript editor and join lines up.
    Have a look around OSS, there are some notes on this issue.
    Cheers
    Mike

  • Send an email with 2 Attachments .....

    Hi Gurus ,
    I made an report that takes an otf and make it as PDF and send it as email.If i run the report it runs ok .
    My problem is that i want to attach  2 files more to that email that exist already in my Disk. For example An excel document and a Txt document.
    I want this to happen automatically without the user must have to choose the files .
    Thanks a lot ....
    Points will be rewarded !!!!!

    Hi,
    I have worked on a similar requirement recently but i have attached two .xls files you can edit the code according to your reqirement.
    REPORT ZDOC_AS_EMAIL_3.
    *& Report ZEMAIL_ATTACH *
    *& Example of sending external email via SAPCONNECT *
    TABLES: ekko.
    PARAMETERS: p_email TYPE somlreci1-receiver.
    TYPES: BEGIN OF t_ekpo,
    ebeln TYPE ekpo-ebeln,
    ebelp TYPE ekpo-ebelp,
    aedat TYPE ekpo-aedat,
    matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
    wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
    ebeln(10) TYPE c,
    ebelp(5) TYPE c,
    aedat(8) TYPE c,
    matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA: it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: l_t_objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
    t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    w_cnt TYPE i,
    w_sent_all(1) TYPE c,
    w_doc_data LIKE sodocchgi1,
    gd_error TYPE sy-subrc,
    gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
    *Retrieve sample data from table ekpo
    PERFORM data_retrieval.
    *Populate table with detaisl to be entered into .xls file
    PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *Populate message body text
    perform populate_email_message_body.
    *Send file by email as .xls speadsheet
    PERFORM send_file_as_email_attachment
                        tables it_message
                                it_attach
                            using p_email
        'Example . xls documnet attachment'
                                     'XLS'
                                'filename'
                        changing gd_error
                              gd_reciever.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    PERFORM initiate_mail_execute_program.
    *& Form DATA_RETRIEVAL
    *Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
    SELECT ebeln ebelp aedat matnr
    UP TO 10 ROWS
    FROM ekpo
    INTO TABLE it_ekpo.
    ENDFORM. " DATA_RETRIEVAL
    *& Form BUILD_XLS_DATA_TABLE
    *Build data table for .xls document
    FORM build_xls_data_table.
    *CONSTANTS: con_cret(2) TYPE c VALUE '0D', "OK for non Unicode
    *con_tab(2) TYPE c VALUE '09'. "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    class cl_abap_char_utilities definition load.
    constants:
    con_tab type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
    con_cret type c value cl_abap_char_utilities=>CR_LF.
    CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    LOOP AT it_ekpo INTO wa_charekpo.
    CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
    wa_charekpo-aedat wa_charekpo-matnr
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    ENDLOOP.
    ENDFORM. " BUILD_XLS_DATA_TABLE
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    *Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                           using p_email
                                                p_mtitle
                                                p_format
                                              p_filename
                                        p_attdescription
                                        p_sender_address
                                    p_sender_addres_type
                                        changing p_error
                                              p_reciever.
    DATA: ld_error TYPE sy-subrc,
    ld_reciever TYPE sy-subrc,
    ld_mtitle LIKE sodocchgi1-obj_descr,
    ld_email LIKE somlreci1-receiver,
    ld_format TYPE so_obj_tp ,
    ld_attdescription TYPE so_obj_nam ,
    ld_attfilename TYPE so_obj_des ,
    ld_sender_address LIKE soextreci1-receiver,
    ld_sender_address_type LIKE soextreci1-adr_typ,
    ld_receiver LIKE sy-subrc.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    *Fill the document data.
    w_doc_data-doc_size = 1.
    *Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'REPORT'.
    w_doc_data-obj_descr = ld_mtitle . "mail description
    w_doc_data-sensitivty = 'F'.
    *Fill the document data and get size of attachment
    CLEAR w_doc_data.
    READ TABLE it_attach INDEX w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    CLEAR t_attachment.
    REFRESH t_attachment.
    t_attachment[] = pit_attach[].
    *Describe the body of the message
    CLEAR t_packing_list.
    REFRESH t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE it_message LINES t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    APPEND t_packing_list.
    **Create 1st attachment notification*
    *t_packing_list-transf_bin = 'X'.*
    *t_packing_list-head_start = 0.*
    *t_packing_list-head_num = 1.*
    *t_packing_list-body_start = 1.*
    *DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.*
    *t_packing_list-doc_type = ld_format.*
    *t_packing_list-obj_descr = ld_attdescription.*
    *t_packing_list-obj_name = ld_attfilename.*
    *t_packing_list-doc_size = t_packing_list-body_num * 255.*
    *APPEND t_packing_list.*
    ***Create 2nd attachment notification*
    *data: x type i.*
    *DESCRIBE TABLE t_attachment LINES X.*
    *append lines of it_attach to t_attachment.*
    *data: start type i,*
          *end type i,*
          *cal type i.*
    *start = X + 1.*
    *describe table t_attachment lines end.*
    *cal = end - start.*
    *t_packing_list-transf_bin = 'X'.*
    *t_packing_list-head_start = 0.*
    *t_packing_list-head_num = 1.*
    *t_packing_list-body_start = start.*
    *t_packing_list-body_num = end.*
    **DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.*
    *t_packing_list-obj_descr = 'Eng Change'. "ld_attdescription.*
    *t_packing_list-doc_type = ld_format.*
    **t_packing_list-obj_name = 'Eng' .*
    *t_packing_list-doc_size = t_packing_list-body_num * 255.*
    *APPEND t_packing_list.*
    *Add the recipients email address
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    IMPORTING
    sent_to_all = w_sent_all
    TABLES
    packing_list = t_packing_list
    object_header = l_t_objhead
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_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.
    *Populate zerror return code
    ld_error = sy-subrc.
    *Populate zreceiver return code
    LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
    ENDLOOP.
    ENDFORM.
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    *Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
    WAIT UP TO 2 SECONDS.
    SUBMIT rsconn01 " WITH mode = 'INT'
    "WITH output = 'X'
    AND RETURN.
    ENDFORM. " INITIATE_MAIL_EXECUTE_PROGRAM
    *& Form POPULATE_EMAIL_MESSAGE_BODY
    *Populate message body text
    form populate_email_message_body.
    REFRESH it_message.
    it_message = 'Please find attached a list test ekpo records'.
    APPEND it_message.
    endform. " POPULATE_EMAIL_MESSAGE_BODY

  • On my imac, All of a sudden I am unable to send original emails with any attachments.  I can attach the file but when I try to send it, it won't send.  Also, if I am emailing back and forth as it gets longer, it no longer transmits

    On my imax, all of a sudden I am unable to send original emails with attachments of any size.  I can attached the file but when I try to transmit, it will not go.
    Also, if I am emailing back and forth, once there gets to be several threads, it will no longer transmit.  Any suggestions. I am using gmail in the apple mail system

    Mike,
    Are any of your other applications going wonky, or is it just Logic?
    I'm afraid I've never heard of this particular problem before, but if it were happening to me the first thing I would do is delete my "com.apple.logic.express.plist" file in Library>Preferences, then repair permissions in Disc Utility, and finally restart my computer.  Then I would launch Logic and see if the problem has been corrected.  It's amazing how much these two steps can accomplish.
    If that doesn't resolve the issue I would launch Logic and go to Preferences>Audio Units Manager to see if all my plug-ins are properly validated.

  • How to send and email with Multiple attachments

    Hi,
    I'm new to java and been trying to send weekly newsletters to subscribers,
    however the news letters have images that need to be attached to the emails, but i am unsure how to do this.
    As the moment i have a to files.
    writeemail.jsp
    this will have a form where the user will write out there email, and then have a submit message.
    sendemail.jsp
    this script retreves what the user has writen and then calls a class, to send the email
    please help

    http://java.sun.com/products/javamail/FAQ.html#sendmpr

  • How do you send an email to more than three people each time?

    Recently my email has changed and only has three spaces allotted for sending messages "to" recipients.
    Please tell me how to increase the number of recipients so that I may email everyone needed and do not have to send multiple email messages.

    Press the enter key after filling the last address field and they keep appearing.

  • How send an email with more receivers with workflow

    Hi all,
    I created a custom workflow.
    How can I add more receivers to a email task?
    any suggetions?
    thanks
    enzo

    hi
    you can visit this thread
    Re: Workflow : How to send mail to a SAP distribution list
    hope this helps
    regards
    Aakash Banga

  • When sending an email in Yahoo, attachments won't load, no matter how small. What settings could be preventing this? Attachments will load if I use Internet Explorer.

    When I click "attach files," it sits there forever as the file tries to load, but it never finishes. This started a few months ago. I've been using Firefox for years and I've never seen this. I don't think I've added any add-ons or plug-ins recently.

    x0SiN0x:
    Welcome to Apple Discussions..
    My first suggestion is to Repair Disk. Here's how:
    Insert Installer disk and Restart, holding down the "C" key.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel, and report)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    If DU reports errors it cannot repair you will need to use a utility like Tech Tool Pro or Disk Warrior
    Please post back and let me know how that goes.
    Here are a few links that may help you to identify the issues:
    Resolving Disk, Permission, and Cache Corruption
    Tuning Mac OS X Performance
    Mac OS X System Maintenance
    Please don't hesitate to post back should you have further questions or comments, or with update.
    Good luck.
    cornelius

  • Send email with multiple attachments using MS outlook

    Hi,
    Is it possible to send an email with multiple attachments using MS outlook. (Using activex)
    Regards,
    Neha

    nehrnul wrote:
    Hey thanks for the reply. I'll try that way also.
    but currently my requirement is to send email using MS Outlook. And I found 1 solution using invoke node
    Regards,
    Neha
    That' "requirement" sounds like it was written by someone who is trying to drive the design of the application.  Without knowing your personal situation it's hard for me to say, but if I had to guess I would say the real requirement is to send an email with multiple attachements, and the person giving that requirement thought sending it through Outlook would be the best way.  You should get clairification on what the real intend of that requirement is.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • I am unable to send emails to more than one person in the to: on my emails

    I seem to be unable to send an email to more than one person at a time.  can do on i pad and i phone but not on mac book pro. any advice? If I want to do two people i can do one in the to: and one in the copy:. 

    Ok, now, typically, it's mysteriously working. No idea if what I was doing caused it. Set up the account as a POP one using my work outgoing server instead of mail.me.com, discovered that the phone automatically removed all my outgoing mail servers, right after I'd activated them all, so went back and reactivated. Sent email successfully. Created another account as IMAP but everything else the same, and now it suddenly works.
    This has happened to me several times in the past.

  • Office 365 json api | send emails with inline attachments

    I send the description my team is having with the json integration with Office API 365.
    We want to send an email with inline attachments through the JSON API.
    With that objective, what we are doing:
    1. Create an empty draft message;
    2. Send the several inline attachments;
    3. Update the body of the draft message (with cid images inline);
    4. Send the message;
    What is are our issue with the API?
    We are unable to set the "ContentType" properties when we submit the attachments to the Office API 365.
    Despite the "ContentType" we send, it is always null.
    We are using the following API: POST https://outlook.office365.com/api/v1.0/me/messages/{message_id}/attachments
    That's the reason we think that despite the inline image then it is found in the body, it cannot be displayed because the contenttype it is not set correctly.
    Please give us some direction.
    Best Regards,

    Answered here:
    http://stackoverflow.com/questions/27377376/how-do-i-send-email-with-inline-attachments

  • On my mac why does it take so long to send a Email with an attachment, on my mac why does it take so lone to send a Email with an attachment

    on my mac why does it take so long to send a Email with an attachment, on my mac why does it take so lone to send a Email with an attachment

    It depends on the size of the attachment and the speed of your internet connection.
    Next time you send an email with an attachment do these two things:
    In Apple Mail (I assume you are using Apple Mail), under the Window menu select Activity. Arrange the Activity window so you can see it.
    Then open the separate application located in the Utilities folder called "Activity Monitor" and arrange it so you can see it at the same time as the Activity window in Mail.
    In Activity Monitor program, select the tab labeled "Network." Watch the "Data sent/sec" portion. Then send your email, while watching the Mail Activity window and also the Activity Monitor program window Data sent/sec area.
    You should see the mail being sent with a progress bar in the Mail Activity window and also you should be able to see how many bytes/sec or KB/sec or MB/sec your internet connection is giving you in the Activity Monitor window.
    Example: my internet provider gives me about 20 Megabits per second download and 5 Megabits per second upload. To convert these to Megabytes per second (Activity Monitor shows things in bytes, not bits), simply divide by 10 (not the exact thing to do, but close enough). So I get 0.5 Megabytes per second upload speed. When I send a file that is 5 Megabytes in size, it takes about 10 seconds if I am getting the full upload bandwidth. If I am getting less than that (which sometimes happens), it will take proportionately more time. Either way, you can see what is happening with these two windows.
    If your internet provider is supposed to give you, say, 5 Megabits/sec upload (0.5 Megabytes/sec), but you see only say, 5 KB/sec (=0.005 Megabytes/sec), sent in Activity Monitor, then your emails are taking a long time because you are getting only abut 1/100 the speed you should be. You might want to check with your internet provider about that.

  • PO to supplier using external send option email (to multiple addresses)

    Hello All,
    We have activated PO external send option for our client but they want that PO should be sent to more than one ID of the supplier and it seems that is not possible by maintaining multiple addresses in Vendor Master's Address view as system only picks one having indicator ticked, also system does not allow to tick it for more than one address. Please let me know if it is possible using standard function to send PO email to more than one address.
    I need to know if there is any standard way of doing this w/o using any development or ABAP work.
    Also has anybody tried using disctribution list SO15 if it is possible?
    Please help we are at Go live.
    Regards
    Anjan
    Edited by: Anjan Dubey on Aug 12, 2009 10:28 AM

    Hi,
    From my opinion, it's impossible of the standard function in SAP system, so:
    Firstly you need to confirm with your buyers, whether they really require to send the information to multiple addresses, maybe they can send the information to one contact person on vendor side, then the contact person can forward the email to other relevant people;
    If have to do it, you need to develope an ABAP background job to do it!
    Hope you can solve the problem!
    Good luck
    Tao

  • Not able to send yahoo emails through 'Mail' with attachments size 5 MB or more.

    Hi all,
    I am not able sent mails though 'MAIL' with attachment size more than 5Mb or more. I am using macbook pro and 10.8.3 OS X. Can anyone tell me how we can sent mails with resonable size? pls note that I want to send mails with actual size.
    I am using yahoo for sending mails.
    Regards,
    Amit

    All email service providers have a size limit on sending an email.  See the following link for info on yahoo mail's file size restrictions, and ensure you are within this restriction.
    - http://answers.yahoo.com/question/index?qid=20100326083940AAQgBa5.

Maybe you are looking for

  • Bundle Renewal Question?

    I have a regular Verizon account and I purchased a one month phone card for someone for the prepaid phone.  I am having trouble understanding how everything works with the Prepaid when I look at the account because it is different from my regular acc

  • Block creation of an A/R invoice

    Hello everyone, I have a doubt; during my operation itu2019s common to change the a/r invoice posting date, to create an Invoice. Do you know if thereu2019s a way for asking authorization in the creation of this kind of documents. If the date of crea

  • Error occur during Autoinvoice

    Following I post the error msg of the point of error occured during performing Autoinvoice. it seem the error is made by process 'raadhd' and used up all storage of the Rollback segment. After the error occured, the system will becoming slow and cann

  • Iphoto and albums

    I just installed ilife 08 since my iphoto was not working after a leopard upgrade. My question is how do I import my albums from my old iphoto so that they show up as albums in the new version of iphoto ? Thanks. JD

  • Initial Parameter DB_WRITER_PROCESSES Doesn't work

    I set the initial parameter DB_WRITER_PROCESSES as 5 in init.ora file. But when I restarted the database, I found the parameter show as 1 and only DBW0 existed. I don't know the reason, would you please help me? Thanks and Best Regards, Su Qian