JSP Send Mail Application, plz help

Hi,
I have written a jsp send mail application, but it is giving error that NoSuchProviderException. What to do? Plz help. I m sending the code as below:
<%@ page import="java.util.*, javax.mail.*,javax.mail.internet.*" %>
<html>
<head>
<title>E-Mail Us</title>
</head>
<body bgcolor="white" text="#003399" >
<%
if(request.getMethod().equals("POST") )
boolean status = true;
String mailServer ="SMTP_HOST";
String fnm = request.getParameter("fnm");
String lnm = request.getParameter("lnm");
String facility = request.getParameter("facility");
String subject = request.getParameter("select");
String fromEmail = "[email protected]";
String toEmail = "[email protected]";
String bccEmail = "[email protected]";
String contact =request.getParameter("select2");
String way =request.getParameter("way");
String messageEnter = request.getParameter("message");
try
Properties props = new Properties();
     props.put("mail.smtp.host", mailServer);
props.put("mail.smtp.auth", "true");
Session s = Session.getInstance(props,null);
MimeMessage message = new MimeMessage(s);
InternetAddress from = new InternetAddress(fromEmail);
message.setFrom(from);
InternetAddress to = new InternetAddress(toEmail);
     InternetAddress bcc = new InternetAddress(bccEmail);
     message.addRecipient(Message.RecipientType.TO, to);
message.addRecipient(Message.RecipientType.BCC, bcc);
message.setSubject(subject);
     message.setSentDate(new Date());
message.setText(messageEnter);
     message.setText(way);
     message.setText(contact);
     message.setText(facility);
     message.setText(fnm);
     message.setText(lnm);
     Transport transport = s.getTransport(mailServer);
transport.connect(mailServer, "USER", "PASSWORD");
transport.sendMessage(message, message.getAllRecipients());
transport.close();
catch(NullPointerException n)
System.out.println(n.getMessage() );
     out.println(n.getMessage());
out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");//you need to enter a message"+"</b></center>");
     out.println("<br><br><center><b>"+"You need to Enter a message"+"</b></center>");
status = false;
catch (Exception e)
System.out.println(e.getMessage() );
     out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");
out.println("<br><br><center><b>"+"Your Message to " + toEmail +" and "+ bccEmail+ " failed, reason is: " + e);
status = false;
if (status == true)
out.println("<br><br><center><b>"+"Your message to " + toEmail +" and "+ bccEmail+ " was sent successfully!"+"</b></center>");
else
%>
<center>
<h1>Contact Us</h1>
<form method="post" name="mail" action="mail.jsp">
<table border="0">
<tr>
<td><b>First Name :</b></td>
<td><input type="text" name="fnm" size=24></td>
</tr>
<tr>
<td><b>Last Name :</b></td>
<td><input type="text" name="lnm" size=24></td>
</tr>
<tr>
<td><b>Facility :</b></td>
<td><input type="text" name="facility" size=24></td>
</tr>
<tr>
<td><b>Subject :</b></td>
<td> <select name="select">
          <option>-------------------------------</option>
<option>Missing File</option>
<option>Correction Issue</option>
<option>Refer Us</option>
<option>Miscellaneous</option>
</select></td>
</tr>
<p>
<tr>
<td><b>Comments :</b></td>
<td><textarea name="message" rows = "10" cols="50"></textarea></td>
</tr>
<tr>
<td><b>Best way to contact :</b></td>
<td>
<select name="select2">
          <option>--------------</option>
          <option>Phone</option>
<option>Email</option>
<option>Fax</option>
</select>
<input type="text" name="way" size=24></td>
</tr>
</table>
<p>
<font face="Helvetica"><input type="submit"
value="Submit" name="Command">
</font>
</form></center>
<%
%>
</body>
</html>

Ur messaging server will not be up..
regards
shanu

