EWA AUTO... E-MAIL.....

Hi all experts,
My EWA is generating reports. I have added email addresses where it's send email automatically. After generating reports, Mail does not come automatically.. I have to do it manually. Can I please get help? I want to receive Emails weekly automatically based on reports generate!!
Thanks,
I will post reports for sure!!

Hi Afi,
I assume, that you wish an automatic e-Mail with the generated EWA report (as HTML) after processing of the data.
This e-Mail distribution is available for EarlyWatch Alert and Service Level Reporting.
Please, just follow the steps described in the <a href="http://help.sap.com/saphelp_sm40/helpdata/en/39/55321bbaa24d12bd369664673253a7/content.htm">Application Help: Send E-Mail Automatically</a>
Basically, you find the functionality in.
- transaction SOLUTION_MANAGER
- open the Solution Landscape
- choose in the menu: Edit -> Automatic E-Mail Transmission
Best regards,
Ruediger

Similar Messages

  • Query regarding auto e-mail notification for ccms

    Hi,
    I want to configure auto e-mail notifications for ccms alerts.
    I have configured ccms monitoring for our landscape on the solution manager.I went through the SAP documentation and it mentions that we have to do the SCOT settings and CCMS_OnAlert_Email_V2 method settings in client 000.But we already have  the SCOT config done in 100.
    My question is can i complete the rest of the config in 100 or i have to do everything in client 000 only.
    Thanks,
    Shashank

    No Shashank. I dont think this is required. You need not have to redo everything in 000 client.
    You only have to create the user in 000 client.
    Might be you have to create an RFC connection between your 000 client and the 100 client. I will confirm this to you tomorrow or so. Make sure the user has required authorizations in 000 client.
    best regds,
    Alagammai.

  • Auto send mail in next day

    I want to create program that run in server. it can auto send mail to someone everyday. Do everybody know the way? pls help me. if you have the code example, pls send it to me. my emai: [email protected]
    Thank in advance.

    You need to create a java mail programme which has a main method.
    You then need to set up the server to run the programme at a certain time of day.
    Ask around about the crontab command on a linux server, this allows you to run a programme at a set time every day.
    Just add a main method to the following class, add your smtp host and it should work
    import javax.mail.*;
    import javax.mail.internet.*;
    /** This class uses the Javamail classes to send an
    email with details of schedules etc
    This java class was written by <a href="mailto:[email protected]"><b>Kevin
      Saunders</b></a> (<a href="www.salniere.com" target="_blank">www.salniere.com</a>)
    class SendMail
        SendMail(){//constructor
    Takes the email address of the recipient, the message and the smtp host as arguments
    Then constructs an MimeMessage and sends it using the smpt host specified.
    It returns a string which confirms whether or the email was sent.
         public String sendMail(String to, String from, String msg) throws MessagingException
        String status="";
        //String smtpHost=
        String smtpHost=
              try{ 
        //Create JavaMail session
       java.util.Properties prop= System.getProperties();
        Session sech= Session.getInstance(prop, null);
        //Construct a message
        MimeMessage message= new MimeMessage(sech);
        //Set the from address
        message.setFrom(new InternetAddress(from));
        message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
        message.setSubject("Email from "+from);
        message.setText(msg);
        Transport transport = sech.getTransport("smtp");
        transport.connect(smtpHost,"","");
        //send message and close connection
        transport.sendMessage(message,message.getAllRecipients());
        transport.close();     
        //Connect to the transport
        catch (AddressException ae){
        System.out.println("There was a problem with the email address "+to);
        catch (SendFailedException sf){
        System.out.println("There was an error in sending email from "+from+" to "+to);
        catch (MessagingException me){
        System.out.println("There was an unexpected error in sending your confirmation email, sorry");
         System.out.println(An email from "+from+ " has successfully been sent to "+to);
         return status;
        }//end sendMailMethod
    }//end class

  • ERMS auto response mail

    auto response email template is not picked up from categorization schema, but from rule for the auto response in ruile modeler.
    i have prepared a rule for auto response in rule modeler where i have set condition as top scoring category equals the value "ERMS auto response" then action as email form, outgoing email , categorization schema, inline has been set.
    the value in rule modeler "ERMS auto response" is category in category modeler where i have assigned the email template for this category.
    problem: when i sent an email from outlook, system sends the auto response mail but email template is selected from rule modoler. it is not selected from categorization schema. however, when i see the email log in CRM_ERMS_LOGGING, i didn't find any problem adn fact gathering services CL_CRM_ERMS_ADD2FB_CA is envoking correctly and system reading the path value as my categorization schema adn category.
    rule evaluated to true
    Please help
    Thanks
    Suryamani

    Mail.app is an email client not a server. it needs to be aware of an email to do anything with it. for that it has to pull that email from the server and it can't do anything otherwise. same goes for any other email client. some servers do allow server side rules but you would have to check if your does. it wouldn't have anything to do with the email client (such as Mail.app) you are using.

  • .Once the billing document is saved, then an auto-generated mail along with

    please provide me with solution on this real time ticket..
    Once the billing document is saved, then an auto-generated mail along with PDF copy of  invoice has to trigger to customer contact person.

    please provide me with solution on this real time ticket..
    Once the billing document is saved, then an auto-generated mail along with PDF copy of  invoice has to trigger to customer contact person.

  • Using AppleScript to auto-archive mail in Outlook 2011

    I want to use AppleScript to set up a schedule to auto-archive mail greater than X days old. What I've found so far is below, and the error I'm receiving is "error "Microsoft Outlook got an error: Can’t get pop account \"TargetProcess\"." number -1728 from pop account "TargetProcess"".
    # the time we want to archive from
    set theArchiveCutoffTime to ((current date) - (32 * days))
    property theCount : 0
    tell application "System Events"
      set targetProcess to count (every application process whose name is "Mail")
    end tell
    tell application "Microsoft Outlook"
      set thisAccount to pop account "TargetProcess"
      set thisFolders to mail folder of thisAccount
    # find the "Inbox" of topFolder and "Mail ARCHIVE" of on my computer
      repeat with thisFolder in thisFolders
      if name of thisFolder is "Inbox" then
      set theInbox to thisFolder
      else if name of thisFolder is "Mail ARCHIVE" then
      set theARCHIVE to thisFolder
      end if
      end repeat
    # find the archive "Inbox"
      repeat with thisFolder in mail folder of theARCHIVE
      if name of thisFolder is "Inbox" then
      set theArchiveInbox to thisFolder
      end if
      end repeat
      set theArchiveTarget to theArchiveInbox
    # archive the Inbox
      repeat with theMessage in message in theInbox
      if time received of theMessage < theArchiveCutoffTime then
      move theMessage to theArchiveTarget
      set theCount to theCount + 1
      else
      # we get messages from oldest to newest
      exit repeat
      end if
      end repeat
    # archive sub-folders
      repeat with thisSubfolder in mail folder of theInbox
      # find the archive subfolder corresponding to this
      repeat with thisARCHIVEubfolder in mail folder of theArchiveInbox
      if name of thisARCHIVEubfolder is name of thisSubfolder then
      set theArchiveTarget to thisARCHIVEubfolder
      end if
      end repeat
      # archive messages
      repeat with theMessage in message in thisSubfolder
      if time received of theMessage < theArchiveCutoffTime then
      move theMessage to theArchiveTarget
      set theCount to theCount + 1
      else
      # we get messages from oldest to newest
      exit repeat
      end if
      end repeat
      end repeat
    end tell
    I'm working in AppleScript Editor v2.6.1 (152.1), Microsoft Outlook 2011 v14.3.5, OSX 10.9.4 Mavericks.

    Ok, red_menace above me had a shorter and more elegant solution to the question, I'm adding this just for another example.
    To solve your problem I'd make a mail rule that looked for any messages with "Filename:" in them (along with whatever criteria you wanted, like sender, domain, etc). The mail rule would execute the Applescript. My assumption is that the "Filename:foobar" text could be anywhere in the email, not necessarily the first thing in a paragraph, so I had to parse it differently.
    The results end up in a datalist, (theFilename {} ) that you can parse later to collect all filenames found in whatever messages were processed.
    I realize this could be cleaner, hope it's not hard to follow, but I did it really fast. It works flawlessly for me, picking out the name of the file no matter where in the email it appears.
    using terms from application "Mail"
    on perform mail action with messages theSelectedMessages for rule theRule
    repeat with aCounter from 1 to count theSelectedMessages
    set theMessage to item aCounter of theSelectedMessages
    set theContent to content of theMessage
    set theWords to every word of theContent
    set theFilename to {}
    set tid to AppleScript's text item delimiters
    set AppleScript's text item delimiters to ":"
    repeat with thisLoop in theWords
    try
    if (text item 1 of thisLoop) is "Filename" then
    set end of theFilename to (text item 2 of thisLoop)
    -- rest of your logic goes here the display is just to show it finds the filename, take it out!
    display dialog theFilename ¬
    buttons {"OK"}
    end if
    end try
    end repeat
    set AppleScript's text item delimiters to tid
    end repeat
    end perform mail action with messages
    end using terms from
    Message was edited by: stephen.bradley Typos for the win!

  • Unable to auto forward mail with encryption

    Hi,
    I'm currently testing mail exchange with encryption. I have setup two accounts with a comodo class 1 free email certificate. In Outlook 2013, the checkbox for "encrypt contents and attachments for outgoing messages" is ticked and I am able
    to send encrypted mails from outlook 2013 between these 2 accounts fine. Now, I have setup a rule on one account to auto forward  mails to the other account based on subject and sender. Outlook is open and active the entire time during my test,
    but the mails get send UNENCRYPTED. Whenever I trigger the rule by "run rules now", the mails will be send with Encryption.
    Anyone know why this is happening and whether there is a way of getting this to work?
    Regards and thanks in advance,
    Roger

    Hi Roger,
    Are the messages that got forwared by the auto forward rule previously encrypted?
    Maybe you can try below approach and see if it works. Create below registry key in Registry Editor, Outlook will automatically encrypt a message that you are forwarding which was originally encrypted:
    Path: HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Security
    DWORD Value: NoCheckOnSessionSecurity
    Value data: 1
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Ipad 2 not auto receiving mail from IMAP account

    Hi, I have an iPad 1 & 2 and an iPhone 3Gs.
    I have may email accounts with different servers, Apple, Yahoo, Google & 1&1.
    All auto receive mail via push, except for the 1&1 acc on the iPad2.
    Checked & double checked settings are same as on iPhone & iPad 1 which both receive mail from that account without issues.
    The only way I can get to see new mail from the 1&1 acc on it is to open the mail app and sit back for it to come in!
    What could I possibly be doing wrong? Is anyone else having the same issue?

    I am. I have a G5 and an iPad. I can get my mail from the G5, or by logging onto the server via Internet, but my mail app tells me it can't connect to the server. I've tried all the fixes on the other, similar threads... Set both fetch to manual, hard restart, reconfigure, etc. I can get it to work once after hard reboot.

  • HT204053 How do I set up my Mac to auto retrieve mail from icloud?

    How do I set up my Mac to auto retrieve mail from icloud?

    Welcome to the Apple Community.
    If you can't get your mail to work on Snow Leopard after June 30, you might want to try one of these approaches
    1. Configuring Mail in Snow Leopard
    2. Delete your mail account from Mail preferences and set it up again using the Mail Server Information.
    Some users have apparently encountered issues using this information in pre-Lion set ups (I haven't), Roger Wilmut has kindly provided instructions for those who find themselves with this problem.
    Entering iCloud email settings manually in Snow Leopard or Leopard

  • ERMS : Auto Acknowledgement Mail , Subject and Mail Body is empty

    Hi Guys ,
    We have set up an auto acknowledgement mail scenario . Acknowledgement mail is triggered , but the subject line and mail content are empty.
    We are using email forms here .
    If anyone has faced the same challenge , please let me know .
    Thanks
    Vinayak

    Hello,
    Hard to say. Mail forms are language dependant. Did you check that your mail form is maintained in the language used to generate the email (it is based on the user generating the email I believe) ?
    Best regards,
    Sylvain

  • ERMS Auto Acknowledgement mail Issue .

    Hi Guys ,
    We have set up an auto acknowledgement mail scenario . Acknowledgement mail is triggered , but the subject line and mail content are empty.
    We are using email forms here .
    If anyone has faced the same challenge , please let me know .
    Thanks
    Vinayak

    Hi Vaibhav,
    Can you please check the following things?
    1. Mail Content in SOST.
    2. Whether Attributes of Mail Forms and Context is maintained.
    3.Translations of the Mail Form.
    Regards.
    Deepak Ramchandran

  • EWA - Auto Generate Word Report

    Dear all,
    When the EWA report create each week, we need click the "word" icon to generate word report.
    Is it possible to auto generate EWA word report ?
    Best Regards,
    Wu

    Hello,
    It seems like your system is already setup to generate the report automaticallly. Usually when you have the 'Word' icon, it means the report has been generated correctly. By clicking on that icon, you are just opening the report.
    If you want to have the report  or solution to automatically forward to your email address, please navigate to the link below for the PDF activation file. This will provide youwith the steps required to setup the automatic emailing of the report.
    http://service.sap.com/~sapidb/011000358700001873212008E
    Regards,
    Jared

  • EWA report in mail

    Hello Gurus,
    EWA report is genrated weekely in solution manager (Solution Manager 7.0  on EHP1 ). I have added 3 e mail ID for receiving the report automatically in email. I found the report is delivered only in one email ID and not in other two. Can you please let me know is there any other configuration needs to be done for sending the report automatically in email to multiple email IDs.
    Vineet

    Hi Vineet,
    It depends on how the configuration was done. For example if you have BADI enabled but the table DSWP_SYS_EMAIL only partially populated, then this issue may occur.
    My suggestion is to check all the points listed in the troubleshooting Wiki link below.
    Regards,
    http://wiki.sdn.sap.com/wiki/display/SM/ConfiguringandTroubleshootingEarlyWatchAlertsE-MailforSolutionManager+7.0

  • Auto Formatting Mail

    New to the forum, so apologies if this question has been asked a million times. Trying to get Mail to auto format similar to Entourage for Mac. Mail currently does not auto capitalize first words in a sentence, auto cap 'i' or words with 'i' that should be capitalized (i.e.. I'll). Are there AppleScript commands out there that I can import that can be added to mail to create rules to allow for these formatting options?

    Did u find an answer to this problem? This is really annoying me as well. the other annoyance I am trying to find a solution for is getting Mail.all to automatically include a space between the end of a sentence and the beginning of a new sentence. Please let me know if you have a solution for either or both these issues.
    Thanks!

  • Auto-Generate mail for database performace reporting.

    Hello,
    i have many server to keep an eye on for maintenance but, now the number for it is growing day by day. Its difficult for me to keep a watch on each in detail. So I have an idea to implement.
    I want to make a script which will auto generate a mail from the server & send it to my email id with all the details of database. Basically performance related details.+
    Is it possible to do so ???? I know how to send a mail with attachment, the code i will use is given below.+
    please suggest me how can i attach my performance tuning queries  output & get those things in my mail on a daily basis......
    thanks in advance .....
    DECLARE
    v_From VARCHAR2(80) := '[email protected]';
    v_Recipient VARCHAR2(80) := '[email protected]';
    v_Subject VARCHAR2(80) := 'test subject';
    v_Mail_Host VARCHAR2(30) := 'mail.mycompany.com';
    v_Mail_Conn utl_smtp.Connection;
    crlf VARCHAR2(2) := chr(13)||chr(10);
    BEGIN
    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, v_Recipient);
    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: ' || v_Recipient || crlf ||
    'MIME-Version: 1.0'|| crlf ||     -- Use MIME mail standard
    'Content-Type: multipart/mixed;'|| crlf ||
    ' boundary="-----SECBOUND"'|| crlf ||
    crlf ||
    '-------SECBOUND'|| crlf ||
    'Content-Type: text/plain;'|| crlf ||
    'Content-Transfer_Encoding: 7bit'|| crlf ||
    crlf ||
    'some message text'|| crlf ||     -- Message body
    'more message text'|| crlf ||
    crlf ||
    '-------SECBOUND'|| crlf ||
    'Content-Type: text/plain;'|| crlf ||
    ' name="excel.csv"'|| crlf ||
    'Content-Transfer_Encoding: 8bit'|| crlf ||
    'Content-Disposition: attachment;'|| crlf ||
    ' filename="excel.csv"'|| crlf ||
    crlf ||
    'CSV,file,attachement'|| crlf ||     -- Content of attachment
    crlf ||
    '-------SECBOUND--'               -- End MIME mail
    utl_smtp.Quit(v_mail_conn);
    EXCEPTION
    WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
    raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;
    /

    I like your script idea.
    You can spool output to a file and mail the file to yourself.
    What OS are you running?
    On linux a simple starter script would look like this:
    #!/bin/bash
    echo `date`
    # Set the Environmental variable for TESTDB instance
    . /u01/app/oracle/dba_tool/env/TESTDB.env
    $ORACLE_HOME/bin/sqlplus -s system/<PASSWORD> <<EOF
    @/u01/app/oracle/dba_tool/TESTDB/quickaudit
    EOF
    echo `date`
    mailx -s "Check database on TESTDB" [email protected] < /tmp/quickaudit.lst
    ----------------------sample ENV file--------------------------------------
    ORACLE_BASE=/u01/app/oracle
    ULIMIT=unlimited
    ORACLE_SID=TESTDB
    export ORACLE_TERM=xterm
    ORACLE_HOME=$ORACLE_BASE/product/11.2.0
    ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
    LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
    LIBPATH=$LD_LIBRARY_PATH:/usr/lib
    TNS_ADMIN=$ORACLE_HOME/network/admin
    PATH=$ORACLE_HOME/bin:$ORACLE_BASE/dba_tool/bin:/bin:/usr/bin:/usr/ccs/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:/usr/lbin:/GNU/bin/make:/u01/app/oracle/dba_tool/bin:/home/oracle/utils/SCRIPTS:/usr/local/bin:
    export ORACLE_BASE ORACLE_SID ORACLE_TERM ULIMIT
    export ORACLE_HOME
    export LIBPATH LD_LIBRARY_PATH ORA_NLS33
    export TNS_ADMIN
    export PATH
    --------------------Starter reporting script--------------------------------------------------
    SET ECHO OFF
    SET TERMOUT OFF
    REM Revisions:
    REM Date ID Version Description
    REM -------- -- ------- ----------------------------------------------------|
    REM 10/07/05 1.0 Script to check for database issues
    SPOOL /tmp/quickaudit.lst
    SELECT SYSDATE FROM DUAL;
    SHOW USER
    SET TERMOUT ON
    SET VERIFY OFF
    SET FEEDBACK ON
    PROMPT
    PROMPT Checking database name and archive mode
    PROMPT
    column NAME format A9
    column LOG_MODE format A12
    SELECT NAME,CREATED, LOG_MODE FROM V$DATABASE;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking database versions
    PROMPT
    column BANNER format A64
    select * from v$version;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking control file(s)
    PROMPT
    column STATUS format a7
    column NAME format a68
    column IS_RECOVERY_DEST_FILE format a3
    set linesize 110
    SELECT * FROM V$CONTROLFILE;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking redo logs and group(s)
    PROMPT
    column member format a70
    set linesize 110
    set pagesize 30
    SELECT group#, member FROM v$logfile;
    PROMPT
    PROMPT -----------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking freespace by tablespace
    PROMPT
    column dummy noprint
    column pct_used format 999.9 heading "%|Used"
    column name format a16 heading "Tablespace Name"
    column bytes format 9,999,999,999,999 heading "Total Bytes"
    column used format 99,999,999,999 heading "Used"
    column free format 999,999,999,999 heading "Free"
    break on report
    compute sum of bytes on report
    compute sum of free on report
    compute sum of used on report
    set termout off
    set pagesize 40
    select a.tablespace_name name,
    b.tablespace_name dummy,
    sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id ) bytes,
    sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id ) -
    sum(a.bytes)/count( distinct b.file_id ) used,
    sum(a.bytes)/count( distinct b.file_id ) free,
    100 * ( (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) -
    (sum(a.bytes)/count( distinct b.file_id ) )) /
    (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) pct_used
    from sys.dba_free_space a, sys.dba_data_files b
    where a.tablespace_name = b.tablespace_name
    group by a.tablespace_name, b.tablespace_name;
    PROMPT
    PROMPT ------------------------------------------------------------------------|
    PROMPT
    PROMPT
    PROMPT Checking for invalid objects
    PROMPT

Maybe you are looking for

  • How to change validity period of cost centre or activity type

    Hi How to change validity period for an Activity type or Cost centre? Can we change the validity period once created? regards Prakash

  • BATCH CHARCTERISTICS

    Hi All,               i want to know how to access batch characteristics in smartforms using SALES ORDER . Moderator message: please do your own research before asking. Edited by: Thomas Zloch on Jan 6, 2011 9:13 PM

  • Status-byte of HP4194: How to read out?

    Hi all, I would like to know when my instrument (HP4194) has finished the actual measurement sweep, so that Labview (v5.0.1) can use the whole aquired data set etc. I found in the instruments handbook some notes about the status-byte: By default, all

  • Anyone elses front ear grill not line up properly on white iPhone?

    Anyone elses front ear grill not line up properly on white iPhone 4S? Noticed mine is a little to one side, wanted to know if anyone elses is a little off!

  • H264 DSLR ...

    Hello there, I am using a Mac Pro 2 x 2.26 GHz Quad-Core Intel Xenon 15GB 1066 MHz DDR3 with a ATI Radeon HD 4870 graphics card. To edit I am using FCP 7.0.3. The footage comes from a Canon 7D DSLR (24pfps) which delivers files in H264. My sequence s