<?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 With sending Mail in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577238#M1079912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When i am sending mail to one address it is sending mail properly. some times it is giving error &lt;STRONG&gt;'No delivery to EmailID, as recipient unknown'&lt;/STRONG&gt;(Message 802 in scot ). what would be the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Sep 2008 04:09:27 GMT</pubDate>
    <dc:creator>former_member799868</dc:creator>
    <dc:date>2008-09-25T04:09:27Z</dc:date>
    <item>
      <title>Problem With sending Mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577238#M1079912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When i am sending mail to one address it is sending mail properly. some times it is giving error &lt;STRONG&gt;'No delivery to EmailID, as recipient unknown'&lt;/STRONG&gt;(Message 802 in scot ). what would be the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 04:09:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577238#M1079912</guid>
      <dc:creator>former_member799868</dc:creator>
      <dc:date>2008-09-25T04:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With sending Mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577239#M1079913</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;Just check when you are sending mails to a group using distribution list then specify the proper type of reciever.&lt;/P&gt;&lt;P&gt;Type P is for Private Distribution list&lt;/P&gt;&lt;P&gt;and type C is for Shared Distribution list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar Tripathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 04:23:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577239#M1079913</guid>
      <dc:creator>Bhaskar_Tripath</dc:creator>
      <dc:date>2008-09-25T04:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With sending Mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577240#M1079914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sending mail to four different adresses in that .mail is going for one mail id always.for other three it is giving that error some times. i am using recipient type as 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;structure s_cust_mapp contains 4 mail ids.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT s_cust_mapp-dmail IS INITIAL.&lt;/P&gt;&lt;P&gt;    MOVE  s_zmusa_cust_mapp-dmail TO  l_reclist-receiver.&lt;/P&gt;&lt;P&gt;    l_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;    APPEND l_reclist.&lt;/P&gt;&lt;P&gt;    CLEAR:l_reclist.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF NOT s_cust_mapp-bmail IS INITIAL.&lt;/P&gt;&lt;P&gt;    l_reclist-receiver = s_zmusa_cust_mapp-bmail.&lt;/P&gt;&lt;P&gt;    l_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;    APPEND l_reclist.&lt;/P&gt;&lt;P&gt;    CLEAR:l_reclist.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF NOT s_cust_mapp-pmail IS INITIAL.&lt;/P&gt;&lt;P&gt;    l_reclist-receiver = s_zmusa_cust_mapp-pmail.&lt;/P&gt;&lt;P&gt;    l_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;    APPEND l_reclist.&lt;/P&gt;&lt;P&gt;    CLEAR:l_reclist.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF NOT s_cust_mapp-amail IS INITIAL.&lt;/P&gt;&lt;P&gt;    l_reclist-receiver = s_zmusa_cust_mapp-amail.&lt;/P&gt;&lt;P&gt;    l_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;    APPEND l_reclist.&lt;/P&gt;&lt;P&gt;    CLEAR:l_reclist.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;*l_objhex =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_send_add = 'SAPUSER'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Send Message&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF NOT l_reclist[] IS INITIAL.&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              = l_docdata&lt;/P&gt;&lt;P&gt;          commit_work                = 'X'&lt;/P&gt;&lt;P&gt;          sender_address             = v_send_add&lt;/P&gt;&lt;P&gt;          sender_address_type        = 'A'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SENT_TO_ALL                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NEW_OBJECT_ID                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SENDER_ID                        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        packing_list                     = l_objpack&lt;/P&gt;&lt;P&gt;        object_header                    = l_objhead&lt;/P&gt;&lt;P&gt;        contents_bin                     = l_objbin&lt;/P&gt;&lt;P&gt;        contents_txt                     = l_objtxt&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONTENTS_HEX                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJECT_PARA                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJECT_PARB                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          receivers                      = l_reclist&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TOO_MANY_RECEIVERS               = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DOCUMENT_NOT_SENT                = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DOCUMENT_TYPE_NOT_EXIST          = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OPERATION_NO_AUTHORIZATION       = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_ERROR                  = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  X_ERROR                          = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ENQUEUE_ERROR                    = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 8&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WAIT UP TO 2 SECONDS.&lt;/P&gt;&lt;P&gt;      SUBMIT rsconn01 WITH mode = 'INT'&lt;/P&gt;&lt;P&gt;                    WITH output = ' '&lt;/P&gt;&lt;P&gt;                    AND RETURN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 04:31:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577240#M1079914</guid>
      <dc:creator>former_member799868</dc:creator>
      <dc:date>2008-09-25T04:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With sending Mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577241#M1079915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you share the SMTP configuration in SCOT for sending mail.&lt;/P&gt;&lt;P&gt;I am currently facing error in sending the MAIL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 04:45:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-sending-mail/m-p/4577241#M1079915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T04:45:48Z</dc:date>
    </item>
  </channel>
</rss>