Similar Messages

  • JSP send mail exception,plz help

    Hi,
    I have written code for mail program in jsp but it gives "javax.mail.MessagingException: Exception reading response; nested exception is: java.net.SocketException: Connection reset "
    what will be the reason for this plz help.
    thanks

    restart your machine then it s will be corrected...i mean socketexception
    i have found my problem...its a problem about delaying emails like spam protection...ur mail server and and script must run on the same ip...and so my problem solved...
    maybe there is a trick for delaying emails even they dont run under the same ip but i dont know..!

  • Why I can Send Mail Here -- Plz Help

    Hi All,
    I m trying to send Mails to multiple users with the MailerBackp.java. But it is trowing some exception in parsing the InternetAddress
    import java.util.*;
    import java.util.concurrent.*;
    public class MailerBackup {
         private final FileCollection to;
         private static ArrayList<String> emails ;
         public MailerBackup(String addressFile){
              to = new FileCollection(addressFile);
              emails = new ArrayList<String>();
              //No of remaining emails.
              int remaining = to.size();
              System.out.println("Remaining is: "+remaining);
              int noOfmailAtATime = 500;
              int counter = remaining/noOfmailAtATime;
              System.out.println("Counter is == "+counter + "   no of Mails at a time =="+noOfmailAtATime);          
              String email= "";     
              int start = 0;
              int end  = 0;
              if(to.size()> noOfmailAtATime){
                   end = noOfmailAtATime;
              }else{
                   end = to.size();
              if(counter>=1){               
                   for(int i=0; i<counter; i++) {     
                        System.out.println("i is : "+i);
                        System.out.println("Start is "+start+" and end is "+end);
                        for(int j=start; j<end; j++ ){
                             email = email + "," +to.get(j);     
                        start = end;                    
                        email = email.substring(1);
                        emails.add(email);
                        email = "";
                        if(i< counter-1){
                             end = end + noOfmailAtATime;     
              System.out.println("End is :"+end);          
              if(end < to.size()){
                   int count = 0;
                   System.out.println("Inside if");
                   for(int i= end; i<to.size(); i++){
                        System.out.println();
                        email = email + "," +to.get(i);
                        count = i;     
                   email = email.substring(1);               
                   emails.add(email);
                   email="";
                   System.out.println("End is =="+count+" and to size is "+to.size());
        public static void main(String[] args) {
            try{
                 BlockingQueue<Runnable> queue = new ArrayBlockingQueue<Runnable>(200);
                 ThreadPoolExecutor executor = new ThreadPoolExecutor(50, 50, 1, TimeUnit.SECONDS, queue);
                    if (args.length != 1) {
                         System.err.println("Usage: java ExecutorExample address_file" );
                         System.exit(1);
                  MailerBackup mailer = new MailerBackup(args[0]);
                  MailBean bean = null ;
                  MailSender sender = null;
                 long time = -System.currentTimeMillis();
                 time += System.currentTimeMillis();              
    //Here Emails is an ArrayCollection<String>, where each String consist of
    //multiple comma seperated emails .
                 for(int i = 0; i < emails.size(); i++){
                      bean = new MailBean();
                       bean.setSubject("Mail Bean Test");
                       bean.setMessage("Hi This is a Test Message, Please Ignore this Message");
                       System.out.println(emails.get(i));
                         bean.setTo(emails.get(i));
                         executor.execute(new MailSender(bean));
                 System.out.println(time + "ms");
                  System.out.println("Finished");          
            }catch(Exception ex){
                 ex.printStackTrace();
    }For sending Mails, My MailBeans send method is :
    public Message createMessage(){
             try{              
                  Message msg = new MimeMessage(session);
                   msg.setFrom(InternetAddress.parse(FROM, false)[0]);
                   msg.setHeader("X-Mailer", "VMailer");
                   msg.setSentDate(new Date());
                   if(getTo() != null || getTo() !="")
                   msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(getTo(), false));
                   if(getCc() != null || getCc() !="")
                        msg.setRecipients(Message.RecipientType.CC,InternetAddress.parse(getCc(), false));
                   if(getBcc() != null || getBcc() !="")
                        msg.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(getBcc(), false));
                   msg.setSubject(getSubject());
                   msg.setText(getMessage());
                   return msg;                        
             }catch(Exception ex){
                  ex.printStackTrace();
             return null;          
        public void sendMessage(){
             try{
                  Message msg = createMessage();
                  transport.send(msg, msg.getAllRecipients());
             }catch(Exception ex){
                  ex.printStackTrace();
        }Error is while parsing the Mails.
    java.lang.NullPointerException
            at javax.mail.internet.InternetAddress.parse(InternetAddress.java:595)
            at javax.mail.internet.InternetAddress.parse(InternetAddress.java:555)
            at MailBean.createMessage(MailBean.java:123)
            at MailBean.sendMessage(MailBean.java:138)
            at MailSender.run(MailSender.java:11)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)DEBUG: setDebug: JavaMail version 1.4ea
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: trying to connect to host "email.vsginc.com", port 25, isSSL false
            at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
            at MailBean.sendMessage(MailBean.java:139)
            at MailSender.run(MailSender.java:11)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
            at java.lang.Thread.run(Unknown Source)
    220 email.vsginc.com Microsoft ESMTP MAIL Service, Version: 6.0.3790.1830 ready at  Fri, 7 Sep 2007 09:19:00 -0400
    DEBUG SMTP: connected to host "email.vsginc.com", port: 25

    So what's in FROM?

  • Problem sending mail. Plz help me

    i need to send mails to the registered users.
    the mail server details are given as a part of it. i dont know how to use the given username/password for the mail server. using mail server name without the username and password resulted in the following exception.
    javax.mail.SendFailedException: Sending failed; nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: mail.symphonicringtones.com, port: 25; nested exception is: java.net.ConnectException: Connection timed out: connect
    so how can i use the given username and password.
    regards,
    uresh

    First of all, this error is not an authentication error, it's a network error.
    The exception is telling you that java can't open a TCP socket to the given host on the given port. This is most likely due to one of two reasons:
    1. There is no process listening on that port on that host
    2. There is a firewall somewhere in between blocking tcp traffic
    First resolve the connection issue. To test if you are able to connect, just try to telnet in on port 25:
    telnet mail.symphonicringtones.com 25
    I just did this and got:
    220 helena.eroute.net ESMTP Sendmail 8.12.10/8.12.10; Thu, 18 Nov 2004 03:47:36 +1300
    So this means either it wasn't up when you tried, or your firewall is blocking it.
    Once you have solved this, then tackle your authentication issues. In order to authenticate you need to create a javax.mail.Authenticator instance, then use this when you create the javamail session.
    See:
    http://java.sun.com/products/javamail/javadocs/javax/mail/Authenticator.html
    and
    http://java.sun.com/products/javamail/javadocs/javax/mail/Session.html#getInstance(java.util.Properties,%20javax.mail.Authenticator)

  • Can't send mail...HELP

    Hi
    I just reasently moved, now I'm using sprint 2wire gateway to go online. I'm online I can surf and also receive mail. but I just can't send any mail.
    This is the error message I receive
    This message could not be delivered and will remain in your Outbox until it can be delivered.
    Verify that you have addressed this message correctly. Check your SMTP server settings in Mail Preferences and verify any advanced settings with your system administrator.
    the address is correct, but I'm not sure if I need to change some of my SMTP settings, since I'm using the sprint service now.
    Can anyone help me???

    This indicates you have a .Mac account which is provided by Apple.
    Most, if not all Internet Service Providers now block the use of SMTP servers that are outside of the ISP's network or not provided by the ISP on Port 25 which is the the standard or most common port used by SMTP servers to send mail.
    Some ISPs allow the use of an authenticated SMTP server only (such as the .Mac SMTP server) on Port 25 but some block its use regardless. These restrictions are part of an overall effort to prevent or restrict spam emanating from the ISP's domain.
    Something to try.
    Go to Mail > Preferences > Accounts and under the Account Information tab for your .Mac account preferences at the SMTP server selection, select the Server Settings button below. Enter 587 in place of 25 in the Server Port field and when finished, select OK to save the changed setting.
    Test if this resolves the problem.
    If not and if Sprint provides an email account and SMTP server as part of their monthly service (which they should), you will need to create and select/use Sprint's SMTP server to send mail with your .Mac account which is invisible to all recipients.

  • I only recieve n not able to send text messages,,plz help

    i only recieve n not able to send text messages,,plz help

    Try this: Go to Settings > General > Reset > Reset Network Settings. After that, check if you can already sends SMS

  • I have deleted mail application, pl help

    by mistake I have deleted mail application in my os 10.5.8

    Did you check the Applications folder. Perhaps you just deleted it from the dock.

  • Cannot Send Mail - Error, Need help!

    I can not send e-mail. Error message reads,
    "The recipient "[email protected]"was rejected by the server."
    Initialy I was getting an error message about "Authentication" but when I took User Name and Password for SMTP, that error disappered, but now I'm getting the above message.
    Did anyone figure out the trick to get around this and send e-mails out?
    eMachine Windows XP
    eMachine   Windows XP  

    AlexMaeda,
    This article has more information:
    http://docs.info.apple.com/article.html?artnum=305634
    As for an email provider allowing customers to relay outside of their network, many email providers, set up an authenticating SMTP server on different port. The article above includes information on specifying the port to use.
    For example, .Mac accounts can use port 587 as discussed in this article:
    http://docs.info.apple.com/article.html?artnum=75124
    You may want to check with your email provider if they offer an authenticating smtp server for people who are traveling or using mobile devices. Many do so without any additional cost, some may charge for access to that service.
    Hope this helps,
    Nathan C.

  • Sending mail problem (please help)

    I have downloaded all necessary components javamail-1_2.zip and jaf1_0_1.zip. I included them in my classpath too (activation.jar and mail.jar). I used Exchange Server 2000 as smtp server. But when i try sending an email the message appears like this:
    sending error cannot relay for sending [email protected]
    When i tried the same code in my ISP (www.mycgiserver.com) it work very fine. Here is the code. Where is the problem? Please help me...
    <%
    // Take massege properties
    String mBody = request.getParameter("mBody");
    String from1 = request.getParameter("from");
    String to1 = request.getParameter("to");
    String subject = request.getParameter("subject");
    Properties props = new Properties();
    props.put("ipNo.........:25", "smtp.mail.blah.com");
    Session s = Session.getInstance(props,null);
    Message message = new MimeMessage(s);
    InternetAddress from = new InternetAddress(from1);
    message.setFrom(from);
    InternetAddress to = new InternetAddress(to1);
    message.setRecipient(Message.RecipientType.TO, to);
    message.setText(mBody);
    message.setSubject(subject);
    Transport.send(message);
    %>

    the problem i feel is in your smtp relay and probably not in ur code . some smtp relay servers are configured such that they relay only on authentication or from a specific IP or from a specific subnet mask only to prevent spammers . check out the info on ur local relay server and also see other postings specific on relay ....that shud be of help i guess

  • Ma iphone 3g is very bad with application plz help me :"(

    hi all
    ma iphone is 3g ( 4.0) i mad unlock and jalebreak to it and now many times crashed from application like photos, mails, safary, many games
    what i can solve this problem ?????

    ahaaa
    i mad jalebreake and unlock becoz i traveled to another city now and ma iphone was locked on my city is this illegal or what ???

  • Can't upload anything, cann't even attach somethign to mail..plz help!!???

    suppose, uploading a pic in facebook from hard drive. after i choose the pic or even if do not choose the pic. click on ok of the select picture dialog box. BANG!! the firefox window stops responding.

    You can easily delete your old Website data from your iDisk, and start 'fresh'. In the finder:
    Go/iDisk/My iDisk/Web/Sites/iWeb
    You will see an index.html file and a folder for iWeb. If you highlight these and Command+delete, they will be deleted from your iDisk.
    (BTW, I don't know if you still have the dead HD, but if you do and you feel adventurous, here's an interesting thread on that subject:)
    http://discussions.apple.com/thread.jspa?messageID=2051344&#2051344

  • Unknown exception in sending mail

    Hi,
    I have written a jsp send mail application, but it is giving error that NoSuchProviderException. What to do? Plz help. I m sending the code as below:
    <%@ page import="java.util.*, javax.mail.*,javax.mail.internet.*" %>
    <html>
    <head>
    <title>E-Mail Us</title>
    </head>
    <body bgcolor="white" text="#003399" >
    <%
    if(request.getMethod().equals("POST") )
    boolean status = true;
    String mailServer ="SMTP_HOST";
    String fnm = request.getParameter("fnm");
    String lnm = request.getParameter("lnm");
    String facility = request.getParameter("facility");
    String subject = request.getParameter("select");
    String fromEmail = "[email protected]";
    String toEmail = "[email protected]";
    String bccEmail = "[email protected]";
    String contact =request.getParameter("select2");
    String way =request.getParameter("way");
    String messageEnter = request.getParameter("message");
    try
    Properties props = new Properties();
    props.put("mail.smtp.host", mailServer);
    props.put("mail.smtp.auth", "true");
    Session s = Session.getInstance(props,null);
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new InternetAddress(fromEmail);
    message.setFrom(from);
    InternetAddress to = new InternetAddress(toEmail);
    InternetAddress bcc = new InternetAddress(bccEmail);
    message.addRecipient(Message.RecipientType.TO, to);
    message.addRecipient(Message.RecipientType.BCC, bcc);
    message.setSubject(subject);
    message.setSentDate(new Date());
    message.setText(messageEnter);
    message.setText(way);
    message.setText(contact);
    message.setText(facility);
    message.setText(fnm);
    message.setText(lnm);
    Transport transport = s.getTransport(mailServer);
    transport.connect(mailServer, "USER", "PASSWORD");
    transport.sendMessage(message, message.getAllRecipients());
    transport.close();
    catch(NullPointerException n)
    System.out.println(n.getMessage() );
    out.println(n.getMessage());
    out.println("<br><br><br><br><center><b>"+" ERROR!!!"+"</b></center>");//you need to enter a message"+"</b></center>");
    out.println("<br><br><center><b>"+"You need to Enter a message"+"</b></center>");
    status = false;
    catch (Exception e)
    System.out.println(e.getMessage() );
    out.println("<br><br><br><br><center><b>"+" ERROR!!!"+"</b></center>");
    out.println("<br><br><center><b>"+"Your Message to " + toEmail +" and "+ bccEmail+ " failed, reason is: " + e);
    status = false;
    if (status == true)
    out.println("<br><br><center><b>"+"Your message to " + toEmail +" and "+ bccEmail+ " was sent successfully!"+"</b></center>");
    else
    %>
    <center>
    <h1>Contact Us</h1>
    <form method="post" name="mail" action="mail.jsp">
    <table border="0">
    <tr>
    <td><b>First Name :</b></td>
    <td><input type="text" name="fnm" size=24></td>
    </tr>
    <tr>
    <td><b>Last Name :</b></td>
    <td><input type="text" name="lnm" size=24></td>
    </tr>
    <tr>
    <td><b>Facility :</b></td>
    <td><input type="text" name="facility" size=24></td>
    </tr>
    <tr>
    <td><b>Subject :</b></td>
    <td> <select name="select">
    <option>-------------------------------</option>
    <option>Missing File</option>
    <option>Correction Issue</option>
    <option>Refer Us</option>
    <option>Miscellaneous</option>
    </select></td>
    </tr>
    <p>
    <tr>
    <td><b>Comments :</b></td>
    <td><textarea name="message" rows = "10" cols="50"></textarea></td>
    </tr>
    <tr>
    <td><b>Best way to contact :</b></td>
    <td>
    <select name="select2">
    <option>--------------</option>
    <option>Phone</option>
    <option>Email</option>
    <option>Fax</option>
    </select>
    <input type="text" name="way" size=24></td>
    </tr>
    </table>
    <p>
    <font face="Helvetica"><input type="submit"
    value="Submit" name="Command">
    </font>
    </form></center>
    <%
    %>
    </body>
    </html>unk

    Hi,
    Have you configured the SMTP server settings in the various config files for the new version that you are using? Your log seems to suggest that it is still set to 'mail' which I think is the default.
    I think the minimum you need to do is Essbase, Financial Reporting and Workspace, files as detailed below (paths may vary depending upon platform, windows & tomcat provided below even though it sounds like you've done this before).
    Essbase: C:\Hyperion\AnalyticAdministrationServices\server\ OlapAdmin.properties
    Financial Reporting: C:\Hyperion\BIPlus\lib\ fr_global.properties
    Workspace: log in and select Navigate > Administer > Notifications
    You may also need to restart the related services.
    Hope this helps
    Stuart Game
    www.analitica.co.uk

  • Sending mail adapter from Exchange server

    Hi ,
       I need to configure sender mail adapter which needs to forward the mails comes to the Microsoft Exchange server to XI and then to other application..
    MAIL->XI->SAP System..
      We  are using Microsoft Exchange server to send/receive mails..But we need POP3 url to receive mails ..is it possible to receive mails from the Microsoft Exchange server..
        Can anybody help me to find out the solution..

    Anandan,
    Yes it possiable to send mails from MailServer.
    Configuring the Sender Mail Adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/frameset.htm
    Mail Adapter scenarios – SAP Exchange Infrastructure
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    Mail Adapter (XI) - how to implement dynamic mail address
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    Also refer these links:
    http://www.microsoft.com/exchange/evaluation/compare/ClientCompare.mspx
    http://www.microsoft.com/exchange/evaluation/whatis.mspx
    http://www.trincoll.edu/depts/cc/documentation/email/IMAP_vs_POP/default.htm
    http://www.imap.org/papers/imap.vs.pop.brief.html
    Also please go through these notes:
    804102
    xi 3.0 mail adapter with pop3 user authentication problem
    810238
    XI 3.0 Mail Adapter for POP3 may not report some errors
    Just an additional info "sender mail adapter is to convert e-mails to XI messages"
    Message was edited by:
            Sreeram Reddy

  • Sender Mail Adapter Transport Protocol as SMTP

    Hi,
    i am Working with Mail to File Scenario..
    Done with Whole Process..
    But when i m Sending a mail from SBWP... the mail was sent Successfully sent to the receptint...
    But i m not able to see my message in SXMB_MONI ... and when i check in RWB i got the following error at Sender Communication Channel..
    Can Anyone help me to fix this Error... what might be the problem ?
    1/5/11 1:20:29 PM   mail client job stopped completly
    1/5/11 1:16:27 PM   exception caught during processing mail message; java.net.ConnectException: Connection refused: connect
    1/5/11 1:11:27 PM   exception caught during processing mail message; java.net.ConnectException: Connection refused: connect
    1/5/11 1:06:27 PM   exception caught during processing mail message; java.net.ConnectException: Connection refused: connect
      1/5/11 1:06:26 PM   mail client job scheduled

    Hi Deepthi,
    Try to restart the j2ee engine , Tcode=SMICM by SAP GUI.
    hope it works.
    Also try to chk themailserver security settings , maybe XI is not able to reach it.
    Chk whether theauthentication details for accessing mail box are correct ?
    Connection refused this error generally  occurs when XI is not able to connect .
    maybe some ports are not opened on the firewall
    check if the mail server you are trying to access is running.
    just chk the below link for Configuring the Sender Mail Adapter :-
    http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm
    Regards,
    Rohit

  • Send mail step in local workflow

    Hi Experts,
    I have inserted a send mail step in my local workflow. But while executing the workflow rather than sending mail my workflow stops with status In process in send mail step. In graphical log its displaying as "No agent found" for send mail step. But i have assigned workflow initiator as agent. But other than send mail if i use other steps like user decision or activity in local workflow, wokflows proceeds with execution and sets to status completed. Should i not use send mail in local workflow step?
    Things i have done:
    1. I have mail workflow as general task from PFTC.
    2. Tried with SWU_OBUF
    3. Correctly assigned WF_INITIATOR as expression for send mail.
    Kindly help me in this regard.
    KR,
    S Bharath

    Dear Bakker,
    Sorry for the confusion. In send mail I tried with 2 options,
    1. I directly gave expression as WF_INITIATOR
    2. I created a workflow container element with type SWHACTOR and assigned a user id as initial value.
    In both cases I am not getting send mail icon and status mail sent (one that usually comes for a send mail step in log) but instead i am getting an activity icon displayed with status ready. But there is no agent icon displayed (usually we click this to find the assigned agent). So the status of the workflow remains as In process.
    KR,
    S Bharath

Maybe you are looking for

  • ActiveX and pie chart problem

    I am trying to create a bar of pie chart in Excel 2003. I am able to insert my data and create the chart, but I need to set the "SplitValue" to 6. I was able to find the property for doing this but I get an error when I run the vi (see attached).  An

  • How do I stream music to airport express from my iPhone

    I have installed airport express on my macbook pro and can now play music on my stereo system using itunes from my laptop, but I also ant to steam music from my iphone4 to the stereo as well, I have some radio apps on my iphone four that I would like

  • Regarding ABAP HR

    hi experts, i'm getting small problem in creation of infotype i have created one custom infotype in PA by using table control problem is i have entered  5 rows data for one duration when i'm checking data in overview it showing 5 records for single d

  • Generating an HTML report from two tabs.

    Hi Guys, and sorry if the title is not clear. My situation is like this: I have two tabs for two different conditions. In the first tab, I want generate part of my HTML report regarding the first tab. Then, in the second tab, I want add more details

  • Errors with CFGRIDUPDATE

    When using CFGridUpdate, I get this exception: Error casting an object of type to an incompatible type. This usually indicates a programming error in Java, although it could also mean you have tried to use a foreign object in a different way than it