<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ALE - Notification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ale-notification/m-p/3682330#M886735</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sushmitha,&lt;/P&gt;&lt;P&gt;Before ending of the function module check for the success or not .If Success ,create an Enchancement Spot and  use FUNCTION &lt;STRONG&gt;RS_SEND_MAIL_FOR_SPOOLLIST&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;If UNIX is being used, you may send a report to any internet mail with the following: &lt;/P&gt;&lt;P&gt;REPORT ZSNDMAIL.&lt;/P&gt;&lt;P&gt;DATA: COMND (200) type c.&lt;/P&gt;&lt;P&gt;DATA: RESULT (200) type c occurs 100 with header line.&lt;/P&gt;&lt;P&gt;PARAMETERS: FILE (60) type c lower case default '/sapdata/sd_outbound/testmail.dat'.&lt;/P&gt;&lt;P&gt;PARAMETERS: SUBJECT (60) type c lower case. &lt;/P&gt;&lt;P&gt;PARAMETERS: EMAIL (60) type c lower case.&lt;/P&gt;&lt;P&gt;INITIALIZATION. &lt;/P&gt;&lt;P&gt;TRANSLATE EMAIL TO LOWER CASE.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;TRANSLATE EMAIL TO LOWER CASE. &lt;/P&gt;&lt;P&gt;CONCATENATE 'cat' FILE '| elm -s "' subject '"' email into comnd seperated by space. &lt;/P&gt;&lt;P&gt;CALL 'SYSTEM' ID 'COMMAND' FIELD comnd 'TAB' FIELD UNIX_RESULTS-&lt;STRONG&gt;SYS&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;Loop at Results. &lt;/P&gt;&lt;P&gt;write: /1 results. &lt;/P&gt;&lt;P&gt;endloop &lt;/P&gt;&lt;P&gt;end-of-selection.  &lt;/P&gt;&lt;P&gt;I hope so it will resolve ur problem .Please let me know if u have any queries &lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Sree m&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2008 07:17:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-16T07:17:44Z</dc:date>
    <item>
      <title>ALE - Notification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ale-notification/m-p/3682329#M886734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody please tell me how to send notification (mail) after every successful data transfer using ALE ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sushmitha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sushmitha S on Apr 16, 2008 7:59 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 09:48:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ale-notification/m-p/3682329#M886734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T09:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: ALE - Notification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ale-notification/m-p/3682330#M886735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sushmitha,&lt;/P&gt;&lt;P&gt;Before ending of the function module check for the success or not .If Success ,create an Enchancement Spot and  use FUNCTION &lt;STRONG&gt;RS_SEND_MAIL_FOR_SPOOLLIST&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;If UNIX is being used, you may send a report to any internet mail with the following: &lt;/P&gt;&lt;P&gt;REPORT ZSNDMAIL.&lt;/P&gt;&lt;P&gt;DATA: COMND (200) type c.&lt;/P&gt;&lt;P&gt;DATA: RESULT (200) type c occurs 100 with header line.&lt;/P&gt;&lt;P&gt;PARAMETERS: FILE (60) type c lower case default '/sapdata/sd_outbound/testmail.dat'.&lt;/P&gt;&lt;P&gt;PARAMETERS: SUBJECT (60) type c lower case. &lt;/P&gt;&lt;P&gt;PARAMETERS: EMAIL (60) type c lower case.&lt;/P&gt;&lt;P&gt;INITIALIZATION. &lt;/P&gt;&lt;P&gt;TRANSLATE EMAIL TO LOWER CASE.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;TRANSLATE EMAIL TO LOWER CASE. &lt;/P&gt;&lt;P&gt;CONCATENATE 'cat' FILE '| elm -s "' subject '"' email into comnd seperated by space. &lt;/P&gt;&lt;P&gt;CALL 'SYSTEM' ID 'COMMAND' FIELD comnd 'TAB' FIELD UNIX_RESULTS-&lt;STRONG&gt;SYS&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;Loop at Results. &lt;/P&gt;&lt;P&gt;write: /1 results. &lt;/P&gt;&lt;P&gt;endloop &lt;/P&gt;&lt;P&gt;end-of-selection.  &lt;/P&gt;&lt;P&gt;I hope so it will resolve ur problem .Please let me know if u have any queries &lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Sree m&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 07:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ale-notification/m-p/3682330#M886735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T07:17:44Z</dc:date>
    </item>
  </channel>
</rss>

