<?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: Problem while sending an email. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768731#M38010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;Thanks for helping, Still some problem is there,&lt;/P&gt;&lt;P&gt;When i start the "send process" , it will for "address type". There i mentioned "INT - Internet Mail Address".&lt;/P&gt;&lt;P&gt;Then OK.&lt;/P&gt;&lt;P&gt;Then it will get a message called "You Didn't Select any objects".&lt;/P&gt;&lt;P&gt;How should i proceed further,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Oct 2004 05:30:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-10-26T05:30:38Z</dc:date>
    <item>
      <title>Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768722#M38001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have copied an example program which is used to send Email to External Address.&lt;/P&gt;&lt;P&gt;But so far i am not able to recieve a mail in External address,&lt;/P&gt;&lt;P&gt;Can any body help me,&lt;/P&gt;&lt;P&gt;I have pasted the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Vinay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zvinay3 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: objcont LIKE solisti1 OCCURS 5 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: doc_chng LIKE sodocchgi1.&lt;/P&gt;&lt;P&gt;DATA: entries LIKE sy-tabix.&lt;/P&gt;&lt;P&gt;DATA: name(15).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill the document&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;doc_chng-obj_name = 'URGENT'.&lt;/P&gt;&lt;P&gt;doc_chng-obj_descr = 'Read at once !'.&lt;/P&gt;&lt;P&gt;doc_chng-sensitivty = 'P'.&lt;/P&gt;&lt;P&gt;objcont = 'Hey guys, time for lunch !!!'.&lt;/P&gt;&lt;P&gt;APPEND objcont.&lt;/P&gt;&lt;P&gt;objcont = 'Lets get going !'.&lt;/P&gt;&lt;P&gt;APPEND objcont.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE objcont LINES entries.&lt;/P&gt;&lt;P&gt;READ TABLE objcont INDEX entries.&lt;/P&gt;&lt;P&gt;doc_chng-doc_size = ( entries - 1 ) * 255 + STRLEN( objcont ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill the receiver list&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR reclist.&lt;/P&gt;&lt;P&gt;reclist-receiver = sy-uname. " replace with &amp;lt;login name&amp;gt;&lt;/P&gt;&lt;P&gt;reclist-rec_type = 'B'.&lt;/P&gt;&lt;P&gt;reclist-express = 'X'.&lt;/P&gt;&lt;P&gt;APPEND reclist.&lt;/P&gt;&lt;P&gt;CLEAR reclist.&lt;/P&gt;&lt;P&gt;reclist-receiver = 'vinay.br@sap.com'.&lt;/P&gt;&lt;P&gt;reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;APPEND reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Send the document&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          document_type              = 'RAW'&lt;/P&gt;&lt;P&gt;          document_data              = doc_chng&lt;/P&gt;&lt;P&gt;          put_in_outbox              = 'X'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          object_content             = objcont&lt;/P&gt;&lt;P&gt;          receivers                  = reclist&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;CASE sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT reclist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF reclist-receiver = space.&lt;/P&gt;&lt;P&gt;        name = reclist-rec_id.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        name = reclist-receiver.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF reclist-retrn_code = 0.&lt;/P&gt;&lt;P&gt;        WRITE: / name, ': succesfully sent'.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        WRITE: / name, ': error occured'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 1.&lt;/P&gt;&lt;P&gt;    WRITE: / 'Too many receivers specified !'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 2.&lt;/P&gt;&lt;P&gt;    WRITE: / 'No receiver got the document !'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 4.&lt;/P&gt;&lt;P&gt;    WRITE: / 'Missing send authority !'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN OTHERS.&lt;/P&gt;&lt;P&gt;    WRITE: / 'Unexpected error occurred !'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2004 06:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768722#M38001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-20T06:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768723#M38002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the Function 'SO_NEW_DOCUMENT_SEND_API1', you must add commit_work = 'X' ...&lt;/P&gt;&lt;P&gt;&lt;/P&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              = document_data&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;    ...etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetz!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: David Cerati&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: David Cerati&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2004 07:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768723#M38002</guid>
      <dc:creator>former_member611006</dc:creator>
      <dc:date>2004-10-20T07:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768724#M38003</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 think two prerequisites are neccessary:&lt;/P&gt;&lt;P&gt;- within TA SCOT the connection to a mail server has to be arranged&lt;/P&gt;&lt;P&gt;- the report RSCONN01 has to run to get the mail to the SAP interface&lt;/P&gt;&lt;P&gt;then it should work.&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Olaf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2004 07:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768724#M38003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-20T07:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768725#M38004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Olaf Bethke,&lt;/P&gt;&lt;P&gt;i checked SCOT transaction.&lt;/P&gt;&lt;P&gt;it has SENDMAIL_SERVER in RFC Destination.&lt;/P&gt;&lt;P&gt;I even executed the report RSCONN01, but still i am not able to recieve any mail,&lt;/P&gt;&lt;P&gt;can you please tell what could be the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With REgards&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2004 07:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768725#M38004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-20T07:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768726#M38005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;please read SAP-Note 63480 for further details. I'm not a network expert and BC is not my profession so I can't give you detailed instructions how to implement the connection on servers.&lt;/P&gt;&lt;P&gt;Hope you have other experts to ask for that topics.&lt;/P&gt;&lt;P&gt;Greets&lt;/P&gt;&lt;P&gt;Olaf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2004 08:54:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768726#M38005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-20T08:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768727#M38006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at OSS note 455140 to setup email, fax, paging/sms via STMP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2004 22:28:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768727#M38006</guid>
      <dc:creator>nablan_umar</dc:creator>
      <dc:date>2004-10-20T22:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768728#M38007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check SOST Transaction Also. Whether you have a mail there or not. If not then there is a problem in SAP connect set up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Oct 2004 06:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768728#M38007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-21T06:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768729#M38008</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 checked it using SOST transaction.&lt;/P&gt;&lt;P&gt;The status of all the Messages are "In Transit".&lt;/P&gt;&lt;P&gt;and the status text says "Message transfered by node to communication system".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me out....&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Oct 2004 11:29:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768729#M38008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-25T11:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768730#M38009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now it looks good that means your SAPconnect is properly configured at SAP end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try starting send process using SCOT transaction --- Utilities ---start Send Process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Oct 2004 02:39:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768730#M38009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-26T02:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768731#M38010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;Thanks for helping, Still some problem is there,&lt;/P&gt;&lt;P&gt;When i start the "send process" , it will for "address type". There i mentioned "INT - Internet Mail Address".&lt;/P&gt;&lt;P&gt;Then OK.&lt;/P&gt;&lt;P&gt;Then it will get a message called "You Didn't Select any objects".&lt;/P&gt;&lt;P&gt;How should i proceed further,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Oct 2004 05:30:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768731#M38010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-26T05:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while sending an email.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768732#M38011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Last Check to make sure that everything is fine and connection is proper. Double click at the node below INT in SCOT transaction. Screen will pop up from there you can actually perform the connection test under External Software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover please see below What In transit stands for. It seems that there is a problem between SAP and External system. Check all Configurations once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Transit Means&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Number of send orders that are currently in process outside of the R/3 System, that is, the messages have been transferred to the external nodes by the SAPconnect send process but neither a positive nor a negative status message has been received."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Deepak Bhalla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2004 01:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-sending-an-email/m-p/768732#M38011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-27T01:52:19Z</dc:date>
    </item>
  </channel>
</rss>

