E-mail group assinged to more than one person

Hi
i have requirement where they need to chnage the name of the e-mail group for Service desk and Escalation reporting in solman
The problem is i don't know where to change it
The scenario is that, there's an email address namedsolman at company-x dot com , in that email-address there are few individual who receives email under that group email for example User-1, User-2 and User-1 are receiving an email through that e-mail group so now the group name have to be changed from solman at company-x dot com to company-x at company-x dot com
wher do it chnage  in solution manager
NB  this is for both service desk and Escalation reporting
Tx in advance
R-K

Hi,
I am not sure about the escalation process but go to PPOMA_CRM transaction and in the organization structure select the 1st level or other required then replace the email address in the below part of the same screen. then save the entries and test. This is part of the support Team determination process in service desk.
Thanks,
Ajay.

Similar Messages

  • Outlook (ex Hotmail) on iPhone refuses to send e-mail to more than one person

    Hi,
    I have two questions today...
    When I try to send an e-mail to more than one person from my @outlook.com address on my iPhone it fails everytime and a message pops up that it could not connect to the server. Sending e-mails to one person at a time works perfectly. I think this is a Microsoft issue as I had to verify that I was "human" before I could send a test e-mail to more than one person while logged into the Outlook website on my PC. I never had problems like this on my old Gmail and Ymail accounts. Any ideas how to fix this?
    Alternatively, I can use my @icloud.com e-mail address, but this leads to my second question. Apple states that I cannot use my iCloud e-mail address as my Apple ID. I do however not want to keep two mailboxes. Can any e-mails Apple send me (eg. receipts for purchases, etc) be sent to my iCloud address? I'll can then just keep the other e-mail address just for the Apple ID but do not have to monitor it. It this can be done please advise where I can change this.
    Any advice will be greatly appreciated.

    Some style rules that Firefox handles well on the screen can cause this problem. Many email sites have a print button which simplifies the message format and removes navigation elements, etc., and Firefox generally handles print-formatted pages better. If your email site doesn't have print-formatted pages or those do not print, a "hack" is to select the text you want to print and then choose the Selection option in the print dialog.
    To hide email addresses from recipients, you need to place them in the BCC field. What do you put in the TO field in that case? You can use your own address.

  • In Apple Mail, I cannot add more than one address to the "To" line

    In Apple Mail, I cannot add more than one address to the "To" line by typing just the initial

    HHow are you. Trying to add the second address? Normal procedure after the first address is to type a comma, then start typing the name for the second address.

  • I am using iPhoto 11 mail and cannot add more than one recipient in the 'to' line.  When I put a comma in, the recipient's address is deleted.  If I use ' ' with more than one recipient the save grays out.  Any thoughts?

    am using iPhoto 11 mail and cannot add more than one recipient in the 'to' line.  When I put a comma in, the recipient's address is deleted.  If I use '< >' with more than one recipient the save grays out.  Any thoughts?

    I figured it out.  I needed to fix some errors in my account information.  It works fine now.

  • Applescript: Sending a mail to more than one person

    I have a script tp send a message that the server has started in the morning to people.
    How can I get it to send it to more than one person?
    I use
    *set mailto_addr to [email protected]*
    how do I ad people to it?
    Thanks

    I saw that but do not know how to incorporate it.
    Either use a repeat loop:
      set recipient_list to {{name:"a", address:"[email protected]"}, {name:"b", address:"[email protected]"}, {name:"c", address:"[email protected]"}}
      set newMessage to (make new outgoing message with properties {subject:"The Subject", content:"your message here", visible:true})
      tell newMessage
        repeat with eachRecipient in recipient_list
          make new recipient at end of to recipients with properties {name:eachRecipient's name, address:eachRecipient's address}
        end repeat
      end tell
    Or add them individually:
      set newMessage to (make new outgoing message with properties {subject:"The Subject", content:"your message here", visible:true})
      tell newMessage
        make new recipient at end of to recipients with properties {name:"a", address:"[email protected]"}
        make new recipient at end of to recipients with properties {name:"b", address:"[email protected]"}
        make new recipient at end of to recipients with properties {name:"c", address:"[email protected]"}
      end tell

  • How to emai more than one person

    hi, can someone please post some code on how to send more than one person the same email, i tried what's below but get an error:
    //  Send message out as email via JavaMail
    //  Emails for group 1
    String namesOne[] = {"[email protected], [email protected]"};
    //  Vector to store names
    Vector namesInGroup = new Vector();
    //  Add names to vector
    for(int i=0; i<namesOne.length; i++) {
         namesInGroup.add(namesOne);
    Properties props = new Properties();
    props.put("mail.smtp.host", "???");
    Session s = Session.getInstance(props);
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new InternetAddress("[email protected]");
    message.setFrom(from);
    InternetAddress[] to = new InternetAddress[namesInGroup.size()];
    String emailOfPerson;
    for(int i=0; i<namesInGroup.size(); i++) {
         emailOfPerson = (String)namesInGroup.elementAt(i);
         to[i] = new InternetAddress(emailOfPerson);
    message.setRecipients(Message.RecipientType.CC, to);
    message.setSubject(subjectOfMessage);
    String text = mailText.toString();
    MimeMultipart mm = new MimeMultipart();
    MimeBodyPart mbp = new MimeBodyPart();
    mbp.setContent(text,"text/html");
    mm.addBodyPart(mbp);
    message.setContent(mm);
    Transport.send(message);
    // End of JavaMail code
    the host is fine, ???, just didn't want to write it there, i've been able to email one person but can't get this to work, i get the following error:
    [05/Sep/2002:15:27:03] failure (10730): Internal error: exception thrown from the servlet service function (uri=/WriteAndEmail.jsp): javax.servlet.ServletException: Illegal address, stack: javax.servlet.ServletException: Illegal address
    at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:384)
    at WriteAndEmailjsp._jspService(_WriteAndEmail_jsp.java:291)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:826)
    at com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunner.java:533)
    , root cause: javax.mail.internet.AddressException: Illegal address in string ``[email protected], [email protected]''
    at javax.mail.internet.InternetAddress.<init>(InternetAddress.java:66)
    at WriteAndEmailjsp._jspService(_WriteAndEmail_jsp.java:243)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:826)
    at com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunner.java:533)
    both emails are valid.
    Thank you.

    soni29 wrote:
    hi, can someone please post some code on how to send
    more than one person the same email, i tried what's
    below but get an error:
    //  Send message out as email via JavaMail
    //  Emails for group 1
    String namesOne[] = {"[email protected],
    [email protected]"};
    //  Vector to store names
    Vector namesInGroup = new Vector();
    //  Add names to vector
    for(int i=0; i<namesOne.length; i++) {
         namesInGroup.addElement(namesOne);
    Properties props = new Properties();
    props.put("mail.smtp.host", "???");
    Session s = Session.getInstance(props);
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new
    InternetAddress("[email protected]");
    message.setFrom(from);
    InternetAddress[] to = new
    InternetAddress[namesInGroup.size()];
    String emailOfPerson;
    for(int i=0; i<namesInGroup.size(); i++) {
         emailOfPerson = (String)namesInGroup.elementAt(i);
         to[i] = new InternetAddress(emailOfPerson);
    message.setRecipients(Message.RecipientType.CC, to);
    message.setSubject(subjectOfMessage);
    String text = mailText.toString();
    MimeMultipart mm = new MimeMultipart();
    MimeBodyPart mbp = new MimeBodyPart();
    mbp.setContent(text,"text/html");
    mm.addBodyPart(mbp);
    message.setContent(mm);
    Transport.send(message);
    // End of JavaMail code
    the host is fine, ???, just didn't want to write it
    there, i've been able to email one person but can't
    get this to work, i get the following error:
    [05/Sep/2002:15:27:03] failure (10730): Internal
    error: exception thrown from the servlet service
    function (uri=/WriteAndEmail.jsp):
    javax.servlet.ServletException: Illegal address,
    stack: javax.servlet.ServletException: Illegal
    address
    at
    org.apache.jasper.runtime.PageContextImpl.handlePageExc
    ption(PageContextImpl.java:384)
    at
    WriteAndEmailjsp._jspService(_WriteAndEmail_jsp.java:
    91)
    at
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBa
    e.java:126)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java
    826)
    at
    com.netscape.server.http.servlet.NSServletRunner.Servic
    (NSServletRunner.java:533)
    , root cause: javax.mail.internet.AddressException:
    Illegal address in string ``[email protected],
    [email protected]''
    at
    javax.mail.internet.InternetAddress.<init>(InternetAddr
    ss.java:66)
    at
    WriteAndEmailjsp._jspService(_WriteAndEmail_jsp.java:
    43)
    at
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBa
    e.java:126)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java
    826)
    at
    com.netscape.server.http.servlet.NSServletRunner.Servic
    (NSServletRunner.java:533)
    both emails are valid.
    Thank you.
    try using addElement()method of the vector.
    or get all the address as one string represented by _to
    where _to = "[email protected], [email protected]";
         //set to addresss
    InternetAddress to = new InternetAddress() ;
    InternetAddress [] toadd = to.parse(_to);
    msg.setRecipients(Message.RecipientType.CC,toadd);
    i hope this wouldhelp you
    thanks and regards,
    Suraj Berwal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • 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.

  • Text more than one person at one time????

    I was wondering if you can send a text out to more than one person at a time. I can't seem to add more than one person to a text like you can on e-mails. If you can't this feature should be updated. I'm sick of typing things over and over to send to other people. Any thoughts???

    Dubes
    Sorry, that's not available yet
    Head off to;
    http://www.apple.com/feedback/iphone.html
    and make a request
    *Thanks for the correction b_behringer*

  • IT 0105 subtype 0001. Assign one System user to more than one person?

    Hello, Gurus!
    We are maitaining Hr master data (infotype 0105 - Communication, subtype 0001 - System User name). We have two person: person A and person B. Person A have communication with system user C. When we communicate person B with same system user C, we gettin error:
    "ID/number already used for person A".
    The time constraint is set to 3 (Record may include gaps, can exist more than once"
    Is it possible to assign one system user more than one person?
    This condition is checked by FM CHECK_USRID. We assume, what the result of this checking can be changed from "Error" to "Alert", if we will change one record in table T77S0:
    Current value:
    GRPID=MAIL
    SEMID=SAPSY
    GSVAL=0001
    Table record after modification:
    GRPID=MAIL
    SEMID=SAPSY
    GSVAL=0002 (or any digital value, which is iffer from "0001"
    Should we expect negative consequences of similar modification?
    Please, advice.

    Thanks for explanation.
    But there is a little moment, that I can not understand ((
    We check PAI module of CHECK_USRID (include MP010530, screen 2000) and find folowing fragment of ABAP code:
      CALL FUNCTION 'RH_GET_HR_USER_SUBTY'                       "YRAK040203
           EXPORTING                                                     "YRAK040203
                 mandt                 = sy-mandt                     "YRAK040203
            IMPORTING                                                     "YRAK040203
                 hr_subty              = hr_subty                         "YRAK040203
            EXCEPTIONS                                                    "YRAK040203
               SUBTYPE_NOT_AVAILABLE = 1                                "YRAK040203
                 OTHERS                = 0.                               "YRAK040203
        IF p0105-usrty = hr_subty.                                        "YRAK040203
        MESSAGE E900 WITH  PA0105-PERNR.                           "YRAk028906
          MESSAGE e900 WITH object_found double.                     "YRABEWERBER
        ELSE.                                                                  "YRAK040203
        message W900 with pa0105-pernr.                                 "YRAK040203
          MESSAGE w900 WITH object_found double.                     "YRABEWERBER
        ENDIF.                                                                 "YRAK040203
    where p0105-usrty=0001 and hr_subty is equivalent field GSVAL=0001 in table T77S0. In other terms, when we are
    maitain subtype 0001, the first condition (marked bold) is always executed.
    For what the "else" condition is used, if it never be executed? If we will change value GSVAL from 0001 to 0002, theoretically, we will get "warning" instead "error", because p0105-usrty = hr_subty=false and code MESSAGE w900 WITH object_found double will be executed.
    Any ideas?
    Regards.

  • Addressing to more than one person

    How can I address an email to more than one person?
    feel frustrated to have to ask such a dummm question!

    I'm assuming that you are using Mail.app and not talking about using .mac mail or other mailserver via a web browser like Safari. If you are using the Mail client program, continue on, otherwise, never mind.
    If you don't already have an address book icon in your new message composition window (with that window being the active window (i.e., you clicked your mouse in it)), then...
    ...on the Menubar, go under View and select Customize Toolbar....
    Drag the AddressBook icon into the toolbar region of your new message composition window.
    This will provide you with the shortcut tool that I think you are seeking, to view and select names/email addresses stored in your local Address Book, from within the Mail application itself.
    You may need to repeat this process for the Reply, Reply All, Forward, and Redirect message composition windows, as well.
    (if this solves your problem, or is actually helpful towards arriving at a solution to your problem, please consider marking this reply as "helpful" or "solved," in addition to, if applicable, marking this question as "answered")

  • Texting more than one person

    hi
    if i text more than one person when one of them replies there is no way of telling who it is. if i reply to one of their replies does that go to everyone or just the person who replied?
    this is scarily scary.
    tommy b

    Not sure of your issue.
    When I text multiple people, when a person replies it comes to their own conversation thread with their name (or number if not in contacts EXACTLY the same as the number it says txt you back).
    Any reply to a txt that only has one person listed (by name or number) will only go to that one person. You should never get reply backs in the same thread as the group send you did.

  • Can more than one person change a published calendar

    Say you want to publish a calendar for a group and want to give access to everyone to make changes but also want those updates to be reflected on everyones ical within the group, is this possible?

    Greetings and welcome.
    At present, no, you can't have more than one person edit a published calendar. But with the release of OS X 10.5 you can, if you get the server version. At least that's what the latest word is.

  • HT204380 can you facetime more than one person ata time

    Can u facetime more than one person at a time

    sandlapper17 wrote:
    Can u facetime more than one person at a time
    No.
    Ask your friends to group together physically or use 2 Apple devices and FaceTime with them.

  • HT201317 can more than one person post photos to a shared photo stream?

    can more than one person post photos to a shared photo stream?

    No.  At the present time, only the person creating the shared photo stream can add or delete photos.

  • HT201077 Can more than one person upload photos to the shared Photo Stream?

    Is there any way that more than one person can stream their photo on the same Photo Stream Album?

    That's just the way it is right now.  But if you would like to see this changed you can tell Apple here: http://www.apple.com/feedback/icloud.html.

Maybe you are looking for

  • Memory mixing

    I have a few sticks of PC2700 memoery, totalling about 1gb. I already have 512 of PC3200 in the motherboard, what will increase performance? Leaving the 512m and  not installing the other stuff (to take to 1.5GB), or have more memory running slower -

  • Error while executing Secure SOAP web service from Web Service Navigator

    Hi All, I have created a web service for a stateless session bean choosing option "Secure SOAP". When I am testing it through web service navigator, it is showing following error:- Security: Authentication expected but missing And in response text it

  • How do i upgrade to version 10.3?

    Hi, I have not upgraded for a long time - im still on OS X v10.04 on my MAC G4. So how do i upgrade to version 10.3 now? I have looked in many places and cant find how to do it. Thanks!

  • HP ENVY 4500 fails to print lower half of last page of series

    When printing a document over several pages my ENVY 4500 fails to print the lower half of the last page to be printed. Because pages are printed in reverse numerical order, this is in fact page 1 of the document.

  • 4K Rendering, DPX Files, and Brightness Control

    First off- when will Premiere Pro  CC allow for 4K rendering? This is a new standard and currently the program won't support exporting to 4K compressed files. The reason I want this is because I use 4K and want to keep it in its native format, and al