<?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 send mail through dynamic actions in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146150#M1620912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query in sending mail through dynamics actions . How we can send an mail through dynamics actions .&lt;/P&gt;&lt;P&gt;Actually i call a subroutine in dynamics actions . subroutine is called but mail not send. How could i acheive this &lt;/P&gt;&lt;P&gt;solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Aug 2011 10:28:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-08-29T10:28:34Z</dc:date>
    <item>
      <title>send mail through dynamic actions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146150#M1620912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query in sending mail through dynamics actions . How we can send an mail through dynamics actions .&lt;/P&gt;&lt;P&gt;Actually i call a subroutine in dynamics actions . subroutine is called but mail not send. How could i acheive this &lt;/P&gt;&lt;P&gt;solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 10:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146150#M1620912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-29T10:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: send mail through dynamic actions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146151#M1620913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your code is executed but you never receive the email you may need a COMMIT at the end of your code,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 10:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146151#M1620913</guid>
      <dc:creator>arseni_gallardo</dc:creator>
      <dc:date>2011-08-29T10:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: send mail through dynamic actions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146152#M1620914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When your sub routine is being called successfully, then there could be error in calling the Mail sending function module or in E-mail configuration done by your basis team.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Check sy-subrc after the Mail sending function module call. If it is not equal to "0" problem is in passing correct data to FM.&lt;/P&gt;&lt;P&gt;- If sy-subrc is equal to "0" then go to SCOT transaction and check whether the email you have sent is appearing in that output messages list or not. If it is appearing then contact your basis guys.&lt;/P&gt;&lt;P&gt;- If sy-subrc is equal to "0" and message is not appearing SCOT transaction, then check whether you are submitting RSCONN01 program after mail sending FM call or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      document_data              = w_doc_data&lt;/P&gt;&lt;P&gt;      put_in_outbox              = 'X'&lt;/P&gt;&lt;P&gt;      sender_address             = ld_sender_address&lt;/P&gt;&lt;P&gt;      sender_address_type        = ld_sender_address_type&lt;/P&gt;&lt;P&gt;      commit_work                = 'X'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      sent_to_all                = w_sent_all&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      packing_list               = t_packing_list&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    contents_bin               = t_attachment&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      contents_txt               = it_message&lt;/P&gt;&lt;P&gt;      receivers                  = t_receivers&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      too_many_receivers         = 1&lt;/P&gt;&lt;P&gt;      document_not_sent          = 2&lt;/P&gt;&lt;P&gt;      document_type_not_exist    = 3&lt;/P&gt;&lt;P&gt;      operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;      parameter_error            = 5&lt;/P&gt;&lt;P&gt;      x_error                    = 6&lt;/P&gt;&lt;P&gt;      enqueue_error              = 7&lt;/P&gt;&lt;P&gt;      OTHERS                     = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT rsconn01 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sai Ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 10:41:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146152#M1620914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-29T10:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: send mail through dynamic actions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146153#M1620915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we run subroutine without calling in dynamics actions , then mail will be trigger. Is there any settings required in dynamics actions for sending an mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 10:55:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146153#M1620915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-29T10:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: send mail through dynamic actions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146154#M1620916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please explain what you mean with "dynamic actions", even if just for me...&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 14:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146154#M1620916</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-08-29T14:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: send mail through dynamic actions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146155#M1620917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please explain the words 'dynamic actions'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by chance if your code is working fine and emails are not going to user inbox then can you check in &lt;STRONG&gt;sost&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;If emails are coming in SOST then you have run one job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Subhankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2011 22:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-mail-through-dynamic-actions/m-p/8146155#M1620917</guid>
      <dc:creator>Subhankar</dc:creator>
      <dc:date>2011-08-29T22:40:02Z</dc:date>
    </item>
  </channel>
</rss>

