<?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: Sending message with SO_NEW_DOCUMENT_SEND_API1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514068#M1424084</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Caution...Unknown and thus unloved is Basis/WebAS version dependent!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Dec 2009 12:44:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-28T12:44:48Z</dc:date>
    <item>
      <title>Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514060#M1424076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying ti send message to multiple message adresse with FM SO_NEW_DOCUMENT_SEND_API1, but i get he problem that each message receiver don't see other message receiver. I need that the other message receiver see who received this mail too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thak's alot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 09:00:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514060#M1424076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-28T09:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514061#M1424077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I hope you are calling the FM in the LOOP of receivers. Append all the receivers to one internal table and call the FM at once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 09:05:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514061#M1424077</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-12-28T09:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514062#M1424078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already done so but it doesn't work. I fill up d^the table parameters with receiver_type 'U' and the name of user but i stil not see the list of receiver in the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 09:08:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514062#M1424078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-28T09:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514063#M1424079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Populate the parameters as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 LOOP AT lr_email.  "Receiver list
    wa_reclist-receiver = *E-mail id*
    wa_reclist-express  = 'X'.
    wa_reclist-rec_type = 'U'..
    APPEND wa_reclist TO i_reclist.
  ENDLOOP.

Call the FM with this reclist.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 09:45:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514063#M1424079</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-12-28T09:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514064#M1424080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mattia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why [procrastinate|http://en.wikipedia.org/wiki/Procrastination] with this outdated function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at [Unknown thus unloved?|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/3443] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;; Then repeat the coding lines &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Create recipient 
c_address = receiver. 
recipient = cl_cam_address_bcs=&amp;gt;create_internet_address( c_address ). 
* Add recipient with its respective attributes to send request 
CALL METHOD send_request-&amp;gt;add_recipient 
EXPORTING 
i_recipient = recipient 
i_express = ' ' 
i_copy = ' ' 
i_blind_copy = ' '.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for every recipient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After using cl_bcs the first time, I bet you will never use SO_NEW_DOCUMENT_SEND_API1 again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Julius Bussche on Dec 28, 2009 12:14 PM&lt;/P&gt;&lt;P&gt;f... around -&amp;gt; Procrastinate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 10:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514064#M1424080</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-12-28T10:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514065#M1424081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clemans wrote:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;why f.. around with this&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not good practice to use wording like this..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 10:37:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514065#M1424081</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2009-12-28T10:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514066#M1424082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Not sure but you can also try &lt;/P&gt;&lt;P&gt;wa_reclist-copy = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 10:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514066#M1424082</guid>
      <dc:creator>former_member194416</dc:creator>
      <dc:date>2009-12-28T10:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514067#M1424083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Please find this sample Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_eplant INTO wa_eplant.&lt;/P&gt;&lt;P&gt;    w_reclist-receiver = wa_eplant-email_add.&lt;/P&gt;&lt;P&gt;    w_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF wa_eplant-cc1 = 'X'.&lt;/P&gt;&lt;P&gt;      w_reclist-copy = 'X'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF wa_eplant-bcc = 'X'.&lt;/P&gt;&lt;P&gt;      w_reclist-blind_copy = 'X'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    APPEND w_reclist TO i_reclist.&lt;/P&gt;&lt;P&gt;  CLEAR w_reclist.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 11:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514067#M1424083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-28T11:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514068#M1424084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Caution...Unknown and thus unloved is Basis/WebAS version dependent!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 12:44:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514068#M1424084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-28T12:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sending message with SO_NEW_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514069#M1424085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please explain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 19:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sending-message-with-so-new-document-send-api1/m-p/6514069#M1424085</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-12-28T19:25:18Z</dc:date>
    </item>
  </channel>
</rss>

