Import Request Mail Alert

Hi,
Please guide me,
If a import request ends with error I need mail or message so that I can act quickly on that issue.
Thanks a lot in advance..!
Vinod.

Hi,
Please Check this thread:
Alert configuration
You can test the alert by executing the report : RSALERTTEST.
For sending mail through SAPconnect
Use following T-codes
1. SCOT.
-for maintiang the routing server details and to mention domain name.
2. SU01
--- maintian the email ID for the user who will recieve the mails.( Users should be in the Alert fixed receipent list).
Hope this will do for you.
Sunil.

Similar Messages

  • DTP Requests-Creating Mail Alert

    Hi Gurus,
    I want to trigger a mail alert for the requests in the particular infocube. Conditions should be,
    1) Info Cube should contain only 4 requests. Among 4, 2 requests(long loads) were loaded once in a month and remaining 2 (short loads) were loaded once in  a day.
    2) Need to check the selection conditions in the request. For long load ( selections, 0CALMONTH=201007-201008;) and for short load (selections, 0CALMONTH=201007-201008;)
    3) No overlap of the requests.
    4) No gaps between them.
      Based on above conditions i need to create a process chain, with abap program to trigger a mail alert. Here i need to know the logic to check the above conditions, means table names where we can find the details of above requirement (for example: RSBKREQUEST) with the logic to implement the same.
    Please help me in this task.
    Thanks & Regards,
    Balaji.S

    Issue solved.

  • How can I turn off the New Mail alert on my iPod Touch?

    I have an iPod Touch (version 6.1.3). The other day I was waiting for an important e-mail, so I  turned on the New Mail alert. It worked fine. Now I want to turn it off, but  I can't. I went into Settings and then to Sounds and changed the selection from the sound I'd selected ("Bell") to None. It says "None" but every time I get a new e-mail, it still makes the bell sound.
    I also tried going into Notifications and then to New Mail Sound and setting it to "None" but that didn't change anything
    Any ideas what I'm missing?
    Thanks!

    Try removing the mail totally from your notifications center.
    I have everything turned off and the banner set to none.

  • E-Mail Alerts/User Accounts

    Hi folks,
    Is it possible to configure an e-mail alert to the Admin team to flag up when a user has locked their account?
    Not interested in any automatic unlocking or anything of that nature.  Just a simple e-mail alert.
    Many thanks
    Paul

    Hi Paul, it should be a nice & easy one for them.  A couple of gotcha's to look out for:
    1. Lock codes - unless you really want to, don't report on admin lock codes otherwise you could have some fun and games when you have to do a mass lock...
    2. Only picking up locked ID's that were locked since the last run.  A few years back we had a program coded and the developer forgot this.  As a result we kept on getting lists of locked users that had been reported but had not requested their ID's to be unlocked yet.
    3. Being careful with the period of the report - can be a pain to keep getting stuff in your inbox unless it is really mission critical and you want to spend loads of time chasing users about.

  • Script to send a mail alert whenever server boot

    hi,
    I need a shell or perl script to send a mail alert to user whenever server boot, restart and shutdown.because in my office power problem is there.So the server restarted intermediatly.Kindly any one give a script to rectify my problem.

    If the server isat all important and you have a power problem, do consider getting a UPS. It might recover OK most times from power cuts (especially if you're on ZFS), but if you get other power problems like brown-outs and spikes, you might one day regret leaving it connected to a bad mains feed. Choose a mainstream brand like APC to be sure of Solaris support. The line-interactive versions, e.g. SmartUPS will recondition the mains waveform as well as maintaining supply during a power cut.

  • Powershell workflow generating false e-mail alerts

    Hi,
    I have a powershell script that gathers all of the trusted domains in our environment and then sends each domain name to another script to time the amount of time it takes to receive a response to an unqualified (isolated) name query in AD.
    Script 1 code:
    #Load the Active Directory Module
    Import-module activedirectory
    #Search the local schema for all trusted domain objects
    $ADDomainTrust = Get-ADObject -Filter {ObjectClass -eq "trustedDomain"} -Properties * | Sort-Object cn
    #Define workflow to pass domain names to trustsearch script
    workflow Get-domains
      param( $trusteddomainlist)
      foreach -parallel ($trusteddomain in $trusteddomainlist)
        $trust = $trusteddomain.name
          InlineScript {C:\trustsearch.ps1 $using:trust}
    Get-domains -trusteddomainlist $ADDomainTrust
    As you can see, I'm using a "foreach -parallel" workflow to query each trusted domain simultaneously. This is done to alert us to a potential problem as quickly as possible, without having to wait for the entire script to finish.
    Here's the code for the second (isolated name query) script. It sends me an e-mail if the query takes over 60 seconds. 
    Script #2 code:
     $trust=$args[0]
    foreach($domain in $trust){
    $startDTM = (get-date)
    $objUser = New-Object System.Security.Principal.NTAccount("junk")
    $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier])
    $strSID.Value
    $endDTM = (get-date)
    $totaltime = (($endDTM-$startDTM).TotalSeconds)
    $ftotaltime = "{0:N2}" -f $totaltime
    Function SendMail
    #SMTP server name
         $smtpServer = "<SMTP server IP address>"
         #Creating a Mail object
         $msg = new-object Net.Mail.MailMessage
         #Creating SMTP server object
         $smtp = new-object Net.Mail.SmtpClient($smtpServer)
         #Email structure
         $msg.From = "<sender e-mail address>"
         $msg.ReplyTo = "<reply e-mail address>"
         $msg.To.Add("<recipient e-mail address>"
         $msg.subject = "Isolated Name monitor warning"
         $msg.body = @"
         Isolated name queries are running slowly. A script measures how long the NAMCK domain controllers take to resolve an unqualified name query. It usually takes no more than 60 seconds to execute. It is currently taking $ftotaltime seconds.
    This may indicate a trust issue or a problem with a downstream trusted domain.
    #Sending email 
        $smtp.Send($msg)
    If ($ftotaltime -gt "60.00")
     SendMail
    Unfortunately, I'm getting a lot of false positives....e-mail alerts when query responses are taking only 7 or 8 seconds, not just over 60. It seems to happen most during the first 2 or 3 minutes the script runs. I think it has something to do with it running
    in parallel, because when I remove the "foreach -parallel" functionality, I don't get any false positives.
    Does anyone have suggestions on how to cut down or even eliminate the false positives without removing the "foreach -parallel" functionality?
    Thanks.

    I think the problem is here:
    If ($ftotaltime -gt "60.00")
    You're doing a string comparison, when you need to be doing a numeric comparison:
    If (60.00 -lt $ftotaltime)
    Here:
    $ftotaltime = "{0:N2}" -f $totaltime
    you're uisng the string format operator (-f) which is going to produce a string. String comparisons of numbers won't produce the expected results:
    PS C:\> "9.00" -gt "60.00"
    True
    Using the numeric double value 60.00 (instead of the string value "60.00"), and putting it on the LH side of the comparison will cause $ftotaltime to be coerced to a double, and you should get the expected results.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Yahoo mail alert feature

    I recently started using Mail and have linked a Yahoo/SBC mail account to it. Before doing this, Yahoo is our homepage, and on the Yahoo page, if we were logged in, a little alert would appear if you had new mail. Now, although Mail does leave the messages in our Yahoo account (don't ask, we want it to do that, we're happy about it) we no longer receive alerts on the Yahoo page that we have new mail. Is there any way to change this?
    I know it doesn't make a lot of sense, as Mail alerts you when you have new mail, but this is the request of my friend and boss....

    It sounds like your e-mail client is downloading your e-mail to your computer and not storing a copy in your SBC webmail which is why you would no longer see the new mail notification. You can configure your email client so that all messages received are stored on your computer and removed from the SBC Yahoo Mail servers. Once removed from the mail servers, messages are no longer available via Web Mail.

  • LOM, ALOM, RSC, ILOM mail alerts

    Hi,
    I just want to get to the bottom of this. Anyone else who experiences problems with ALOM/RSC/ILOM/LOM email alerts please post here!
    I have done an audit of all my systems and found the following:
    T5220 with latest firmware:
    Sun System Firmware 7.2.0 2008/12/11 17:58
    Host flash versions:
    Hypervisor 1.7.0 2008/12/11 13:38
    OBP 4.30.0 2008/12/11 12:15
    POST 4.30.0 2008/12/11 12:43
    Mail alerts work fine here
    T2000 with latest firmware:
    Sun-Fire-T2000 System Firmware 6.7.0 2008/12/11 14:54
    Host flash versions:
    OBP 4.30.0 2008/12/11 12:15
    Hypervisor 1.7.0 2008/12/11 13:43
    POST 4.30.0 2008/12/11 12:41
    Mail alerts do not work. Sun advises me to
    change my Production mail server to allow
    broken sender header "[email protected]".
    This is not good enough.
    V240 with ALOM 1.6.8:
    Mail alerts work fine.
    V490 with RSC 2.2.2:
    sc> showsc
    RSC Version: 2.2.2
    RSC Bootmon version: 2.2.2
    RSC Firmware version: 2.2.2
    Email alerts work fine!!!!
    V490 with RSC 2.2.3:
    rsc> showsc
    RSC Version: 2.2.3
    RSC Bootmon version: 2.2.2
    RSC Firmware version: 2.2.3
    Email alerts do not work.
    So we have a case where Sun RSC is broken from RSC 2.2.3 onwards.
    We have a case where the ALOM on a V240 works perfectly but the T2000 is totally b0rked and
    Sun is not interested in fixing it.
    So can anyone concur with my findings? Do we sort of get together and request
    en-masse to get these fixed?
    It would seem the programming of the SC/ALOM/ILOM/RSC are all inconsistent.
    Some of them are well behaved. Some are configured in such a way I would
    fail anyone submitting such work as homework etc.
    I honestly believe if a service such as an RSC is setup to send email,
    it should do it in a method that ensures as little risk of non-delivery
    as possible, such as being able to set a hostname/domain for the sender.
    As is indicated above, it appears the precedent is set for the technology
    to be able to do so, but there is an inconsistent approach to this in the
    Sun shop where the RSC/LOM etc are developed.
    So while we're at it, how about Sun standardising the RSC across
    their product line so we only have to use and support one interface?!
    rachel
    Edited by: virag064 on Feb 1, 2009 3:32 PM

    Problem
    Email alerts from ILOM not working. Test box is a T5140.
    Complication
    ALOM systems using the same email server have no problem.
    Analysis
    ILOM changed the format of the email address.
    Old [ALOM] = alom-alert@[alom_IP]
    New [ILOM] = ilom-alert@ilom_IP
    The one that works has [] surrounding the IP.
    Note: the other problem was that under certain firmwares, the “Send Test Alert” function in the GUI was broken. As this is how I tested ILOM email functionality, I thought it was broken when only the send mechanism was broken.
    Paul Quattrociocchi from Sun found this:
    Document ID:     6633026
    Title:     Unable to use e-mail alert notifications via ILOM due to
    IP domain in address
    For example, sendmail v8.9+ will not accept "domain literal" address
    ([ipaddress] is a domain literal). But it does accept "@1.2.3.4"
    Just fine.
    So some mailers accept @1.2.3.4, some accept @[1.2.3.4]. But it
    doesn't look like we can be guaranteed that any one style will work.
    CR 6410008 is the same as the ILOM issue. They fixed it by quoting
    RFC 2821 and changing the address to "ilom-alert@[10.100.14.104]".
    The mail server that was failing showed the following in its logs [I’ve removed the SMTP server and client ILOM info]:
    Feb 25 10:53:22 SMTP_server postfix/smtpd[29222]: [ID 197553 mail.info] connect from ILOM_card
    Feb 25 10:53:22 SMTP_server postfix/smtpd[29222]: [ID 947731 mail.warning] warning: Illegal address syntax from ILOM_card in MAIL command: ilom-alert@IP_address
    Feb 25 10:53:22 SMTP_server postfix/smtpd[29222]: [ID 197553 mail.info] disconnect from ILOM_card
    Fix [this is specific to the T5x40 but there are likely releases for other platforms]
    Document ID:     139444-01
    Title:     Hardware PROM: SPARC Enterprise T5140 & T5240 Sun System
    Firmware LDOMS
    Sun System Firmware 7.2.0 2008/12/11 18:19
    ILOM 3.0.2.50 Dec 11 18:19:11 PST 2008
    VBSC 1.7.0 Dec 11 2008 17:20:47
    Hypervisor 1.7.0 2008/12/11 13:40
    OBP 4.30.0 2008/12/11 12:16
    POST 4.30.0 2008/12/11 12:44
    From the GUI you select update ILOM, but it updates everything.
    This allows you to change the format of the return email address to something the SMTP server will accept.
    The short-term fix
    Change email servers to one that accepts the new format [no guarantee this will keep working].
    If you set the sc_clieventlevel to 3 [minor] and do something, anything, that triggers an event [logging in to the GUI, logging out of the GUI, etc], you will cause email to be sent.

  • E-mail alerting CSM 4.1 and IPS 4240

    Hello,
    I have recently migrated from CSM 3.3 to CSM 4.1 on a new server. I have everything configured and working correctly, but the thing that I am missing is how to configure E-mail alerts based on attack severity. I had this configured on the old CSM 3.3 server, but it appears that this is not available under CSM 4.1??I have read through the documentation and compared my old configuration with the new and it is not obvious to me how to get this functionality back on 4.1.
    CSM 4.1 that I have is the standard version, if that matters.
    Any tips or assistance on this will be greatly appreciated!
    Frank

    Hello,
    Unfortunately, CSM 4.x does not have the capability to send e-mail notifications for IPS alerts.  An enhancement request has been filed for this feature, you can view the request here:
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtn59300
    The workaround would be to set up Cisco IPS Manager Express and use the e-mail notification feature within IME.
    http://www.cisco.com/en/US/prod/collateral/vpndevc/ps5729/ps5715/ps9610/data_sheet_c78-459033.html
    IME is available for download here:
    http://tinyurl.com/3lmwj5w
    Hope this helps.

  • Mail alert choices

    hello all, I was wondering if it is possible to have a different mail alert sounds to help identify specific emails when they arrive. Is this something that might be possible from a app? Thanks for any help and advice.

    Unfortunately, there is no choice regarding mail alert tone and none was announced for the 3.0 firmware. Also, no 3rd party app can supply this since the iPhone OS doesn't allow access to core phone functions. You can request this, and maybe it will eventually be added:
    http://www.apple.com/feedback/iphone.html

  • Sending Mail Alerts

    I have just completed an application using OAF. Now I have to set certain mail alerts in this application.
    Can anyone kindly let me know how to set mail alerts.
    Thanks & Regards

    Hi,
    If u sending mail through, if any button clicked on OAF page then refer following code:
    import java.io.*;
    import java.net.*;
    * This program sends e-mail using a mailto: URL
    public class SendMail {
    public static void main(String[] args) {
    try {
    // If the user specified a mailhost, tell the system about it.
    if (args.length >= 1) System.getProperties().put("mail.host", args[0]);
    // A Reader stream to read from the console
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    // Ask the user for the from, to, and subject lines
    System.out.print("From: ");
    String from = in.readLine();
    System.out.print("To: ");
    String to = in.readLine();
    System.out.print("Subject: ");
    String subject = in.readLine();
    // Establish a network connection for sending mail
    URL u = new URL("mailto:" + to); // Create a mailto: URL
    URLConnection c = u.openConnection(); // Create a URLConnection for it
    c.setDoInput(false); // Specify no input from this URL
    c.setDoOutput(true); // Specify we'll do output
    System.out.println("Connecting..."); // Tell the user what's happening
    System.out.flush(); // Tell them right now
    c.connect(); // Connect to mail host
    PrintWriter out = // Get output stream to mail host
    new PrintWriter(new OutputStreamWriter(c.getOutputStream()));
    // Write out mail headers. Don't let users fake the From address
    out.println("From: \"" + from + "\" <" +
    System.getProperty("user.name") + "@" +
    InetAddress.getLocalHost().getHostName() + ">");
    out.println("To: " + to);
    out.println("Subject: " + subject);
    out.println(); // blank line to end the list of headers
    // Now ask the user to enter the body of the message
    System.out.println("Enter the message. " +
    "End with a '.' on a line by itself.");
    // Read message line by line and send it out.
    String line;
    for(;;) {
    line = in.readLine();
    if ((line == null) || line.equals(".")) break;
    out.println(line);
    // Close the stream to terminate the message
    out.close();
    // Tell the user it was successfully sent.
    System.out.println("Message sent.");
    System.out.flush();
    catch (Exception e) {  // Handle any exceptions, print error message.
    System.err.println(e);
    System.err.println("Usage: java SendMail [<mailhost>]");
    Sending mail through Oracle Alert, then u can refer the Oracle alert guide.
    If you have any issue with Oracle alert , then you can share your queries.
    Thanks,
    Kumar

  • How to send e-mail alert to the user job is successful or failed.

    Hi Experts,
    I have scheduled a job using DBMS_JOB Package; in this job I am calling a procedure.
    How can we send an e-mail(alert) to the user if the job is successful (or) job fails.
    If the job is successfully completed, then we have to send mail as “Job is completed successfully along with job name”.
    If the job fails we have to send email as “error message of the job along with job name”(why the job is failed).
    This alert should be sending automatically no manual intervention.
    Please help me.
         CREATE OR REPLACE PROCEDURE APPS_GLOBAL.arc_procedure (P_ID IN NUMBER)
         IS
         CURSOR C IS SELECT id,table_name,archive_table_name,where_condition
         FROM apps_global.control_ram
         WHERE id = p_id
         ORDER BY id, table_name;
         BEGIN
            FOR I IN C
            LOOP
               EXECUTE IMMEDIATE
                  'INSERT INTO '
               || I.ARCHIVE_TABLE_NAME
               || '
         (SELECT * FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || ')';
               EXECUTE IMMEDIATE
                  'DELETE FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || '';
               COMMIT;
            END LOOP;
         EXCEPTION
            WHEN OTHERS
            THEN
               ROLLBACK;
               DBMS_OUTPUT.PUT_LINE (
               'An error was encountered - ' || SQLCODE || ' -ERROR- ' || SQLERRM);
         END arc_procedure;
         /This is my job.
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'APPS.arc_procedure(1);'
       ,next_date => to_date('05/01/2013 00:00:00','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'TRUNC(SYSDATE+1)'
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    /Thanks in advance.

    Hi,
    I think you can do by creating mailing procedures and call it in the loop and outside the loop.
    There would be two procedure one in inside loop which will execute after successfull completion of the loop.
    Other would be in the exception block like i shown in the below code you have written;
    V_variable_1 you can use as a parameter for what is the error occured.
    like suppose your mailing procedure name is Status_email and Status_email_1.
    CREATE OR REPLACE PROCEDURE APPS_GLOBAL.arc_procedure (P_ID IN NUMBER)
         IS
         CURSOR C IS SELECT id,table_name,archive_table_name,where_condition
         FROM apps_global.control_ram
         WHERE id = p_id
         ORDER BY id, table_name;
    V_VARIABLE_1 NUMBER;
    V_VARIABLE_2 VARCHAR2(400);
         BEGIN
            FOR I IN C
            LOOP
               EXECUTE IMMEDIATE
                  'INSERT INTO '
               || I.ARCHIVE_TABLE_NAME
               || '
         (SELECT * FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || ')';
               EXECUTE IMMEDIATE
                  'DELETE FROM '
               || I.TABLE_NAME
               || ' WHERE '
               || I.WHERE_CONDITION
               || '';
               COMMIT;
                     STATUS_EMAIL;
            END LOOP;
         EXCEPTION OTHERS THEN
    V_VARIABLE_1 :=SQLCODE;
    V_VARIABLE_2 :=SQLERRM;
               ROLLBACK;
    STATUS_EMAIL_1(V_VARIABLE_1,V_VARIABLE_2);
         END arc_procedure;
         / You can refer to sample email procedure i have created for you.
    CREATE OR REPLACE PROCEDURE STATUS_EMAIL
    AS
       v_From       VARCHAR2(80) := 'EMAIL_ID';
       v_Recipient  VARCHAR2(80) := 'EMAIL_ID';
    --YOU CAN SEND EMAIL TO MORE THAT ONE USER SO YOU CAN USE LIKE BELOW VARIABLE....
       v_Recipienttt  VARCHAR2(80) := 'EMAIL_ID';
       v_Subject    VARCHAR2(80) := 'SUBJECT_FOR_THE_MAIL';
       v_Mail_Host  VARCHAR2(30) := 'MAIL_SERVERS_HOST_IP(SMTP_SERVER)';
       v_Mail_Conn  utl_smtp.Connection;
       crlf         VARCHAR2(2)  := chr(13)||chr(10);
    BEGIN
      v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host);
      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.Rcpt(v_Mail_Conn, v_Recipienttt);
    --OPEN DATA CONNNECTION
      UTL_SMTP.OPEN_DATA(v_mail_conn);
    --MAIL HEADER
      utl_smtp.write_DATA(v_Mail_Conn,'Date: '   || to_char(sysdate, 'DD-MON-YYYY hh:mi:ss AM') || crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'From: '   || v_From || crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Subject: '|| v_Subject || ||crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'To: '     || v_Recipient || crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Cc: '       || v_Recipienttt ||','|| crlf);
    --MAIL BODY
      utl_smtp.write_DATA(v_Mail_Conn,'MIME-Version: 1.0'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Type: multipart/mixed;'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,' boundary="-----SECBOUND"'|| crlf ||crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'-------SECBOUND'|| crlf );
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Type: text/plain;'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Content-Transfer_Encoding: 7bit'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Procedure is successfully complited without error'|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
    utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Dear All, '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Procedure is successfully complited without error'||'.' ||crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'Regards, '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,'any_name '|| crlf);
      utl_smtp.write_DATA(v_Mail_Conn,null|| crlf);
      utl_smtp.write_data(v_Mail_Conn, utl_tcp.CRLF ||'This mail is auto generated.');
      --CLOSE CONNECTION
      UTL_SMTP.CLOSE_DATA(v_mail_conn);
      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;
    /cheers..

  • E-Mail alerts for queues in SMQ2

    Hi,
    In a asynchronous IDOC->ABAP Proxy scenario, some of the  messages are getting stucked in the transaction SMQ2 in PI system.This happens only when we send 100 IDOCs to PI at the same time and only 5-10 messages are getting stucked with status as "Running". The remaining messages are processed and send to the target system.
    I would like to know a solution to trigger an E-mail alert to a specific Mail id if any messages gets stuck in the queue for more than 5 minutes.
    Do we need to configure CCMS to achieve this? If so, please let me know the steps.
    Thanks and Regards,
    Sakthi

    Hi Just check for
    configure E-mail alerts
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2 By Aravindh Prasanna
    /people/aravindh.prasanna/blog/2005/12/24/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-2
    XI : Configuring CCMS Monitoring for XI- Part I By Naveen Pandrangi
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i
    XI : GRMG Customizing for XI CCMS Heartbeat Monitoring Part II By Naveen Pandrangi
    /people/sap.user72/blog/2005/12/05/xi-grmg-customizing-for-xi-ccms-heartbeat-monitoring-part-ii
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3 by Aravindh Prasanna
    /people/aravindh.prasanna/blog/2006/02/20/configuring-scenario-specific-e-mail-alerts-in-xi-ccms-part-3
    Regards
    Abhishek

  • Sync issues with Google Calendar and e-mail alerts

    Hello,
    I'm experiencing a lot of problems with iCal while I'm trying to sync it with Google Calendar. I have correctly inserted my Google account information into iCal, but:
    when I create a new event and I disable the e-mail alert and save it, it automatically turns on the e-mail alert! Is there a way to disable by default all alerts? I have already tried to go to Settings - Advanced and select “Disable all alerts” with no result;
    all the events I create into iCal are correctly synced with Google Calendar and I can correctly read them on the web app, but in my android device they don't have the time information (they are listed as all-day events)

    GooSync would do the trick - http://www.goosync.com/
    Plz be aware that Goosync nor Google Contacts supports all field from your phone so it is not an 100% backup unfortunately
    JoranG

  • Mail Alert to Managing Director for every transaction for customer & vendor

    Dear Gurus,
    Please let me know how & where to do setting for mail alert to Managing Director for every transaction for customer & vendor,
    Like for Customer: Sales Order, PGI, Invoice, Payment receipt................
           for Vendor: Purchase Order, GR, Miro, Outgoing Payment for Vendor,
    Thanks in advance,
    Sai

    Hi Sai
    If you want to set the mail alert to Managing Director for every transaction for customer & vendor Like for Customer Sales Order, PGI, Invoice , PO  then maintain at  all levels  output type and at all levels for those output types  assign the authorization as Managing Director
    But for what purpose you want to assign the authorization member at all levels, what is your requirement?
    Regards
    Srinath

Maybe you are looking for

  • IPod doesn`t recog./indicate any longer, after inadvertent connect. firewir

    Dear Users, perhaps some of you can help me with this problem: since I connect my iPod 5G with the Firewire-Cord of my son´s iPod mini, my iPod isn´t recognized any longer on every Computer i connect him via USB! The notice on my iPod after the Conne

  • WRT320N Wifi after Day or two loses connection

    Hello I have a problem that over time I no longer work Wifi connection. LAN connection is OK.  After the restart everything is OK, but only 1 or 2 days. Then I must reboot again. Latest Firmware WPA 2 Personal no ssid broadcast (did not help either t

  • Color conflict when printing text boxes layered with images

    Thank you in advance for any insight on this question. I've got a text box grouped with an image in a Pages document. The text box is layered in front of an object and is transparent (no fill color in the text box). The object however, is filled with

  • [SOLVED] Mail content for Direct Alert Notifications

    Hi, I asked this question during a 10g New Features course once but didn't get an answer... maybe somebody here can help? The format (long) of an email notification from EM (10.2.0.3) is: E-mail Subject (Long Format): EM Alert: <severity> <target nam

  • WAR - Ok, I'm lost

    I've got a servlet that I've successfully deployed against Orion, just a           little hello world, that I get an error with when deploying against Weblogic           6 sp1. With orion I can hot deploy just the class itself, so I imagine it's