Send an e-mail to all my vendors

hello,
Can I send throgh the SAP a message (via e-mail, or via fax) to all my vendors or to all the vendors with certion criteria?

there is no standard transaction to do this.
I used to send letters to vendors and customers with small program that calls function module MS_WORD_OLE_FORMLETTER
which triggers the serial letters functionality in Microsoft word on your local PC. so you can write the letter in word, and only do the selection of vendors and submitting variable fields like address ia the function module.
However, for your case it is probably easier to retrieve the email address from ADR6 table directly and do all the rest outside SAP.
do SE16 at table LFA1 and get the address numbers from all your vendors.
then use this address number to pull all email addresses from ADR6 table.

Similar Messages

  • Sending a e-mail to all people in Entourage mail address book

    I have to abandon my present e-mail provider and would like to send a e-mail to all the people in my address book (the one that is integrated in Entourage, not the Apple one). Is there a way of automating this?
    Would love to know if anybody has a solution as to how to do this, hate to think I have to do this manually about a 1000 times.
    Thanks

    If you have 1000 contacts, you don't need to send 1000 individual messages. You can send one email and place all contacts in the Bcc: field which will hide all email addresses from all recipients.
    The only possible limit will be with the email account provider for this account. Most IPSs and email account providers have a total recipient limit per message and/or a total number of recipients limit for all messages sent in a 24 hour period along with a limit for the total number of messages sent in a 24 hour period.
    Some ISP's and email account providers also require at least one email address placed in the To: field when using the Bcc field when addressing a message. In this situation, you can place your email address in the To: field and all other addresses in the Bcc: field. You will receive the message but this gets around any such restriction.
    You need to determine your email account provider's limit for the total number of recipients per message and/or the limit for the total number of recipients for all messages sent in a 24 hour period before doing so.

  • How do you send an e-mail to all members of a defined group in smart groups?

    I am one of the organisers of an annual guitar meeting and want to send mail to all the regular attendees.
    I have set up a "Smart Group" and "Distribution List" but can't see how to send the information about our next meeting without entering all the e-mail addresses individually.
    Can anyone help please?

    Hi William,
    I've tried this, but it isn't working for me. Should I chnge the Smart Group, to an ordinary one?
    Thanks

  • How do I send an e-mail to all on my contact list

    how do I send one the same e-mail to all of the people on my contact list

    Is this in some webmail being viewed in Firefox browser or are you using a email client like Thunderbird?
    If Thunderbird then see http://forums.mozillazine.org/viewforum.php?f=50 and http://getsatisfaction.com/mozilla_messaging

  • I have been successfully sending out e-mails to all people listed in a Group Address but yesterday only some of the people received their mail. Today I split the list, 25 in each Group Address, again, the same people did not receive their e-mail. Why?

    I have been successfully sending out e-mails each month to about 50 people whose addresses are listed under a Group Name. Yesterday about half of the e-mails were received, the other half weren't. So I tried splitting the group into 2 separate Groups, again the list who didn't receive the first mailing again did not receive the second mailing. There does not seem to be anything that connects the recipients or non-recipients. They have a mix of providers, it was not just the first half of list that was affected, it appears to be totally random.  Any suggestions?

    Neither of these error message look like they're from Exchange.
    Connected to 68.232.130.28 but connection died. (#4.4.2)
    I'm not going to try again; this message has been in the queue too long.
    Sorry, I wasn't able to establish an SMTP connection. (#4.4.1)
    I'm not going to try again; this message has been in the queue to long.
    Are those from NDRs someone in your organization received, or are they from NDRs received by a sender outside your organization?
    Is 68.232.130.28 your IP address? The IP address resolves to the name esa2.firstam.iphmx.com. Is that a MX for the recipient's domain?
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Can no longer send or get mail. All settings are correct. Worked fine before.

    I can use a secondary account but not my primary yahoo.verizon account. Verified all settings are correct but the password was erased. After re-entering password a message says I have to verify my password by entering it at www.yahoo.com. However, I DO NOT have a Yahoo email account. It is a Verizon email account partnered with Yahoo.

    OS X Mail: Troubleshooting sending and receiving email messages

  • Report to see and send as e-mail of all open Complaints/transactions

    Hello Gurus,
    We need to view all the Open Service Transactions/Incidents (we have a Ztransaction type) for the past 3 months and send that output as an attachment to our Service Manager's e-mail address for him to action on.
    Is there a standard way of achieving this ?
    Please point me if there are any GUI transaction codes that i can schedule them as a background job specifying an e-mail address ?
    Thanks in advance,
    Regards,
    Gopi.

    Hi Gopi,
    There are no standard tools for your requirement. It is very specific requirement to your customer.
    However, there are a couple of tools which you can use to extract the data. The mailing part needs to be development in custom solution.
    My suggestion would be develop a report and use the tools to extract the data. Then schedule the job in the back ground. I also developed a similar kind of functionality in one of my earlier project.
    Let me know if you need any kind of technical inputs regarding the development.
    Hope this helps.
    Thanks,
    Samantak Chatterjee.

  • Sending E-Mail to all entries in a report.

    Hello,
    I am looking for a way to send an e-mail to all staff stored in a report based on whether they have completed their time sheet for this week or not. The e-mail will be sent to only those people that have not submitted the time sheet as a reminder.
    Any help would be appreciated, thank you.

    Hi,
    DECLARE
        v_From      VARCHAR2(80) := 'Your.Worst.Nightmare;  
        v_Subject   VARCHAR2(80) := 'Time sheet due';
        v_Mail_Host VARCHAR2(30) := 'smtp.MAILHOST.com';
        v_Mail_Conn utl_smtp.Connection;
        crlf        VARCHAR2(2)  := chr(13)||chr(10);
        -- Read emails from table
        cursor emails is select email from tbl_emp where timesheet = "N";       
    BEGIN  
        -- Sends the email to all listed
        for email in emails loop
        v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host, 25);
        utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
        utl_smtp.Mail(v_Mail_Conn, v_From);
        utl_smtp.Rcpt(v_Mail_Conn, email.email);  
        utl_smtp.Data(v_Mail_Conn,
           'Date: '   || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
           'From: '   || v_From || crlf ||
           'Subject: '|| v_Subject || crlf ||
           'To: '     || email.email || crlf ||
           crlf ||
           'Hi,
    Submit your time sheet noob.'|| crlf ||     -- Message body       
    KR,
    Joe Bloggs,
    UT2004 & QuakeLive player');
         utl_smtp.Quit(v_mail_conn);
         end loop;
    EXCEPTION
         WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
            raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;
    /Alter your query so that it lists those who didn't submit their timesheets & whatever message you want appearing. You need their email storing somewhere.
    You put this PL/SQL into a PL/SQL region and give it a conditional display e.g. clicking a "timesheet overdue" button.
    Mike

  • How do I send a mass e-mail to all my contacts without showing all the addresses?

    How do I send an e-mail to all my contacts without everyone being able to see the individual addresses?

    Bcc   = blind cc

  • E-mail to all of our portal-users

    Hello,
    I'd like to send an e-mail to all of our portal-users to keep them informed
    about our new products.
    I currently do so by using the news-iview "send-to" feature, but every time
    I try to send an email, I get the following error message: resource can't be
    used.
    Should I make any changes in my settings?
    Are there any other possibilities to send an e-mail through the portal to
    all users at once?
    I'd really appreciate your help.
    Regards,
    Mike.

    Hello Mike, Hello Francesco,
    have you set a SMTP Server at: System Administration -> System Configuration -> UM Configuration -> Notification E-Mails ?
    Regards
    Gregor

  • TS3899 Tried all the tips on line. Every time I try to send an e-mail, it gives me this message, "A copy has been placed in your Outbox. Sending the message content to the server failed" Any help in how to resolve would be appreciated

    I went through all the steps to try to resolve getting the message in a box every time i try to send an e-mail. What next ?
    Message is " A copy has been placed in your
                        Outbox. Sending the message content to the server failed."
    Any assistance would be greatly appreciated. My internet works fine as I can send e-mails from my Yahoo account on my MAC no problem.
    Address is fine etc.

    How long has it been going on? I've had my yahoo mess up and if i wait a bit it resolves itself. Yahoo is doing something with their servers and it messes with your mail if your mail happens to be on one of those servers.

  • I can't send emails from Mail. I have three different accounts set up and have the same problem with all. The mail just sits in my outbox. All worked fine until Yosemite upgrade. Recent update has not fixed problem.

    I can't send emails from Mail. I have three different accounts set up and have the same problem with all. The mail just sits in my outbox. All worked fine until Yosemite upgrade. Recent update has not fixed problem.

    I have been experiencing the same problem. My mail app won't even open on my Late 2011 Macbook Pro. It will show as open, but the app will never actually show up.

  • Whenever I send an e-mail with my yahoo account which is also my apple ID a small icon (personal) picture is attached to the e-mail. How do I remove this picture from being attached to all of my outgoing messages?

    Everytime I send a message from my yahoo account (which is also my appleID account) a small icon picture (which is a pic of my ex-boyfriend) is attached to the e-mail heading.  I'm able to notice  I want to remove this from happening. The picture is displayed on my iphone when I open up the mail.
    Steps I take:
    1. I write an e-mail message from my yahoo account to my other .edu account on a desktop computer.
    2. I send the e-mail message from my yahoo account to my other .edu account on a desktop computer.
    3. When I open up my .edu account on my iPHONE, there is a new message from my yahoo account.
    4. Upon opening the e-mail message on my iPHONE, in the title heading it has the title of the email along with a small (upper right) picture on the iPHONE.
    Another thing that I tested was the same thing on my iPAD for text messages:
    1. I set up my text messages to my yahoo account (which is also my apple ID account)
    2. I send a text message to a person and the same small icon picture is shown on the ipad with each message that is sent
    3. The person receiving the text message does not get the small icon picture; however, on the ipad it shows this picture (WHICH NEEDS TO BE REMOVED)
    I need to determine how this icon picture is associated with both my yahoo and apple ID account. The funny thing is that I don't have this picture on any of my devices (mac, iphone, ipad). It has been completely removed from all of my technology sources. I'm thinking it has to be something to do with the origniation of my apple ID.
    PLEASE HELP ME....this picture is hurting my professionalism when I send outgoing messages.
    Thanks.

    search google for "iphone remove picture from contact"

  • When sending an e-mail I used to just click on contacts then click on the name or group I wanted to send the e-mail to and move it to the "To" area of the e-mail.  All of a sudden I now get a full screen in "contacts" and can no longer move a name .

    MacBookPro 15
    OS - Yosemite
    Problem area - "Contacts"
    Problem - when sending an e-mail in "Mail" I used to open contacts to get an address.  A small window opened, I clicked on addressee and moved the addressee name to the e-mail.  Can no longer do this because I now get a full screen in Contact.
    Question - how do I get back to the small window in Contact?

    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.

  • Learning Solution - Need to send a reminder e-mail to all participants

    I need to be able to send a reminder e-mail to all participants in a course.  I would like the e-mail to be sent to the participants 7 days prior to the start date of the course.
    We currently use SMARTFORMS to send an e-mail to a participant when he is booked into a course.  We would like to send the same e-mail to the participant 7 days prior to the start of the course as a reminder. 
    Would I accomplish this using a workflow?  Does anyone know a function that could be used to send the same e-mail again?  We have not been able to find the code to send the e-mail to the participant again.

    Hii Karen,
    We are also facing the same problem, but with the same i also want to know that how to send an e-mail to a participant when he is booked into a course coz for me its not working.
    Could you please tell me the steps to follow.
    Thanks & Regards,
    Nidhi

Maybe you are looking for

  • How to insert the partner link (xml)response to data base adapter in BPEL:

    Hi to every one, I have little bit knowledge in oracle SOA suit and having knowledge in java technologies, I am developing one central reporting server for this I have the following requirement. I need to call ‘N’ departmental servers (partner links)

  • HT1933 Unable to hear all the music I have purchased on my iPhone iTunes account on my IPhone 5.

    I am unable to hear the songs I purchased on my iPhone 5. The songs skip. I have already had my speaker replaced. Now most of my purchased music will not play.

  • In-house production of asset through process order

    Dear Experts, We are procuring  raw material and doing in house production for this raw material. The process i followed is : we created a new order type and assigned settelement profile for asset under contruction while creating prod order it is ask

  • Error in form based authentication

    Hi all, i want 2 implement form based authentication to a dummy resource in iis. first i created authentication as Challenge Method Form Challenge Parameter passthrough: no creds: usernamevar passwordvar action: /access/oblix/apps/webgate/bin/webgate

  • Returning an Apple Product

    Boy does time fly. I purchased a Retina MacBook Pro 15" for work two weeks ago (purchased on August 10th). Can I still return this MBP to the Apple Store? Is there a restocking fee? I'm in Las Vegas, Nevada, United States. I'm not happy with the powe