<div>hi philip</div>
<div>&nbsp;</div>
<div>excelent idea u suggested,i have tried implemented it n yeah it gave me the same result without the use of background step,thanks for the valueable input.</div>
<div>i also wanted to tell you one thing that using that method technique it is not mandatory to make ur step background ,i haven&#39;t used the background step ,still method is working fine with the send mail step</div>

<div>&nbsp;</div>
<div>but really feels good when u learn alternate way to perform same thing</div>
<div>&nbsp;</div>
<div>thanks a lot</div>
<div>&nbsp;</div>
<div>best regardsa</div>
<div>ashish<br><br>&nbsp;</div>
<div><span class="gmail_quote">On 3/1/08, <b class="gmail_sendername">Philip Kisloff</b> &lt;<a href="mailto:pkisloff@tiscali.co.uk">pkisloff@tiscali.co.uk</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Hi Ashish<br><br>I understand your requirement is to send e-mails to people attached to a<br>particular position or work center, retrieved from a custom table. You&#39;ve<br>
successfully created a method to retrieve the email address to be used with<br>a subsequent sendmail step&#39;s import elements ADRESSSTRINGS with TYPEID set<br>to &quot;U&quot;.<br><br>All I was doing was pointing out that a separate background step is not<br>
necessary if you use a workitem exit in the sendmail step. The example code<br>I gave uses as import element the user ID (called Recipient), but you should<br>change the code to use the import element(s) of the method you created. The<br>
call to BAPI_GET_DETAIL also needs to be change to what you have in custom<br>method, but with the same end result (email address) exported to import<br>element ADDRESSSTRINGS.<br><br>It&#39;s more efficient this way, but if I&#39;ve come too late with the suggestion,<br>
using a prior background step as you&#39;ve done already is cool.<br><br>Phil<br><br>-----Original Message-----<br>From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> [mailto:<a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a>] On Behalf Of<br>
Ashish Nagpal<br>Sent: 01 March 2008 07:16<br>To: SAP Workflow Users&#39; Group<br>Subject: Re: Send mail step<br><br>hi philip<br><br>well like your idea...but to tell you first i had the necessity of<br>identifying the person at run time to whom i was trying to send the<br>
mail..may be if i knew the person before hand then it would have been<br>perfect to call from workflow container and just send the mail to an<br>id.<br><br>what say??????<br><br>On 2/29/08, Kisloff, Philip B &lt;<a href="mailto:Philip.Kisloff@astrazeneca.com">Philip.Kisloff@astrazeneca.com</a>&gt; wrote:<br>
&gt; Hi Ashish<br>&gt;<br>&gt; Have you thought of using a workflow exit? It saves creating a step.<br>Here&#39;s<br>&gt; an example that takes &quot;Recipient&quot; as a userID from the workflow container<br>&gt; element, but you can use something else to cross check your custom table.<br>
&gt;<br>&gt; Regards<br>&gt;<br>&gt; Phil<br>&gt;<br>&gt; method if_swf_ifs_workitem_exit~event_raised .<br>&gt;<br>&gt;&nbsp;&nbsp;constants:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;c_pos_ref_element_name type swfdname value &#39;Recipient&#39;.<br>&gt;<br>&gt;&nbsp;&nbsp;data: lh_container type ref to if_swf_ifs_parameter_container.<br>
&gt;<br>&gt;&nbsp;&nbsp;data:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;ws_return type bapiret2,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;lt_return type standard table of bapiret2.<br>&gt;<br>&gt;&nbsp;&nbsp;data:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;ls_userid&nbsp;&nbsp;&nbsp;&nbsp;type xubname,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;ls_address&nbsp;&nbsp; type bapiaddr3,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;ls_retcode&nbsp;&nbsp; type i.<br>
&gt;<br>&gt;&nbsp;&nbsp;case im_event_name.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;when if_swf_ifs_workitem_exit~c_evttyp_before_create.<br>&gt;<br>&gt; * Get WorkFlow container<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; lh_container = im_workitem_context-&gt;get_wf_container( ).<br>
&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call method lh_container-&gt;get<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exporting<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name&nbsp;&nbsp;= c_pos_ref_element_name<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;importing<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value = ls_userid.<br>
&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_root.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;endtry.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call function &#39;BAPI_USER_GET_DETAIL&#39;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exporting<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;username = ls_userid<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;importing<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;address&nbsp;&nbsp;= ls_address<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tables<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;&nbsp; = lt_return.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;read table lt_return into ws_return index 1.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;check ws_return-type &lt;&gt; &#39;E&#39;.<br>&gt;<br>&gt; * Get WorkItem container<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;lh_container = im_workitem_context-&gt;get_wi_container( ).<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call method lh_container-&gt;set<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exporting<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = &#39;AddressStrings&#39;<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= ls_address-e_mail<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;importing<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;returncode = ls_retcode.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_swf_cnt_cont_access_denied.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_swf_cnt_elem_access_denied.<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_swf_cnt_elem_not_found.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_swf_cnt_elem_type_conflict.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_swf_cnt_unit_type_conflict.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_swf_cnt_elem_def_invalid.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch cx_swf_cnt_container.<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;endtry.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call method lh_container-&gt;set<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exporting<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = &#39;TypeID&#39;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &#39;U&#39;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;importing<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;returncode = ls_retcode.<br>
&gt;&nbsp;&nbsp;endcase.<br>&gt; endmethod.<br>&gt;<br>&gt; -----Original Message-----<br>&gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> [mailto:<a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a>]On Behalf Of<br>
&gt; Ashish Nagpal<br>&gt; Sent: 29 February 2008 12:02<br>&gt; To: SAP Workflow Users&#39; Group<br>&gt; Subject: Re: Send mail step<br>&gt;<br>&gt;<br>&gt; hi vindo<br>&gt;<br>&gt; problem solved,i created my own method and call custom fm in it and it<br>
&gt; solved my entire purpose<br>&gt;<br>&gt; thanks for helping out<br>&gt;<br>&gt; regards<br>&gt; ashish<br>&gt;<br>&gt;<br>&gt; On 2/29/08, Vinod Viswanathan &lt; <a href="mailto:Vinod.Viswanathan@in.fujitsu.com">Vinod.Viswanathan@in.fujitsu.com</a>&gt; wrote:<br>
&gt;<br>&gt; Hi Ashish,<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Its a custom FM and not a standard FM so it wont make sense for me to<br>&gt; give to the name of the FM because I created it and will not be available<br>in<br>&gt; your system.&nbsp;&nbsp;You have to create a Function Module using SE37 instead of<br>
&gt; your report and add your logic for fetching email addresses.&nbsp;&nbsp;Then create<br>&gt; your BOR method using this FM.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; I think you must go through some basic documentation of how to use a<br>BOR<br>&gt; method and how to bind values from the workflow to the method.&nbsp;&nbsp;As of now,<br>
&gt; Create input and output parameter for the method linked to the FM and then<br>&gt; pass values from and to the Standard Task by binding the variables.<br>&gt;<br>&gt;<br>&gt; Best Regards,<br>&gt; Vinod Viswanathan<br>
&gt; Workflow Consultant<br>&gt; Fujitsu Consulting - Pune<br>&gt; Phone: +91 20 40722000 Extn:2370<br>&gt;<br>&gt;<br>&gt;<br>&gt;&nbsp;&nbsp; _____<br>&gt;<br>&gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> [mailto: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a>] On Behalf<br>
Of<br>&gt; Ashish Nagpal<br>&gt; Sent: Friday, February 29, 2008 7:43 AM<br>&gt;<br>&gt; To: SAP Workflow Users&#39; Group<br>&gt; Subject: Re: Send mail step<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; HI Vinod<br>&gt;<br>&gt; thanks once again for the reply,can you please tell me which custom FM u<br>
&gt; used for ur purpose,in my case i have enhanced my object type and created<br>a<br>&gt; new method which will serve my purpose and rest of the part is same as u r<br>&gt; saying,in my case i am retrieving email id from table AD_SMTPADR,but i<br>
have<br>&gt; one problem with the method i have created ,i get the value into the<br>&gt; container of method,but can u please tell me how should i set the value<br>&gt; which i am getting when giving the input.<br>&gt;<br>
&gt; i am using a report in the method so that whenever i give customer id i<br>will<br>&gt; get his/her email id ,the entries of which i have maintained in my Z<br>table.<br>&gt;<br>&gt; please clear as much as possible<br>
&gt;<br>&gt; thanks once again<br>&gt; best regards<br>&gt; ashish<br>&gt;<br>&gt;<br>&gt; 2008/2/26 Vinod Viswanathan &lt; <a href="mailto:Vinod.Viswanathan@in.fujitsu.com">Vinod.Viswanathan@in.fujitsu.com</a>&gt;:<br>&gt;<br>
&gt;<br>&gt; Hi Ashish,<br>&gt;<br>&gt; 1.&nbsp;&nbsp;I have been using a custom FM so far.&nbsp;&nbsp;May be relevant for you too<br>&gt; because i believe these email ids are being stored in some custom table in<br>&gt; your case.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Do let me know if there is a method that works better and gives<br>
better<br>&gt; efficiency.<br>&gt;<br>&gt; 2.&nbsp;&nbsp;u need to create a BOR method using this FM... bind the import export<br>&gt; parameters of the method. Create a task. Then bind the workflow and the<br>task<br>&gt; parameters.<br>
&gt;<br>&gt; Hope this helps.<br>&gt;<br>&gt; Best Regards,<br>&gt; Vinod Viswanathan<br>&gt; Workflow Consultant<br>&gt; Fujitsu Consulting - Pune<br>&gt; Phone: +91 20 40722000 Extn:2370<br>&gt;<br>&gt;<br>&gt;<br>&gt;&nbsp;&nbsp; _____<br>
&gt;<br>&gt;<br>&gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> [mailto: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a>] On Behalf<br>Of<br>&gt; Ashish Nagpal<br>&gt;<br>
&gt; Sent: Tuesday, February 26, 2008 1:32 PM<br>&gt;<br>&gt; To: SAP Workflow Users&#39; Group<br>&gt; Subject: Re: Send mail step<br>&gt;<br>&gt;<br>&gt;<br>&gt; hi vinod<br>&gt;<br>&gt; thanks for the reply,yeah it was relevant ,one more thing i want to ask if<br>
&gt; you could please explain:<br>&gt;<br>&gt; 1. how to fetch those email ids to internal table,do i need to make my own<br>&gt; function module<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; or is there any standard like rh_get_structure i can use.<br>&gt;<br>
&gt; 2. secondly,how to pass this internal table to workflow container.<br>&gt;<br>&gt; if you can please explain these steps,i have a little confusion over it .<br>&gt;<br>&gt; thanks a lot<br>&gt;<br>&gt; regards<br>&gt; ashish<br>
&gt;<br>&gt;<br>&gt; On 2/26/08, Vinod Viswanathan &lt; <a href="mailto:Vinod.Viswanathan@in.fujitsu.com">Vinod.Viswanathan@in.fujitsu.com</a>&gt; wrote:<br>&gt;<br>&gt; Hi Ashish,<br>&gt;<br>&gt; give the recipient type as U (email address) in the mail tab of the send<br>
&gt; mail step.<br>&gt;<br>&gt; you can fetch email addresses in an internal table and pass it to the<br>&gt; workflow container.<br>&gt;<br>&gt; this table can be passed as expression and the email will go to the<br>external<br>
&gt; email ids.<br>&gt;<br>&gt; please let me know if this solution was relevant to your question.<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; Best Regards,<br>&gt; Vinod Viswanathan<br>&gt; Workflow Consultant<br>&gt; Fujitsu Consulting - Pune<br>
&gt; Phone: +91 20 40722000 Extn:2370<br>&gt;<br>&gt;<br>&gt;&nbsp;&nbsp; _____<br>&gt;<br>&gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> [mailto: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a>] On Behalf<br>
Of<br>&gt; Ashish Nagpal<br>&gt; Sent: Tuesday, February 26, 2008 7:33 AM<br>&gt; To: SAP Workflow Users&#39; Group<br>&gt; Subject: Re: Send mail step<br>&gt;<br>&gt;<br>&gt;<br>&gt; hi vinod<br>&gt; can you please elaborate on what u said &quot;Change the type to &#39;U&#39; in the<br>
send<br>&gt; mail step&quot;<br>&gt;<br>&gt; it will be so nice of you<br>&gt;<br>&gt; thanks a lot<br>&gt;<br>&gt; regards<br>&gt; ashish<br>&gt;<br>&gt;<br>&gt; On Tue, Feb 26, 2008 at 5:43 AM, &lt; <a href="mailto:kaukabr@yahoo.com">kaukabr@yahoo.com</a>&gt; wrote:<br>
&gt;<br>&gt;<br>&gt; Depends on your address strings, notification is an<br>&gt; e-mail FYI hope you will be using send description<br>&gt; method.<br>&gt; Regards<br>&gt; AZ<br>&gt; --- &quot;Devireddy Swathi (Dataflo)&quot;<br>
&gt;<br>&gt; &lt; <a href="mailto:devireddy.swathi@dataflo.co.za">devireddy.swathi@dataflo.co.za</a>&gt; wrote:<br>&gt;<br>&gt; &gt; Hi,<br>&gt; &gt;<br>&gt; &gt; My requirement is to send e-mails to people attached<br>&gt; &gt; to a particular<br>
&gt; &gt; position or work center.<br>&gt; &gt;<br>&gt; &gt; And I retrieve them from a custom table.<br>&gt; &gt;<br>&gt; &gt; Can I use a standard mail step to send e-mails by<br>&gt; &gt; giving an expression<br>&gt; &gt; and sending it to them.<br>
&gt; &gt;<br>&gt; &gt; But this actually sends a notification and not an<br>&gt; &gt; e-mail.<br>&gt; &gt;<br>&gt; &gt; Is there a background job which converts these<br>&gt; &gt; notifications to e-mails<br>&gt; &gt; by fetching corresponding users attached to the<br>
&gt; &gt; position/workcenter<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Thanks &amp; Regards<br>&gt; &gt;<br>&gt; &gt; Swathi Devireddy<br>&gt; &gt;<br>&gt; &gt; Coke SCALE<br>&gt; &gt;<br>
&gt; &gt; Satyam Computer Services Ltd<br>&gt; &gt;<br>&gt; &gt; * : +27 745024070<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt;<br>----------------------------------------------------------------------------<br>
----<br>&gt; &gt;<br>&gt; &gt; This email and all contents are subject to the<br>&gt; &gt; following disclaimer:<br>&gt; &gt;<br>&gt; &gt; &quot; <a href="http://www.dataflo.co.za/emaildisclaimer.htm">http://www.dataflo.co.za/emaildisclaimer.htm</a>&quot;<br>
&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt;<br>&gt;<br>----------------------------------------------------------------------------<br>----<br>&gt; &gt; &gt; _______________________________________________<br>&gt; &gt; SAP-WUG mailing list<br>
&gt; &gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>&gt; &gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt; &gt;<br>&gt;<br>&gt; _______________________________________________<br>
&gt; SAP-WUG mailing list<br>&gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>&gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt;<br>&gt;<br>
&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt; life is all about the moments that take ur heart away<br>&gt;<br>&gt; _______________________________________________<br>&gt; SAP-WUG mailing list<br>&gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>
&gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt; life is all about the moments that take ur heart away<br>
&gt;<br>&gt; _______________________________________________<br>&gt; SAP-WUG mailing list<br>&gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>&gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>
&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt; life is all about the moments that take ur heart away<br>&gt;<br>&gt; _______________________________________________<br>&gt; SAP-WUG mailing list<br>&gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>
&gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt; life is all about the moments that take ur heart away<br>
&gt;<br>&gt;<br><br><br>--<br>life is all about the moments that take ur heart away<br>_______________________________________________<br>SAP-WUG mailing list<br><a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br><a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>
<br>_______________________________________________<br>SAP-WUG mailing list<br><a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br><a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">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