Populate recipients in ALV email funcitionality

I have a alv report output which has the standard email functionality (email button on application bar). I have a requirement of automatically populating the recipients list with predetermined email ID.I would need help in doing so . Experts Please Help.

Hi,
First check if there are any user exits...bapis..if is a standard report..where you can "append" the mail address that you want.
then check out this link -> Link: [Function Module used to get email address from distribution lists;
Tks

Similar Messages

  • Populate submit button target email with field?

    Hi, this may have already been asked. Is it possible to populate a submit button email target using the contents of another field / text box?
    Say I have emailfield1 and submitbutton1. Is it possible to have submitbutton1 target = emailfield1? I'd like a way of generating a reply to whichever email address is keyed in emailfield1.
    Thanks

    Acrobat can't send its own emails so it has to call an email client.
    Unfortunately this is quite flaky and doesn't always work. It seems to work most well with Outlook but I've found it can depend on the operating system - on my Win7 64bit system it doesn't work. And I could never get it to work with Thunderbird.
    Also, it doesn't work if someone is using web-based email.

  • Recipients of my email have been getting a bunch of scrambled code, letters and symbols, inserted into the body of my email - preceded by "span.IP". How to fix?

    Some recipients of my emails have been getting a bunch of code, letters and symbols, inserted into the email preceded by "span.IP". What is causing this and how can I fix it? Also (may be related) when i start up Thunderbird, I get the following error message:
    Secure connection failed
    live.mozillamessaging.com uses an invalid security certificate. The certificate is not trusted because no issuer chain was provided. (Error code: sec_error_unknown_issuer)
    This could be a problem with the server's configuration, or it could be someone trying to impersonate the server.
    If you have connected to this server successfully in the past, the error may be temporary, and you can try again later.
    Or you can add an exception…

    Browser Safeguard apparently attempts to intercept your secure connection to the server, so just uninstall it. Reboot your computer, and run a malware check.
    It's also possible that it issued certificates for secure sites you visit. Those self signed certs could then be used by IE, so you should get rid of them as well.
    In IE under Internet Options - Content tab click on Certificates. It opens to the Personal tab. Look for certificates issued by DO_NOT_TRUST_FiddlerRoot. Those are the ones created by Browser Safeguard.
    Both, Thunderbird and Firefox use their own certificate store independent from the Windows certificate store. So they should not be affected by those certs.
    For the future watch out for additional software being sneaked in when installing a program.

  • What is the maximum number of recipients can I email in one email?

    Using 10.9.3 what is the maximum number of recipients can I email in one email from a MacBook Pro?

    Sending limit for a single email is 100 recipients.
    Sending limit for a 24 hour period is 200 emails.
    Maximum recipients for a 24 hour period is 1,000.
    Attachment size limit for outbound or inbound emails is 20mb.
    If You Exceed Limitations – You’ll see an error message and your account will not function for 24 hours.

  • Create mail group from recipients on specific email

    I would like to be able to create a mail group from the recipients of an email, avoiding having to add each individually to a group.  Some are in my address book, others are not.  Is there a feature or another way round this?
    Thanks.

    btw
    question has been asked before, but for a older OS.  Apparently re-write of Mail makes the previously offered solution no longer valid.
    See http://www.andreasamann.com/MacOSX/Mail_Scripts

  • How can I list all recipients of an email I have sent?

    Hi there,
    I sent an email to 16 people today using Mac Mail v 7.1 (1827) - 1 group of 15 people and another person. I later found out that the single email may have been wrong and I wanted to check it... i.e. did I put gmail.com instead of hotmail.com?
    When I clicked on the message in the sent folder, the email came up with the display showing the email address I used to send it (on the top left) and on the top right, the timestamp of when it was sent and just below that, a link with "Hide details".
    Clicking on Hide Details DOESN'T actually hide the information !!! it expands with a list of email addresses which in this case was 4 email addresses and a link with 12 more people. Clicking on "12 more" people reverts back to my email address and timestamp.
    So in effect, I can't display the email addresses I sent to and the logic of "Hide Details" seems to be working in reverse.
    The only way I can check to see to whom I sent the email, is to reply to all recipients, view the TO/CC/BCC fields, and then cancel. But surely, clicking on the "12 more" or however more number of people, should display all the email addresses or am I missing something really obvious?
    Thanks,
    Maz

    Hi Wayne,
    Thanks for your reply.
    I tried your suggestion and it still didn't work. I've just done a test email and I've attached the 2 images.
    The first image lists a few of the email recipients and N people more and when I click on "N more", I get the second image.
    So it's either one or the other I get and no full list of email recipients.
    Thanks,
    Maz

  • Is there a limit to number of recipients for an email?

    I need to send the same email to about 250 people.
    Is there a limit to the number of recipients Mail can handle in the BCC field?
    At the moment I can get all the address's from a spreadsheet as Comma separated text.
    Will this pasted into the BCC field work?
    Lion 10.7.2     Mail 5.1
    Thanks in advance
    D

    You will need to check with your ISP; they may have limitations - mine does in order to cut down on spamming.
    Once you find out if/what that limit is, you can simply type and email once, copy the content, enter the addresses, and send out 5 - 10 - or whatever number of emails successively until you've sent it to all 250 people.
    I would create a group or at least have all the names/addresses in the Addressbook; that way, you can start typing the first name and Mail will automatically add the email address for that name. And yes, it is good to use BCC for that - send it to yourself and BCC everyone else.

  • Script to extract names and email addresses of all recipients of an email

    Hi,
    I have found some scripts which extract email addresses from the content of messages in Mail, but I am looking for something rather different, and wonder if such a script exists, or if someone can help me build one.  I would like to create a tab delimited text file of the first name, last name and email address of all recipients of a given message in Mail.  Most email addresses will be in the format John Doe <[email protected]>.
    Thanks,
    Nick

    Hi,
    nick_harambee wrote:
    I have one outstanding issue, which wasn't included in the original question.  Sometimes email addresses are included in the Name of the recipient, i.e. instead of 'John Doe', it reads 'John Doe ([email protected])'.  Could you script be adapted to delete any block of text (i.e. space delimited) that includes the @ symbol, so that 'John Doe ([email protected])' would return:
    John<tab>Doe<tab>[email protected]
    Use this handler:
    on splitName(t)
        if "@" is in t then -- to remove the address after the name
            set n to -3
        else
            set n to -2 -- normal name
        end if
        set tid to text item delimiters
        set text item delimiters to space
        set l to text items of t
        if (count l) = 1 then -- no space 
            set r to tab & t & tab -- last name only 
        else
            tell l to set r to "" & (items 1 thru n) & tab & (item (n + 1)) & tab
        end if
        set text item delimiters to tid
        return r
    end splitName

  • Recipients not receiving emails even though internet provider shows post in it's esnd folder. Started happening with no changes in configuratuin. Thanks

    Sending emails from my laptop using Thunderbird I get the usual "connecting to...., sending to...,message sent" But recipients do not receive post even though my internet provider's sent folder contains the posts. Cox is my email provider and I can send posts from their WebMail site.
    There were no changes in configuration.
    I should note that I was using a "free" WiFi in Nicaragua.
    Also, I receive emails just fine.
    Cox says it's my email client but I don't see how it could be you guys isince Cox had had to receive the posts in order to put them in the sent folder.
    Thanks
    [email protected]

    have you tried mail to multiple domains or all say cox.net. I have a feeling your email might have got a bad reputation in deepest darkest Africa.

  • What is the max number of recipients in an email list

    Mail is rejecting my email because of too many recipients. What is the limit??

    http://support.apple.com/kb/ht4863

  • Recipients not receiving email

    I sent several emails from my new mac book and the recipients have not received them. It says that my server has timed out on some attempts to send emails. on other attempts, nothing is said, they just don't get them. Any idea on what could be happening? Why aren't people getting some of my emails?

    Go to these documents:
    http://docs.info.apple.com/article.html?artnum=166745
    http://docs.info.apple.com/article.html?artnum=75124
    Make sure everything is in order and that your . mac smtp server is correct. It could just be that the server was down when you sent the emails.
    Also to double check things, use the web version of your .mac account and see what happens there. Send yourself an email to test. That will tell you if it's the .mac account or your settings in mail.
    By your handle I am assuming you are talking about a .mac account
    Intel Dual Mac-Mini, G4 Powerbook, G4-933   Mac OS X (10.4.6)  

  • Missing Attachments and recipients on received email

    I received an email on which I can't see the email, nor the recipients.
    I've checked the RAW Source and all the headers are missings, and some of the multiparts. It seems the mail has been truncated (the first part is missing, including headers and two attachs.
    The problem, is that when I see the same email with my iphone, all is ok. recipients and email.
    My mail accoun is an imap account from my company. (not gmail).
    Any ideas?
    It seem like a HUGE issue, can't believe they let this kind on issue on Apple.

    First of all, im happy i was able to help in someway. u should tick this issue resolved since u dont have any more problems
    there are many factors as to why this could have happened. Maybe there was an interruption with your internet so the mail was not downloaded properly and became corrupted,Mail app issue,etc etc.
    We can certainly look at the logs to identify which caused it but honestly what's important now is u have everything up and running again

  • Problems showing all recipients in received email

    Found the problem described and unsolved in a archived post, still have the same problem now:
    When a received email contains multiple recipients (say 15), then there are only a few shown, followed by a "x more..." link. Clicking on that link has no effect. Currently the only way for me to see all recipients is to show the raw source of the message.
    Does anybody also have that problem or know a solution? A tricky thing to search for.
    Thanks!

    Hi Joel
    Ooops - I had to edit this message...
    Welcome to the discussions!
    Here it works perfectly on more than 20 different systems.
    Do you have other problems with your mouse?
    --greg
    Message was edited by: madconqueror

  • Editing Previous Recipients and /importing/ emails

    anyone know if i can /edit/ the addresses shown in Previous Recipients and/or how i would import /new/ email addresses to Previous Recipients?
    i am finding this a bit hard to figure out. i can apparently sync Previous Recipients to my Address Book but there is there a way to sync Address Book to Previous Recipients so that my AB contacts show up in my Mac Mail and these can autocomplete in Mail?
    i mean, i have a database of email addresses and i would like to get these into Mac Mail...and then i want to sync all this up with AB in Lion...
    THANKS

    anyone know if i can /edit/ the addresses shown in Previous Recipients and/or how i would import /new/ email addresses to Previous Recipients?
    i am finding this a bit hard to figure out. i can apparently sync Previous Recipients to my Address Book but there is there a way to sync Address Book to Previous Recipients so that my AB contacts show up in my Mac Mail and these can autocomplete in Mail?
    i mean, i have a database of email addresses and i would like to get these into Mac Mail...and then i want to sync all this up with AB in Lion...
    THANKS

  • Attachments unreadable to recipients of forwarded emails

    When forwarding email with attached pictures, the recipient does not receive attachments.

    It is my experience that you cannot just click on "Reply", but you MUST click on "Forward". The recipients then get the attached file.
    What I would like to know is how to prevent the contents of, say an attached .pdf file, from ALSO being inserted into the body of the email.  Sometimes, I've known how to do or not do this. But now, I need for someone to tell us how to do the insertion or not do the insertion. Does anyone know?
    lwhamilton

Maybe you are looking for

  • My iphone will not come on unless plugged into the wall charger

    my iphone 4 went completely dead since then i tried chargeing it with a charger bought from sams wholesale which was an aftermarket charger which did not work i then plugged it into the factory wall charger it comes on but says searching for signle i

  • What can be done with Bonjour?

    Hello As is clear in the title I did not understand what are the possibilities of Bonjour, and what is the need of it? Is there someone who can shorten it for me? Thanks in advance.

  • Capture right mouse click in image

    I would like to capture a right mouse click while pointing into am image window. So far I've come only to the possibilty to capture events that originate somehow with the left mouse click. Or Are specific to the front panel of the currently active VI

  • Ejecting Disc 2 following Instal of PS10

    I have just loaded Adobe Photoshop Elements 10 and Premiere Elements 10; and the DVD driver cannot be opended. An error message has resulted: EjectingDVD RW Drive (F:) PEPE10 Win 64Bit.  Can anyone help with this problem  (For Info I loaded Disc 2, i

  • Formatting Font in RichTextbox (C#)

    I'm having this line: richTextBox1.Text = richTextBox1.Text + "Patient's Name : " + patient.Name + "\n"; Which fetches the name from my xml file. I want to Color & Bold the name part only in the richtextbox. But I'm not able to do that in my richtext