<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">


<META content="MSHTML 6.00.2800.1578" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008>Hi 
Ashish</SPAN></FONT></DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008>Have you thought 
of using a workflow exit? It saves creating a step. Here's an example 
that&nbsp;takes "Recipient" as a userID from the workflow container element, but 
you can&nbsp;use something else to cross check your&nbsp;custom 
table.</SPAN></FONT></DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>Regards</SPAN></FONT></DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>Phil</SPAN></FONT></DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008>method 
if_swf_ifs_workitem_exit~event_raised .</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;constants:<BR>&nbsp;&nbsp; c_pos_ref_element_name 
type swfdname value 'Recipient'.</SPAN></FONT></DIV>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008><BR>&nbsp;data: 
lh_container type ref to if_swf_ifs_parameter_container.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;data:<BR>&nbsp;&nbsp; ws_return type 
bapiret2,<BR>&nbsp;&nbsp; lt_return type standard table of 
bapiret2.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;data:<BR>&nbsp;&nbsp; ls_userid&nbsp;&nbsp;&nbsp; 
type xubname,<BR>&nbsp;&nbsp; ls_address&nbsp;&nbsp; type 
bapiaddr3,<BR>&nbsp;&nbsp; ls_retcode&nbsp;&nbsp; type i.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008>&nbsp;case 
im_event_name.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008>&nbsp;&nbsp; when 
if_swf_ifs_workitem_exit~c_evttyp_before_create.</SPAN></FONT></DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008></SPAN></FONT><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008>* Get WorkFlow 
container&nbsp;</SPAN></FONT></DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp; lh_container = 
im_workitem_context-&gt;get_wf_container( ).</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp;&nbsp; 
try.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; call method 
lh_container-&gt;get<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
exporting<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
name&nbsp; = 
c_pos_ref_element_name<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
importing<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
value = ls_userid.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_root.<BR>&nbsp;&nbsp;&nbsp;&nbsp; endtry.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp;&nbsp; call function 
'BAPI_USER_GET_DETAIL'<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
exporting<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; username = 
ls_userid<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
importing<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; address&nbsp; = 
ls_address<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
tables<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return&nbsp;&nbsp; = 
lt_return.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp;&nbsp; read table lt_return into 
ws_return index 1.<BR>&nbsp;&nbsp;&nbsp;&nbsp; check ws_return-type &lt;&gt; 
'E'.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN class=274114714-29022008>* Get WorkItem 
container<BR>&nbsp;&nbsp;&nbsp;&nbsp; lh_container = 
im_workitem_context-&gt;get_wi_container( ).</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp;&nbsp; 
try.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; call method 
lh_container-&gt;set<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
exporting<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 
'AddressStrings'<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
value&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 
ls_address-e_mail<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
importing<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
returncode = ls_retcode.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_swf_cnt_cont_access_denied.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_swf_cnt_elem_access_denied.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_swf_cnt_elem_not_found.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_swf_cnt_elem_type_conflict.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_swf_cnt_unit_type_conflict.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_swf_cnt_elem_def_invalid.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch 
cx_swf_cnt_container.<BR>&nbsp;&nbsp;&nbsp;&nbsp; endtry.</SPAN></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2><SPAN 
class=274114714-29022008>&nbsp;&nbsp;&nbsp;&nbsp; call method 
lh_container-&gt;set<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
exporting<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 
'TypeID'<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
value&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 
'U'<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
importing<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; returncode = 
ls_retcode.<BR>&nbsp;endcase.<BR>endmethod. </SPAN></FONT></DIV>
<BLOCKQUOTE>
  <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
  size=2>-----Original Message-----<BR><B>From:</B> sap-wug-bounces@mit.edu 
  [mailto:sap-wug-bounces@mit.edu]<B>On Behalf Of </B>Ashish 
  Nagpal<BR><B>Sent:</B> 29 February 2008 12:02<BR><B>To:</B> SAP Workflow 
  Users' Group<BR><B>Subject:</B> Re: Send mail step<BR><BR></FONT></DIV>
  <DIV>hi vindo</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>problem solved,i created my own method and call custom fm in it and it 
  solved my entire purpose</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>thanks for helping out</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>regards</DIV>
  <DIV>ashish<BR><BR>&nbsp;</DIV>
  <DIV><SPAN class=gmail_quote>On 2/29/08, <B class=gmail_sendername>Vinod 
  Viswanathan</B> &lt;<A 
  href="mailto:Vinod.Viswanathan@in.fujitsu.com">Vinod.Viswanathan@in.fujitsu.com</A>&gt; 
  wrote:</SPAN> 
  <BLOCKQUOTE class=gmail_quote 
  style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
    <DIV>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>Hi 
    Ashish,</FONT></SPAN></DIV>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
    size=2></FONT></SPAN>&nbsp;</DIV>
    <DIV dir=ltr align=left><SPAN>&nbsp;&nbsp;&nbsp; <FONT face=Arial 
    color=#0000ff size=2>Its a custom FM and not a standard FM so it wont make 
    sense for me to give to the name of the FM because I created it and will not 
    be available in your system.&nbsp; You have to create a Function Module 
    using SE37 instead of your report and add your logic for fetching email 
    addresses.&nbsp; Then create your BOR method using this FM.&nbsp; 
    </FONT></SPAN></DIV>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
    size=2></FONT></SPAN>&nbsp;</DIV>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
    size=2>&nbsp;&nbsp;&nbsp; I think you must go through some basic 
    documentation of how to use a BOR method and how to bind values from the 
    workflow to the method.&nbsp; As of now, Create input and output parameter 
    for the method linked to the FM and then pass values from and to the 
    Standard Task by binding the variables.</FONT></SPAN></DIV><SPAN class=q>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
    size=2></FONT></SPAN>&nbsp;</DIV>
    <DIV dir=ltr align=left><EM><FONT color=#800000 size=2>Best 
    Regards,</FONT></EM></DIV>
    <DIV align=left><EM><FONT color=#800000 size=2>Vinod 
    Viswanathan</FONT></EM></DIV>
    <DIV align=left><EM><FONT color=#800000 size=2>Workflow 
    Consultant</FONT></EM></DIV>
    <DIV align=left><EM><FONT color=#800000 size=2>Fujitsu Consulting - 
    Pune</FONT></EM></DIV>
    <DIV align=left><EM><FONT color=#800000 size=2>Phone: +91 20 40722000 
    Extn:2370</FONT></EM></DIV>
    <DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV><EM><FONT 
    color=#800000 size=2></FONT></EM><EM><FONT color=#800000 
    size=2></FONT></EM><BR></SPAN>
    <DIV lang=en-us dir=ltr align=left>
    <HR>
    <FONT face=Tahoma size=2><SPAN class=q><B>From:</B> <A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:sap-wug-bounces@mit.edu" 
    target=_blank>sap-wug-bounces@mit.edu</A> [mailto:<A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:sap-wug-bounces@mit.edu" 
    target=_blank>sap-wug-bounces@mit.edu</A>] <B>On Behalf Of </B>Ashish 
    Nagpal<BR></SPAN><B>Sent:</B> Friday, February 29, 2008 7:43 AM 
    <DIV><SPAN class=e id=q_11864ee6c60a90a1_5><BR><B>To:</B> SAP Workflow 
    Users' Group<BR><B>Subject:</B> Re: Send mail 
    step<BR></SPAN></DIV></FONT><BR>&nbsp;</DIV>
    <DIV><SPAN class=e id=q_11864ee6c60a90a1_7>
    <DIV></DIV>HI Vinod<BR><BR>thanks once again for the reply,can you please 
    tell me which custom FM u used for ur purpose,in my case i have enhanced my 
    object type and created a new method which will serve my purpose and rest of 
    the part is same as u r saying,in my case i am retrieving email id from 
    table AD_SMTPADR,but i have one problem with the method i have created ,i 
    get the value into the container of method,but can u please tell me how 
    should i set the value which i am getting when giving the input.<BR><BR>i am 
    using a report in the method so that whenever i give customer id i will get 
    his/her email id ,the entries of which i have maintained in my Z 
    table.<BR><BR>please clear as much as possible<BR><BR>thanks once 
    again<BR>best regards<BR>ashish<BR><BR>
    <DIV class=gmail_quote>2008/2/26 Vinod Viswanathan &lt;<A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:Vinod.Viswanathan@in.fujitsu.com" 
    target=_blank>Vinod.Viswanathan@in.fujitsu.com</A>&gt;:<BR>
    <BLOCKQUOTE class=gmail_quote 
    style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">
      <DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>Hi 
      Ashish,</FONT></SPAN></DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
      size=2>1.&nbsp; I have been using a custom FM so far.&nbsp; May be 
      relevant for you too because i believe these email ids are being stored in 
      some custom table in your case. </FONT></SPAN></DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
      size=2>&nbsp;&nbsp;&nbsp;&nbsp; Do let me know 
      if&nbsp;</FONT></SPAN><SPAN><FONT face=Arial color=#0000ff size=2>there is 
      a method that works better and gives better efficiency.&nbsp; 
      </FONT></SPAN></DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
      size=2>2.&nbsp; u need to create a&nbsp;BOR method using this 
      FM...&nbsp;bind the import export parameters of the method. Create a 
      task</FONT></SPAN><SPAN><FONT face=Arial color=#0000ff 
      size=2>.</FONT></SPAN><SPAN><FONT face=Arial color=#0000ff size=2> Then 
      bind the workflow and the task parameters.&nbsp;&nbsp; 
