<?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 Problem to send an e-mail in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-to-send-an-e-mail/m-p/2025005#M414958</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;I need to send a mail in the transaction SOST but I only want to send my e-mail, no are the emails that are in the list. How can I do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe is a simple question but I need to do that correct!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Mar 2007 14:30:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-09T14:30:15Z</dc:date>
    <item>
      <title>Problem to send an e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-to-send-an-e-mail/m-p/2025005#M414958</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;I need to send a mail in the transaction SOST but I only want to send my e-mail, no are the emails that are in the list. How can I do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe is a simple question but I need to do that correct!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 14:30:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-to-send-an-e-mail/m-p/2025005#M414958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T14:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem to send an e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-to-send-an-e-mail/m-p/2025006#M414959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't single them out, you need to send them all or none.  If those mails are not to be sent at all, you can simply delete them and then run the send process for just your mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 14:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-to-send-an-e-mail/m-p/2025006#M414959</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-09T14:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem to send an e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-to-send-an-e-mail/m-p/2025007#M414960</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;If I correctly understood ur question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the menu &amp;lt;b&amp;gt;Send process - - &amp;gt; Repeat send&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to send the email use this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DOC_DATA-OBJ_DESCR = 'Bewertete vorerfasste Rechnungen'.
        CONCATENATE 'EBELN' 'EBELP' 'LIFNR' 'BELNR'
                   INTO WA_OBJCONT-LINE SEPARATED BY SPACE.
        APPEND WA_OBJCONT TO OBJCONT.
        CLEAR WA_OBJCONT.
        APPEND WA_OBJCONT TO OBJCONT.
        CONCATENATE WA_MRMRSEG-EBELN WA_MRMRSEG-EBELP S_RBKP_NEW-LIFNR
                    WA_MRMRSEG-BELNR INTO WA_OBJCONT-LINE
                    SEPARATED BY SPACE.
        APPEND WA_OBJCONT TO OBJCONT.
        WA_RECEIVER-EXPRESS = 'X'.
        WA_RECEIVER-REC_TYPE = 'U'.
        WA_RECEIVER-RECEIVER = L_R_ADR6-SMTP_ADDR.
        APPEND WA_RECEIVER TO RECEIVER.

        CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
             EXPORTING
                  DOCUMENT_DATA              = DOC_DATA
             IMPORTING
                  NEW_OBJECT_ID              = OBJECT_ID
             TABLES
                  OBJECT_CONTENT             = OBJCONT
                  RECEIVERS                  = RECEIVER
             EXCEPTIONS
                  TOO_MANY_RECEIVERS         = 1
                  DOCUMENT_NOT_SENT          = 2
                  DOCUMENT_TYPE_NOT_EXIST    = 3
                  OPERATION_NO_AUTHORIZATION = 4
                  PARAMETER_ERROR            = 5
                  X_ERROR                    = 6
                  ENQUEUE_ERROR              = 7
                  OTHERS                     = 8.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanht&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 14:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-to-send-an-e-mail/m-p/2025007#M414960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T14:33:43Z</dc:date>
    </item>
  </channel>
</rss>

