Send Email from QUality Notification

Can we send an email to internal/ external address from Quality Notification without any development? It should be SAP std (out of box) functionality.
How?
Reply highly appreciated.

Yes there is a Standard functionality available in SAP use the tcode scot and confifure the SMTP.
Prerequisites
The mail server in question must be SMTP-compatible.
Settings for the Profile Parameters (Transaction RZ10)
You have to adjust the profile of the SAP Web Application Server if you want to use the SMTP function. The SAPconnect send job can only be scheduled for servers on which SMTP has been activated. For this reason, you must activate SMTP for all of the SAP systemu2019s application servers.
icm/server_port_<*> = PROT=SMTP,PORT=<port>
is/SMTP/virt_host_<*> = <host>:<port>,<port>,...;
User Maintenance (Transaction SU01)
u2022        Service user
You have to create a service user for processing incoming mails in every SAP system client in which you want to receive mails (or status notifications). Call transaction SU01 to create a user with type Service and assign the profile S_A.SCON to this user.
u2022        User addresses
Every user that is to receive e-mails in an SAP system requires an Internet mail address. This is also used as a sender address. Enter the Internet mail address for a user in transaction SU01, under E-Mail on the tab page Address.
Assigning the Client (Transaction SICF)
Every SAP system client that is to receive and process incoming mails (or status notifications) must have an SMTP server. One SMTP server (SAPconnect) has already been created in transaction SICF and is delivered with every SAP system. Use this to create the first client and then create another SMTP server for each additional client. Configure the following settings on the SMTP servers:
u2022        Host data
Enter the sequence number of a parameter is/SMTP/virt_host_<*> from the profile. If you have only created one client and therefore have not specified this parameter type, enter 0.
u2022        Service data
Enter the client to which the mails received through the virtual mail host are to be forwarded, and then enter the logon data of the system user that you created for the incoming mails.
u2022        Handler list
Enter CL_SMTP_EXT_SAPCONNECT at position 1.
SAPconnect Administration (Transaction SCOT)
You have to configure SAPconnect settings for every client that is used for send processes.
u2022        Default Domain
Under Settings  Default Domain, define the domain of the SAP system client. This allows for the following to take place:
u2022         The SMTP plug-in logs on to the mail server using the domain as ID.
u2022         The message ID of the outbound e-mails is assembled with this domain.
u2022         If an SAP user who does not have an Internet mail address sends an e-mail, a sender address consisting of the SAP user name and this domain is generated.
u2022        Nodes
Each client has an SMTP node. This node is created by the SAP system and cannot be deleted. The following steps need to be carried out to configure the node so that sending Internet mail is possible:
i.         Make sure you are in the Node view.
ii.       Double-click the node name.
iii.      Choose Node in use.
iv.      In the Mail Host and Mail Port fields, specify the mail server to which the outbound mails are to be sent.
v.        Next to Internet, choose Settings.
vi.      Enter the address area of the recipient addresses that are to be reached using this node. In general, * is used if all e-mails are to be sent using SMTP.
vii.     Enter the output format for SAP documents. We recommend that you use the following settings:
SAPscript/Smart Forms     PDF
ABAP list     HTM
Business Object / Link     HTM
RAW Text     TXT
viii.   Confirm your selection.
Regards,
Sumeet M Naidu

