<?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>Question Re: class based workflow - trigger mail to multiple recipients in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051685#M4503688</link>
    <description>&lt;P&gt;There are too many topics to discuss here. Let's talk about the "mail".&lt;/P&gt;&lt;P&gt;The requirement currently doesn't look like a classic workflow: if it's an approval step, that should be a "decision step", which can be automatically displayed in the inbox of users like "Fiori My Inbox" or the classic "Business Workplace", or eventually use the "Extended notifications" to convert the decision and dialog steps into emails.&lt;/P&gt;&lt;P&gt;Currently, what system does your company use for other workflows?&lt;/P&gt;</description>
    <pubDate>Sat, 28 Dec 2019 09:17:19 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2019-12-28T09:17:19Z</dc:date>
    <item>
      <title>class based workflow - trigger mail to multiple recipients</title>
      <link>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaq-p/12051684</link>
      <description>&lt;P&gt;Hi Experts, &lt;/P&gt;
  &lt;P&gt;I have basic knowledge on workflow, so please correct me if I say anything wrong. &lt;/P&gt;
  &lt;P&gt;I have to send a mail to a list of approvers whenever a PO is created. The challenge here is a mail should be sent to a list of approvers notifying them of PO and the user would then open PO and do the needful upon notification. Here i have to send mail to a list of users which need to be retrieved from a table. Also in SEND_EMAIL step in workflow, how to configure to send in a loop. &lt;/P&gt;
  &lt;P&gt;Also, can i add any custom step in workflow like call FM/class to trigger email passing PO details ? &lt;/P&gt;
  &lt;P&gt;Please guide. &lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;
  &lt;P&gt;Aditya&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2019 08:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaq-p/12051684</guid>
      <dc:creator>kjyothiraditya</dc:creator>
      <dc:date>2019-12-28T08:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: class based workflow - trigger mail to multiple recipients</title>
      <link>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051685#M4503688</link>
      <description>&lt;P&gt;There are too many topics to discuss here. Let's talk about the "mail".&lt;/P&gt;&lt;P&gt;The requirement currently doesn't look like a classic workflow: if it's an approval step, that should be a "decision step", which can be automatically displayed in the inbox of users like "Fiori My Inbox" or the classic "Business Workplace", or eventually use the "Extended notifications" to convert the decision and dialog steps into emails.&lt;/P&gt;&lt;P&gt;Currently, what system does your company use for other workflows?&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2019 09:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051685#M4503688</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-12-28T09:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: class based workflow - trigger mail to multiple recipients</title>
      <link>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051686#M4503689</link>
      <description>&lt;P&gt;Hi Sandra, &lt;/P&gt;&lt;P&gt;We are on S/4HANA 1809 with Fiori and OData. Hmm i do not exactly want to approve from Email and Email here is not the SBWP, but rather the Email the user uses like Outlook, Gmail etc.  The email functionality is just to notify the user to take some action, not directly from mail, but rather he has to login and do the necessary steps. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2019 10:05:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051686#M4503689</guid>
      <dc:creator>kjyothiraditya</dc:creator>
      <dc:date>2019-12-28T10:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: class based workflow - trigger mail to multiple recipients</title>
      <link>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051687#M4503690</link>
      <description>&lt;P&gt;I will just answer the question how to send an email to multiple recipients:&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;In the workflow container, define a "table" container element ZUSERS (or the name you want) with line type SO_NAME, check "multiline" so that it's a table. This element will be used to pass all email addresses to the activity step/task "send mail".&lt;/LI&gt;&lt;LI&gt;Insert a workflow activity to initialize the element with the list of all SAP user IDs: make it call a custom standard task which calls a method from a custom business object type (SWO1) or a custom workflow-enabled class (SE24, class implementing IF_WORKFLOW), which will return one SAP user ID by line, each ID being prefixed with "US") - in the binding, pass the element &amp;amp;ZUSER&amp;amp;.&lt;/LI&gt;&lt;LI&gt;Insert a send mail step, in the binding pass the element, select the receiver type "Organizational Object" and select the receiver "Expression" &amp;amp;ZUSERS&amp;amp;.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PS: no need of a loop to send the same email to multiple recipients.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2019 17:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051687#M4503690</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-12-29T17:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: class based workflow - trigger mail to multiple recipients</title>
      <link>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051688#M4503691</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you want to inform users that they need to approve their workitems, or if you want the option to approve their workitems directly from their mail box, then you should use extended notifications (SWN_SELSEN) to make this possible.&lt;/P&gt;&lt;P&gt;There are many blogs on this subject and there is also a document on SAP KBA about this.&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2019 15:41:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/class-based-workflow-trigger-mail-to-multiple-recipients/qaa-p/12051688#M4503691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-12-30T15:41:51Z</dc:date>
    </item>
  </channel>
</rss>