</FONT></SPAN></DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>Hope 
      this helps.</FONT></SPAN></DIV>
      <DIV>
      <DIV dir=ltr align=left><SPAN></SPAN><SPAN></SPAN><FONT face=Arial 
      color=#0000ff size=2></FONT>&nbsp;</DIV>
      <DIV align=left><I><FONT color=#800000 size=2>Best 
      Regards,</FONT></I></DIV>
      <DIV align=left><I><FONT color=#800000 size=2>Vinod 
      Viswanathan</FONT></I></DIV>
      <DIV align=left><I><FONT color=#800000 size=2>Workflow 
      Consultant</FONT></I></DIV>
      <DIV align=left><I><FONT color=#800000 size=2>Fujitsu Consulting - 
      Pune</FONT></I></DIV>
      <DIV align=left><I><FONT color=#800000 size=2>Phone: +91 20 40722000 
      Extn:2370</FONT></I></DIV>
      <DIV>&nbsp;</DIV><BR>&nbsp;</DIV>
      <DIV lang=en-us dir=ltr align=left>
      <HR>
      <FONT face=Tahoma size=2>
      <DIV><B>From:</B> <A 
      onclick="return top.js.OpenExtLink(window,event,this)" 
      href="mailto:sap-wug-bounces@mit.edu" 
      target=_blank>sap-wug-bounces@mit.edu</A> [mailto:<A 
      onclick="return top.js.OpenExtLink(window,event,this)" 
      href="mailto:sap-wug-bounces@mit.edu" 
      target=_blank>sap-wug-bounces@mit.edu</A>] <B>On Behalf Of </B>Ashish 
      Nagpal<BR>&nbsp;</DIV><B>Sent:</B> Tuesday, February 26, 2008 1:32 PM 
      <DIV>
      <DIV></DIV>
      <DIV><BR><B>To:</B> SAP Workflow Users' Group<BR><B>Subject:</B> Re: Send 
      mail step<BR>&nbsp;</DIV></DIV></FONT><BR>&nbsp;</DIV>
      <DIV>
      <DIV></DIV>
      <DIV>
      <DIV></DIV>
      <DIV>hi vinod</DIV>
      <DIV>&nbsp;</DIV>
      <DIV>thanks for the reply,yeah it was relevant ,one more thing i want to 
      ask if you could please explain:</DIV>
      <DIV>&nbsp;</DIV>
      <DIV>1. how to fetch those email ids to internal table,do i need to make 
      my own function module </DIV>
      <DIV>&nbsp;&nbsp;&nbsp; or is there any standard like rh_get_structure i 
      can use.</DIV>
      <DIV>&nbsp;</DIV>
      <DIV>2. secondly,how to pass this internal table to workflow 
      container.</DIV>
      <DIV>&nbsp;</DIV>
      <DIV>if you can please explain these steps,i have a little confusion over 
      it .</DIV>
      <DIV>&nbsp;</DIV>
      <DIV>thanks a lot</DIV>
      <DIV>&nbsp;</DIV>
      <DIV>regards</DIV>
      <DIV>ashish<BR><BR>&nbsp;</DIV>
      <DIV><SPAN class=gmail_quote>On 2/26/08, <B class=gmail_sendername>Vinod 
      Viswanathan</B> &lt;<A 
      onclick="return top.js.OpenExtLink(window,event,this)" 
      href="mailto:Vinod.Viswanathan@in.fujitsu.com" 
      target=_blank>Vinod.Viswanathan@in.fujitsu.com</A>&gt; wrote:</SPAN> 
      <BLOCKQUOTE class=gmail_quote 
      style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">
        <DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>Hi 
        Ashish,</FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2></FONT></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>give 
        the recipient type as U (email address) in the mail tab of the <B>send 
        mail</B> step.</FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2></FONT></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>you 
        can fetch email addresses in an internal table and pass it to the 
        workflow container.</FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2></FONT></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>this 
        table can be passed as expression and the email will go to the external 
        email ids.&nbsp; </FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2></FONT></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2>please let me know if this solution was relevant to your 
        question.</FONT></SPAN></DIV><SPAN>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2></FONT></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN></SPAN></DIV>
        <DIV><FONT color=#0000ff size=2></FONT>&nbsp;</DIV>
        <DIV align=left><I><FONT color=#800000 size=2>Best 
        Regards,</FONT></I></DIV>
        <DIV align=left><I><FONT color=#800000 size=2>Vinod 
        Viswanathan</FONT></I></DIV>
        <DIV align=left><I><FONT color=#800000 size=2>Workflow 
        Consultant</FONT></I></DIV>
        <DIV align=left><I><FONT color=#800000 size=2>Fujitsu Consulting - 
        Pune</FONT></I></DIV>
        <DIV align=left><I><FONT color=#800000 size=2>Phone: +91 20 40722000 
        Extn:2370</FONT></I></DIV>
        <DIV>&nbsp;</DIV><BR></SPAN>
        <DIV lang=en-us dir=ltr align=left>
        <HR>
        <FONT face=Tahoma size=2><B>From:</B> <A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:sap-wug-bounces@mit.edu" 
        target=_blank>sap-wug-bounces@mit.edu</A> [mailto:<A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:sap-wug-bounces@mit.edu" 
        target=_blank>sap-wug-bounces@mit.edu</A>] <B>On Behalf Of </B>Ashish 
        Nagpal<BR><B>Sent:</B> Tuesday, February 26, 2008 7:33 AM<BR><B>To:</B> 
        SAP Workflow Users' Group<BR><B>Subject:</B> Re: Send mail 
        step<BR></FONT><BR>&nbsp;</DIV>
        <DIV><SPAN>
        <DIV></DIV>hi vinod<BR>can you please elaborate on what u said 
        "<SPAN><FONT face=Arial color=#0000ff size=2>Change the type to 'U' in 
        the send mail step"<BR><BR>it will be so nice of you<BR><BR>thanks a 
        lot<BR><BR>regards<BR>ashish<BR></FONT></SPAN><BR>
        <DIV class=gmail_quote>On Tue, Feb 26, 2008 at 5:43 AM, &lt;<A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:kaukabr@yahoo.com" target=_blank>kaukabr@yahoo.com</A>&gt; 
        wrote:<BR>
        <BLOCKQUOTE class=gmail_quote 
        style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">Depends 
          on your address strings, notification is an<BR>e-mail FYI hope you 
          will be using send description<BR>method.<BR>Regards<BR>AZ<BR>--- 
          "Devireddy Swathi (Dataflo)"<BR>
          <DIV>
          <DIV></DIV>
          <DIV>&lt;<A onclick="return top.js.OpenExtLink(window,event,this)" 
          href="mailto:devireddy.swathi@dataflo.co.za" 
          target=_blank>devireddy.swathi@dataflo.co.za</A>&gt; 
          wrote:<BR><BR>&gt; Hi,<BR>&gt;<BR>&gt; My requirement is to send 
          e-mails to people attached<BR>&gt; to a particular<BR>&gt; position or 
          work center.<BR>&gt;<BR>&gt; And I retrieve them from a custom 
          table.<BR>&gt;<BR>&gt; Can I use a standard mail step to send e-mails 
          by<BR>&gt; giving an expression<BR>&gt; and sending it to 
          them.<BR>&gt;<BR>&gt; But this actually sends a notification and not 
          an<BR>&gt; e-mail.<BR>&gt;<BR>&gt; Is there a background job which 
          converts these<BR>&gt; notifications to e-mails<BR>&gt; by fetching 
          corresponding users attached to the<BR>&gt; 
          position/workcenter<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; 
          Thanks &amp; Regards<BR>&gt;<BR>&gt; Swathi Devireddy<BR>&gt;<BR>&gt; 
          Coke SCALE<BR>&gt;<BR>&gt; Satyam Computer Services 
          Ltd<BR>&gt;<BR>&gt; * : +27 
          745024070<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>--------------------------------------------------------------------------------<BR>&gt;<BR>&gt; 
          This email and all contents are subject to the<BR>&gt; following 
          disclaimer:<BR>&gt;<BR>&gt; "<A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="http://www.dataflo.co.za/emaildisclaimer.htm" 
          target=_blank>http://www.dataflo.co.za/emaildisclaimer.htm</A>"<BR>&gt;<BR>&gt;<BR>&gt;<BR>&nbsp;</DIV></DIV>--------------------------------------------------------------------------------<BR>&gt; 
          &gt; _______________________________________________<BR>&gt; SAP-WUG 
          mailing list<BR>&gt; <A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="mailto:SAP-WUG@mit.edu" 
          target=_blank>SAP-WUG@mit.edu</A><BR>&gt; <A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="http://mailman.mit.edu/mailman/listinfo/sap-wug" 
          target=_blank>http://mailman.mit.edu/mailman/listinfo/sap-wug</A><BR>&gt;<BR><BR>_______________________________________________<BR>SAP-WUG 
          mailing list<BR><A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="mailto:SAP-WUG@mit.edu" target=_blank>SAP-WUG@mit.edu</A><BR><A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="http://mailman.mit.edu/mailman/listinfo/sap-wug" 
          target=_blank>http://mailman.mit.edu/mailman/listinfo/sap-wug</A><BR></BLOCKQUOTE></DIV><BR><BR 
        clear=all><BR>-- <BR>life is all about the moments that take ur heart 
        away 
        </SPAN></DIV></DIV><BR>_______________________________________________<BR>SAP-WUG 
        mailing list<BR><A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:SAP-WUG@mit.edu" target=_blank>SAP-WUG@mit.edu</A><BR><A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="http://mailman.mit.edu/mailman/listinfo/sap-wug" 
        target=_blank>http://mailman.mit.edu/mailman/listinfo/sap-wug</A><BR><BR></BLOCKQUOTE></DIV><BR><BR 
      clear=all><BR>-- <BR>life is all about the moments that take ur heart away 
      </DIV></DIV></DIV><BR>_______________________________________________<BR>SAP-WUG 
      mailing list<BR><A onclick="return top.js.OpenExtLink(window,event,this)" 
      href="mailto:SAP-WUG@mit.edu" target=_blank>SAP-WUG@mit.edu</A><BR><A 
      onclick="return top.js.OpenExtLink(window,event,this)" 
      href="http://mailman.mit.edu/mailman/listinfo/sap-wug" 
      target=_blank>http://mailman.mit.edu/mailman/listinfo/sap-wug</A><BR><BR></BLOCKQUOTE></DIV><BR><BR 
    clear=all><BR>-- <BR>life is all about the moments that take ur heart away 
    </SPAN></DIV></DIV><BR>_______________________________________________<BR>SAP-WUG 
    mailing list<BR><A onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</A><BR><A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="http://mailman.mit.edu/mailman/listinfo/sap-wug" 
    target=_blank>http://mailman.mit.edu/mailman/listinfo/sap-wug</A><BR><BR></BLOCKQUOTE></DIV><BR><BR 
  clear=all><BR>-- <BR>life is all about the moments that take ur heart away 
</BLOCKQUOTE></BODY></HTML>