Similar Messages

  • Send Email from approval task form

    In my reusable workflow, I have added an approval action. Everything works perfectly. What I want is - When approver comes to approval form, he should be able to send notification email to the initiator (From that form) that he has started working on that document.
    What I have tried - I have added a button clicking on which will submit the form to initiator. 
    But it fails. possible reason - when I create a data connection in workflow's infopath form to submit form as email, I am getting following warning
    "Domain trust form templates cannot be sent as email attachments. to fix this problem, modify the form option to change the security level of form template to restricted".
    I also tried to update status field and wait for it to changes in workflow and send an email from sp designer workflow. it didn't work.
    Please help or suggest any other possible way to achieve this functionality (Send Email from approval task form to initiator).

    Hi mry,
    I could reproduce on my SharePoint 2013 on-premise based on your another
    post.
    Based on the the following article, SharePoint workflow cannot use the InfoPath form in restricted mode which doesn't allow the data connection, but as your image warning message shows sending InfoPath form as mail attachments will need restricted level.
    http://msdn.microsoft.com/en-us/library/office/ee526352.aspx
    You can consider to send a mail to initiator in "Whe a Task Completes" step when you click button approved/rejected, and construct the current task form link format as follow,
    http://sp/_layouts/15/WrkTaskIP.aspx?List=WorkflowTasksListGUID&ID=[%Current Task:ID%]
    Thanks
    Daniel Yang
    TechNet Community Support

  • Email from Service Notification

    Dear Friends,
    There is a requirement to trigger an email from the service notification. In the standard SAP, I have seen a standard action box setting but I can't have this setting in the template am following.
    Could you please suggest any other settings to trigger the email??
    Thanks
    Prasad

    Hi,
    To send mail from service notification, you can use ABAP Function SO_NEW_DOCUMENT_SEND_API1.
    To Execute this Function Modul, you can use Action Box or Using user exit when notification is saved. Another trigger is using SAP Workflow.
    Regards.

  • Sending email from a trigger

    Sending email from a trigger
    I've put the following code in after insert trigger of a table but I'm not getting the email.
           stmt_var := 'Insert Unprocessed Accounts';
           conn:= utl_smtp.open_connection( 'EXCHSMTP.abcd.com');
           utl_smtp.helo(conn, 'abcd.com');
           utl_smtp.mail(conn, '[email protected]' );
           utl_smtp.rcpt(conn, '[email protected]' );
           utl_smtp.rcpt(conn, '[email protected]');
           mesg:= 'From: XYZ After Insert <[email protected]>' || crlf ||
                  'Subject: Unprocessed Account (Development)' || crlf ||
                  'To: neha <[email protected]>' || crlf ||
                  'Cc: ' || '[email protected]' || crlf  ;
           mesg:= mesg || '' || crlf || msg_body || 'XYZ account found:  '||' Layout No.: '|| :NEW.LAYOUT_NO ||
                          ' Account No.: '|| :NEW.ACCOUNT_NO ||' Status: '|| :NEW.STATUS ||
                          ' Created By: '|| :NEW.CREATE_BY ||' Cut No.: '|| :NEW.CUT_NO ||
                          ' Create Date.: '|| :NEW.CREATE_DATE;
           utl_smtp.data( conn, mesg );
           utl_smtp.quit( conn ); 

    831050 wrote:
    Sending email from a triggerHorrible concept and flawed.
    What happens when that trigger fires a 1000 times for a 1000 row changes, sends off a 1000 e-mails, and the transaction is rolled back??
    The row changes never happened. The 1000 e-mails did. And they now indicate that the changes did happen.
    Triggers do NOT exist for sending notifications.
    Triggers exist to PROTECT the integrity of that data and that transaction.
    Getting these fundamental concepts right is critical if you want to design and build a robust and working system. Never mind getting SMTP to work...

  • Sending emails from application

    Hello techies,
    I want to send emails from my application.
    Iam using java.net.*,java.util.*,java.io.*; packages upto now .
    I dont want to use javax.mail.* package.
    What is the alternative to my problem. Is there any package or class which is usefull to send mails????
    regards,
    ramu

    Sending email using SMTP and Java
    I was on a project a while ago where we needed to be able to send email notifications from the application to the administrator of the database whenever certain errors were trapped. This example shows you how. There are a few libraries that we will need to add in order to get started.
    Include the following in your project:
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.text.*;     // Used for date formatting.
    After you have added the above libraries you are ready to start to get into the good stuff!
    The first step to be able to send email it to create a connection to the SMTP port that is listening. Most of the time the SMTP port for a server is usually 25 but check with your email administrator first to get the right port.
    Here is the code to make that initial connection:
    private Socket smtpSocket = null;
    private DataOutputStream os = null;
    private DataInputStream is = null;
    Date dDate = new Date();
    DateFormat dFormat = _
        DateFormat.getDateInstance(DateFormat.FULL,Locale.US);
    try
    { // Open port to server
      smtpSocket = new Socket(m_sHostName, m_iPort);
      os = new DataOutputStream(smtpSocket.getOutputStream());
      is = new DataInputStream(smtpSocket.getInputStream());
      if(smtpSocket != null && os != null && is != null)
      { // Connection was made.  Socket is ready for use.
        [ Code to send email will be placed in here. ]
    catch(Exception e)
    { System.out.println("Host " + m_sHostName + "unknown"); }
    Now that you have made the connection it is time to add the code to send off the email. This is pretty straight forward so I will add comments into the code sample itself.
    try                       
    {   os.writeBytes("HELO\r\n");
        // You will add the email address that the server
        // you are using know you as.
        os.writeBytes("MAIL From: <[email protected]>\r\n");
        // Who the email is going to.
        os.writeBytes("RCPT To: <[email protected]>\r\n");
        //IF you want to send a CC then you will have to add this
        os.writeBytes("RCPT Cc: <[email protected]>\r\n");
        // Now we are ready to add the message and the
        // header of the email to be sent out.               
        os.writeBytes("DATA\r\n");
        os.writeBytes("X-Mailer: Via Java\r\n");
        os.writeBytes("DATE: " + dFormat.format(dDate) + "\r\n");
        os.writeBytes("From: Me <[email protected]>\r\n");
        os.writeBytes("To:  YOU <[email protected]>\r\n");
        //Again if you want to send a CC then add this.
        os.writeBytes("Cc: CCDUDE <[email protected]>\r\n");
        //Here you can now add a BCC to the message as well
        os.writeBytes("RCPT Bcc: BCCDude<[email protected]>\r\n");
        sMessage = "Your subjectline.";
        os.writeBytes("Subject: Your subjectline here\r\n");
        os.writeBytes(sMessage + "\r\n");
        os.writeBytes("\r\n.\r\n");
        os.writeBytes("QUIT\r\n");
        // Now send the email off and check the server reply. 
        // Was an OK is reached you are complete.
        String responseline;
        while((responseline = is.readLine())!=null)
        {  // System.out.println(responseline);
            if(responseline.indexOf("Ok") != -1)
                break;
    catch(Exception e)
    {  System.out.println("Cannot send email as an error occurred.");  }I hope this has helped you out!
    [i code above code from someone else,  thanks to him, her ]

  • Cannot send email from yahoo account on iPhone 5

    I just got an iPhone5 and I couldn't set up my Yahoo email as "yahoo"--it would not allow me to complete the process despot multiple attempts. I had to set it up as an "other" account. I can receive and read emails on my phone, but when I reply those messages will not send. They go to the outbox and an error message pops up that says" the email account has been rejected by the server" Does anyone have advice on either issue: setting up yahoo properly and/or sending email from phone?

    outgoing mail server
    SMTP - Yahoo! SMTP Server
    primary server
    Yahoo! SMTP server - ON
    server port 465
    That's what I have for my yahoo account.

  • Cannot send email from non .mac server

    I am only able to send/reply emails using my .mac address. My 2 other server addresses keep giving me the following message.
    "Cannot send mail. One of the recipient addresses was invalid".
    How can I fix this?

    You should be able to send email from Safari, however I do wonder why you wish to do this and whether there is something inherently wrong with using your mail app and your iCloud address.

  • Cannot send email from MobileMe account

    Apple recently pushed out an update to the MobileMe calendar. Since upgrading my account, I am unable to send emails from Firefox4 (current version) in Windows. The page sits indefinitely at a loading screen. Apple Support won't help because it isn't an issue with Safari. Anyone else have this issue?

    When using the MobileMe account preset to create the account, the SMTP server is created with 587 as the SMTP server port, which can't be changed when using the MM account preset to create the account.

  • Cannot send email from an iPhone to a Outlook group.

    Hi,
    My question is simple and I'd like an exactly same answer : Can iPhone users send emails from their iPhone's to one or more groups created in Outlook?
    This is my situation: our organization is using iPhone to provide email, calendar, contact, task etc. to some of their employees. We are using Airwatch MDM Agent on user's iPhone because we have an Airwatch server in place. I have an user and she has an iPhone 5 and she has created some groups in Outlook but these groups are not reflected in her Contacts in the iPhone. I have update her phone with the latest update, although I was almost sure that this was not the issue, then I've found some interesting posts on internet saying that this was a known problem for the users with the previous iOS but I thought this might has been corrected with the iOS, apparently not.
    Also I've tried ''the trick'' that is posted on several forums with the iCloud but neither so it's working. I am looking for a straight answer, if this works or not on iPhone's?
    Thanks,
    Sebastian.

    There indeed ARE apps in the app store that will do what you want.  Just search and find the one that best fits your needs.

  • Cannot send email from scanned pages

    I am having trouble with the updated HP remote app on Ipad, since the update I can scan the pages in, but then cannot send them via email. This is qute important because i work remotley from the office and rely on getting my design drawings in on a nightly basis
    please help

    cannot send email from scanned pages

  • Cannot send email from ipad?

    I can receive, but cannot send emails from my iPad. Always get message that I have wrong user name or password.

    Then make sure that the settings are correct in your email account.
    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • Cannot send email from Exchange 2007 to Exchange 2013

    Hello Anyone,
    Anyone can help? I've prepare MS Exchange 2013 already, for Migration MS Exchange 2007 and I got the issue.
    My issue is I can't send email from Exchange 2007 to Exchagen 2013, but for Exchange 2013 can send email to Exchange 2007,
    is my issue only internal email for external email both Exchange server is working fine.
    Regards,
    Eakkasak

    Thanks for your reply, when I send email from Exchange 2007 to Exchange 2013 I'm get the error message below.
    Delivery is delayed to these recipients or distribution lists:
    Eakkasak Buajan
    Subject:
    This message has not yet been delivered. Microsoft Exchange will continue to try delivering the message on your behalf.
    Delivery of this message will be attempted until 8/29/2014 8:30:29 PM (GMT+07:00) Bangkok, Hanoi, Jakarta. Microsoft Exchange will notify you if the message can't be delivered by that time."
    I'm already tick  "Exchange server Authentication" in the Default Receive connector properties of Exchange 2013"
    I'm restart services and restart all Exchange Server but doesn't work.
    Thanks,
    Eakkasak
    Sent by Microsoft Exchange Server 2007

  • Cannot send email from my mobileme on iphone 3g

    Suddenly coudn't access my mobileme email account. So I changed my password; and since I couldn't send email from my iphone 3G
    I can send/receive emails from icloud webpage or Thunderbird.
    Any clues?

    outgoing mail server
    SMTP - Yahoo! SMTP Server
    primary server
    Yahoo! SMTP server - ON
    server port 465
    That's what I have for my yahoo account.

  • Cannot send email from Iphone. A setting is off.

    What are the correct settings to send email from my aol account that's included in my I Cloud acct. any suggestions???? Thanks Sue

    Read this
    How do I set up AOL Mail on my iPhone or iPod Touch? - AOL Help

  • Cannot send email from outbox

    Why can't i send email from my outbox? Mail is blocked from coming in also.

    Check your settings, maybe the mail index is at fault.
    Setup Wizard and troubleshooting tips:
    http://www.apple.com/support/mail
    Also has a link to Mail community section.

Maybe you are looking for

  • Error-Message when i start LV

    Wenn ich ein VI vom Explorer her öffne (und LV geschlossen war), erhalte ich oft die Fehlermeldung "Die Datei xxx.vi (oder eine ihrer Komponenten) wurde nicht gefunden. Stellen Sie sicher, dass Pfad und Dateiangaben stimmen..." Labview wird trotzdem

  • Illustrator 5.1 of CS 5.5 wont install due to error Code 7 ?

    Hi everyone, I'm having problem installing CS 5.5. upgrade from CS 5, on my computer (windows 7, 32 bit) I have an administrator session. Every application is installed but Illustrator 5.1 won't ! and i have an "Exit Code: 7 - Unable to complete Sile

  • How to format without re installing software in macbook pro

    gd mng one and all i accidentally opened adult sites so i think there is some virus in this mac so i would like to erase all the information on this mac without re installing the software as it is a lengthy process. kindly inform the best solution fo

  • How to bring ALL option in Table prompt in OBIEE Answers result area?

    Hi All, This is my requirement. For example, Please consider scott table. There is a column called DEPTNO. I am taking DEPTNO,DNAME,EMPNO,EMPNAME for display. If i edit the table and move this column DEPTNO to Table Prompt section. I am getting a dro

  • How to transfer contacts to car bluetooth kit

    I did search and could not find.  If there is thread already I apologize.  I am trying to transfer contacts from N900 to Pioneer AVIC-X910BT car unit.  Paired Ok but could not transfer phonebook.  I tried to select from phone to send data via bluetoo