<?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: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439576#M1551506</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi manas..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the exact error i am facing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cannot process message, no route from 90003427 to mail id..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you tell me is it technical problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Dec 2010 10:40:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-15T10:40:01Z</dc:date>
    <item>
      <title>FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439567#M1551497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        I am using SO_NEW_DOCUMENT_ATT_SEND_API1 FM to send a mail to vendors....this is the logic they have written..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LT_MAIL1[]  having 4 mails id's...but problem is mail is not going.... can any body plz help me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LT_MAIL1 LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF LT_CONTENT[] IS NOT INITIAL AND LT_MAIL1[] IS NOT INITIAL.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       LOOP AT lt_mail1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              DOCUMENT_DATA              = LV_DOC_HEADER       "subject of message&lt;/P&gt;&lt;P&gt;              PUT_IN_OUTBOX              = 'X'&lt;/P&gt;&lt;P&gt;              COMMIT_WORK                = 'X'&lt;/P&gt;&lt;P&gt;            TABLES&lt;/P&gt;&lt;P&gt;              PACKING_LIST               = OBJPACK&lt;/P&gt;&lt;P&gt;              OBJECT_HEADER              = OBJHEAD              "file name&lt;/P&gt;&lt;P&gt;              CONTENTS_BIN               = OBJBIN               "attachment content&lt;/P&gt;&lt;P&gt;              CONTENTS_TXT               = OBJTXT&lt;/P&gt;&lt;P&gt;              RECEIVERS                  = LT_MAIL1             "Mail id&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;              OPERATION_NO_AUTHORIZATION = 4&lt;/P&gt;&lt;P&gt;              OTHERS                     = 99.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;            MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            MESSAGE S000(MES).&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ENDLOOP.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Praveena..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 09:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439567#M1551497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T09:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439568#M1551498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope you can try this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA l_sender TYPE soextreci1-receiver.

  
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
      document_data              = v_emailattr
      put_in_outbox              = 'X'
      sender_address             = l_sender
      sender_address_type        = 'INT'
      commit_work                = 'X'
    TABLES
      packing_list               = it_objpack
      object_header              = it_objhead
      contents_bin               = it_objbin
      contents_txt               = it_objtxt
      receivers                  = it_reclist
    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;Edited by: K.Manas on Dec 15, 2010 10:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 09:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439568#M1551498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T09:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439569#M1551499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked the transaction SOST. Are there errors from this FM call.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:00:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439569#M1551499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439570#M1551500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please ensure that the SCOT configurations are in place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:04:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439570#M1551500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439571#M1551501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi martin..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for giving reply...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ya i am getting errors? is it technical problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:15:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439571#M1551501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439572#M1551502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi martin...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you plzzz give me reply...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:25:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439572#M1551502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439573#M1551503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what errors is the FM giving?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:25:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439573#M1551503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439574#M1551504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Has the sender user linked an e-mail in his data user ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439574#M1551504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439575#M1551505</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;It is showing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;via Internet	Payment From XXX Limited For Vendor 2000002095	some name	email id&lt;/P&gt;&lt;P&gt; and one more column i there status i.e error symbol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it technical problem?&lt;/P&gt;&lt;P&gt;can you plzzz help me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439575#M1551505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439576#M1551506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi manas..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the exact error i am facing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cannot process message, no route from 90003427 to mail id..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you tell me is it technical problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439576#M1551506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439577#M1551507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Veena,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At what point is the FM raising this exception and what exactly is this &lt;STRONG&gt;route from 90003427 to mail id&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;Check if return for FM is equal to 0 i.e. sy-subrc = 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:48:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439577#M1551507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439578#M1551508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes manas..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-subrc is eq 0 only...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:49:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439578#M1551508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439579#M1551509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you check your &lt;STRONG&gt;NACE&lt;/STRONG&gt; settings properly. Ask your functional consultant to check it. &lt;/P&gt;&lt;P&gt;Try using some other test scenarios. If it works fine then the issue is with the doc no supplied.&lt;/P&gt;&lt;P&gt;Do you have any output type setting for this program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If all above are proper then it's a tech problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:53:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439579#M1551509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T10:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439580#M1551510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI manas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for giving reply...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will check with my Functional consultent i will let u know....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ThanQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 11:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439580#M1551510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T11:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439581#M1551511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Veena,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Do check with other invoice no too..The cause may be with the invoice no given to be tested. Anyhow check the settings for the output types, transmition medium etc&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 11:08:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439581#M1551511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T11:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439582#M1551512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Veena&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not the vendor must to have e-mail, but the sap user sender must to have e.mail assigned in SU01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 11:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439582#M1551512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T11:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439583#M1551513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also check that the mail ids have been maintained for sender and receiver in transaction SU01.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 10:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439583#M1551513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-16T10:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: FM SO_NEW_DOCUMENT_ATT_SEND_API1 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439584#M1551514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi manas...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; My problem was solved....actaully There is no SMTP connection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Dec 2010 07:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-so-new-document-att-send-api1-problem/m-p/7439584#M1551514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-20T07:57:21Z</dc:date>
    </item>
  </channel>
</rss>

