Distibution list

Hi Experts,
we have one program which have the E-mail functionality,it sends the report to that particular mail id which we mentioned there,but i have quetion like Is This possible to Give Distbution list instead of single mail id,if yes how can i do that,can you please help me on this.and is required any modification in program..or ..any setting in tr.SCOT.waiting for your reply..
Thanks and Regards
Durga.K

Hi,
check this link
http://www.sapdev.co.uk/reporting/email/attach_xls.htm
Regards

Similar Messages

  • When sending an email I used to be able to add a distribution list from my contacts, I now have to add each email address individually, does anyone know how I can add the whole list?

    When sending an email I used to be able to click on a distribution list in my contacts and it would add all the email addresses, I now have to add each email address individually and this takes a lot of time.  Could someone tell me how I can add a distibution list/group to my emails?

    Barney,
    I have four groups.
    I just typed the name of one of those groups in the To field on the iPhone's email, and received:
    Invalid Address
    "<group name>" does not appear to be a valid email address.  Do you want to send it anyway?
    I clicked continue and it remains in my outbox.
    Help is appreciated.
    Thanks,
    Michael

  • Confirmation in sent mail using BCS for distribution lists

    Hello,
    I have found that we can set the following flags to get an confirmatrion.
    read = 'X'.
    DELIVER = 'X'.
    using cl_send_request_bcs=>create_recipient_from_soos1
    This can done for an single user (recipient)
    But how is it possible to set this flags to a distibution list?
    Thanks

    Hi.
    In outlook try these settings :
    1.From the Oulook Tools menu, select Options (if you don't see the Options menu item, you may ahve to expand the menu window with that little double arrow that points downward).
    2. In the next screen for Options, click on the Email Options button
    3.In the next screen Email Options, click on the Tracking Options button.
    4. In the Tracking Options screen, you have a checkmark for Delivery receipt.  Click this and all your emails you send out will give you an alert when your email server delivers them.
    Moreover check in SOST, the traffic signal should be green indicating the mail was send successfully to outlook.
    Thanks
    Papiya

  • URGENT: Distribution list - feature M0001

    Hi
    Is it possible to use M001 feature without creating a distribution list (in recruitment module).
    if yes, please share the procedure.
    thanks in advance
    Regards
    Minal

    Hi
    The functionality expected is that whenever applicant's details are received, an auto generated mail should be sent. The screen already has a field in which email id of the applicant can be updated. Now the problem is how to read this email id. Currently the user has to enter the email id twice. Once on the screen and the other time to update the distibution list.
    Is there any by which this redundancy can be avoided?
    Regards
    Minal

  • Distribution list for messaging

    Will IOS6 bring the capability to create distibution lists for messaging?

    What I am referring to is using several individual contacts and putting them into on group...let's say friends.  When I select the Friends group all the contacts listed in the group the message will go to.  Similiar to Outlook distribution list for email.

  • SharePoint 2013 document library workflow to send emails when document changes

    Hi All,
    Need a email alerts to setup when documents get change in a SharePoint 2013 document library.  Mail should go to all the members in a SharePoint Security group.
    Many Thanks 
    sudesh withanage

    Out of the box , You cannot set alerts for SharePoint group. You may try -
    1- Create a group in active directory, add users to the ADgroup. Add that ADgroup in Sharepoint and configure alert.
    2- You can set up a new user and change their email to that of a distribution list, and then assign the alerts to this user.
    3- You can create a custom workflow/action or event receiver that will send an email to a distibution list or programmatically traverse the SPGroup's members and send them the notification email, whenever an item is added or changed.
    4- You can try this , this was for WSS3 -
    http://advancedalert.codeplex.com/
    5- you can to use SharePoint Designer and create a workflow that send an email to SharePoint group.
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • How to trigger a mail once BG job finished.

    Hi,
    Could anyone please let me know how to trigger a mail once Background job finished. I let you give one scenario where exactly I require this concept. Say, I execute t.code MB52 with particular variants in background to find stuck qty(s) of material(s) in given site(s).Now I want that system will trigger a mail to concern team once job finished.
    Thanks,
    AK

    You can try using workflow transaction SBWP.
    you need to create a distibution list in the above transaction and add the requested mail ids to it.
    then when you create a jon using transaction SM37 you have the option SPOOL LIST RECIPIENT where you can add the created distibution list
    so when ever the job has run sucessfully then a mail is sent to all the mail id's in the list.
    hope this helps.
    cheers
    sundeep

  • Signle task send to mutiple sales rep by e-mail

    Guru,
    I am creating single task and I want to send same task to multiple sales rep by e-mail. I created distibution list and also task, after that I sent e-mail to all sales rep. What happen is only person responsible recived e-mail in the calendar no one else recived task in the mail also not even mail.
    What is the reason for this thing happen? Is there any way I can send task to multiple sales rep/employee ?
    Thanks.

    Hi
    In our system we are sending the same invoice by e-mail to two partners. In the customer master we have maintained one e-mail adress on the adress screen and we have maintained another e-mail adress in a contact person. The contact person is assigned to partner role Z0.
    In the access sequence for the invoice print we have the same key combination twice, the first one without the exclusive flag. This means we can create master data for the same customer twice using partner role RE and Z0 and the invoice is then send to the two adresses.
    /Torben

  • Re: search help for distribution field name

    hi to all,
    i had written like this
    select-options: s_manif for sood-objnam no intervals.i want a search help for this so that i want to select a distibution list names.
    how i can go head.
    please help me in this regard
    thanks
    sun
    Message was edited by: sun deep

    Hi,
    Get the distribution list names(OBJNAM) from table SOOD with OBJTP = 'DLI' and then call your own F4 help based on selected values.
    code :
    select-options: s_OBJNAM for sood-OBJNAM no intervals.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_OBJNAM-low.
    DATA: BEGIN OF li_OBJNAM OCCURS 0,
             OBJNAM like sood-OBJNAM,
            END OF li_OBJNAM.
      DATA: li_ret_tab LIKE ddshretval OCCURS 0 WITH HEADER LINE.
      DATA: lt_dynpfields LIKE dynpread OCCURS 0 WITH HEADER LINE.
    select objnam from sood
           into table li_OBJNAM
                  where objtp = 'DLI'.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'OBJNAM'
          dynpnr          = sy-dynnr
          dynpprog        = sy-repid
          dynprofield     = text-044
          value_org       = 'S'
        TABLES
          value_tab       = li_OBJNAM
          return_tab      = li_ret_tab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Regards
    Appana

  • Groupwise gate to exchange 7 sp2

    I have Groupwise 7 sp3, and Exchange 2003 sp2 with the 7 sp2 groupwise to exchange gateway. My Groupwise emails, and distribution lists show up in exchange. However, when my exchange users send to any distibution list that was created in groupwise it sends to the right people on the list but it shows all of their names in the to: field as the same persons name.
    Has anyone see this and fixed it or have any suggestions?
    Thanks

    Originally Posted by Brian
    I have Groupwise 7 sp3, and Exchange 2003 sp2 with the 7 sp2 groupwise to exchange gateway. My Groupwise emails, and distribution lists show up in exchange. However, when my exchange users send to any distibution list that was created in groupwise it sends to the right people on the list but it shows all of their names in the to: field as the same persons name.
    Has anyone see this and fixed it or have any suggestions?
    Thanks
    We had an SR open with Novell on this issue. It's a known issue for them; Defect Number: 362353
    Their response was that it is to be fixed in a future release.
    Ryan

  • Training and Event Management - report on list of cancelled courses

    Hi All,
    Is there any standard report available to get the list of cancelled courses (be it business event grp , type or business event) Would appreciate your inputs on this.
    Kind regards
    Sathya

    S_AHR_61016216 - Cancellations per Attendee , i think there is no standard report for cencelation of business events, type and group.
    for cancellations per attendee reports is available in the system.
    good luck
    Devi

  • Printing list view in ical

    I use mail and ical for everything now. Everything is fine except When I want to print the "list view" which shows my “to dos”. It displays the URL the “do to” is attached to in mail. I use notes often in mail and enter to dos in the notes so they will have URL links. The link only becomes a nuisance when I want to print, otherwise it’s very useful.
    Why would the long URL paths display when in print view???!!!!! It doesn’t make any sense.
    Is there anything I can do?
    Thank you

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Weekly "List View" in iCal

    Hello - my family has recently converted to Mac, and my wife and I have been long-time Outlook users in our workplaces...
    Trying to help my wife get her calendar data to iCal - one of the few things that we miss from Outlook is the "Week" view, which shows like Outlook's (7-Day view), which has a large grid of the 7 days in the current week, and all events displayed in a text-based "list" format, and clearly displaying numerical start and end times, rather than the graphical "block" method of iCal's default Week view.
    The Month view on iCal comes close, but it is rather cramped when you want a closer-in look, and also omits end time.
    Any suggestions?
    Thanks!

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Event List view in iCal?

    I would love to have an Event List view in iCal like I do on the calendar on my iPhone. Is there such a thing? The particular reason for wanting it (this time) is that one of the calendars in the ON MY MAC list has a number in a oval to the right.
    I believe this is trying to tell me that there is a new event that I need to do something about. Problem is, I don't know where to find it.

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • List view in iCal on my iPod touch is corrupted

    The 'list view' seems to be all wonky in Calendar on my iPod touch.
    The dates for a given day that's displayed don't make sense:
    i.e. Sunday Oct. 27 2030 followed by Saturday July 14 2001 followed by Tuesday Jan. 16 2001 are listed in consecutive order instead of today, tomorrow and next day (with correct dates).
    Also, the 'events' given for each day listed don't make sense and are often duplicated.
    The 'day' and 'month' views however, seem to be ok and not corrupted. The 'list' field in the month view also seems fine ?
    Has anybody experienced this ? Very frustrating, since I like the list view.
    I make most of my entries/changes to iCal on our main desktop (iMac 24") then sync. to my iPod. The list view seems ok on the desktop.
    Any help greatly appreciated.
    ps. not sure if the problem corresponded with an upgrade of the Ipod software to OS 3.1 from 2.x....

    See this previous discussion:
    FIX for iPod Touch Home Button: Apple Support Communities

Maybe you are looking for