<?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: Receiving Email Read Acknowledgment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975523#M70789</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All. I've tried this, checking the setting in the SCOT, and the mentioned fields as 'X'.&lt;/P&gt;&lt;P&gt;I've saw the SO_NEW_DOCUMENT_ATT_SEND_API1 documentation also, an should work, but it doesn't. &lt;/P&gt;&lt;P&gt;What could be wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And have another problem, trying to send a mail trhugh SApscript, usign OPEN_FORM funtiong.&lt;/P&gt;&lt;P&gt;I'passing following parameters:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create Recipient&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  swc_create_object lo_recipient 'RECIPIENT' space.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'AddressString' lv_addrsmtp.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'TypeID' 'U'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Deliver' 'X'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Read' 'X'.&lt;/P&gt;&lt;P&gt;  swc_call_method lo_recipient 'CreateAddress' lt_container.&lt;/P&gt;&lt;P&gt;  swc_object_to_persistent lo_recipient ls_persistent_recipient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create Sender&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  swc_create_object lo_sender 'RECIPIENT' space.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'AddressString' l_nombre.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'TypeID' 'U'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Deliver' 'X'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Read' 'X'.&lt;/P&gt;&lt;P&gt;  swc_call_method lo_sender 'CreateAddress' lt_container.&lt;/P&gt;&lt;P&gt;  swc_object_to_persistent lo_sender ls_persistent_sender.&lt;/P&gt;&lt;P&gt; MOVE-CORRESPONDING ls_persistent_sender TO v_sender.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING ls_persistent_recipient TO v_recipient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THEN, calling the Open form function:&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              archive_index  = h_archive_index&lt;/P&gt;&lt;P&gt;              archive_params = h_archive_params&lt;/P&gt;&lt;P&gt;              device         = htddevice&lt;/P&gt;&lt;P&gt;              dialog         = hdialog&lt;/P&gt;&lt;P&gt;              form           = '      '&lt;/P&gt;&lt;P&gt;              language       = save_langu&lt;/P&gt;&lt;P&gt;              options        = itcpo&lt;/P&gt;&lt;P&gt;              mail_sender    = v_sender&lt;/P&gt;&lt;P&gt;              mail_recipient = v_recipient&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              result         = itcpp&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              canceled       = 1&lt;/P&gt;&lt;P&gt;              device         = 2&lt;/P&gt;&lt;P&gt;              form           = 3&lt;/P&gt;&lt;P&gt;              options        = 4&lt;/P&gt;&lt;P&gt;              unclosed       = 5&lt;/P&gt;&lt;P&gt;              mail_options   = 6&lt;/P&gt;&lt;P&gt;              archive_error  = 7&lt;/P&gt;&lt;P&gt;              OTHERS         = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the mail doesn't ask for a read receipt.&lt;/P&gt;&lt;P&gt;any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Sep 2006 03:48:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-14T03:48:24Z</dc:date>
    <item>
      <title>Receiving Email Read Acknowledgment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975519#M70785</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 am using FM: SO_NEW_DOCUMENT_ATT_SEND_API1 to send email outside from SAP, to external internet address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to set the FM or the user SAPoffice profile such that when the external receiver reads the mail the sender will get a feedback email to its Inbox that acknowledge that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to set flags in the FM receiver table:&lt;/P&gt;&lt;P&gt;notif_read = 'X'&lt;/P&gt;&lt;P&gt;notif_ndel = 'X'&lt;/P&gt;&lt;P&gt;notif_del  = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it was ineffectually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eyal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2005 10:38:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975519#M70785</guid>
      <dc:creator>eyal_alsheikh</dc:creator>
      <dc:date>2005-07-24T10:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving Email Read Acknowledgment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975520#M70786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be you want to check this weblog by Thomas Jung&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="/people/thomas.jung3/blog/2004/09/09/receiving-e-mail-and-processing-it-with-abap--version-610-and-higher E-Mail and processing it with ABAP - Version 610 and Higher&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2005 11:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975520#M70786</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-07-24T11:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving Email Read Acknowledgment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975521#M70787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's a nice link yaar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja Sekhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 02:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975521#M70787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T02:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving Email Read Acknowledgment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975522#M70788</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;In SCOT transaction,&lt;/P&gt;&lt;P&gt;Check&lt;/P&gt;&lt;P&gt;Settings-&amp;gt;Confiramtion of receipt-&amp;gt;Choose the radio button [ SAP expects receive confirmations for Internet mail].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your program,set the fields you mentioned as 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 04:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975522#M70788</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-07-25T04:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving Email Read Acknowledgment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975523#M70789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All. I've tried this, checking the setting in the SCOT, and the mentioned fields as 'X'.&lt;/P&gt;&lt;P&gt;I've saw the SO_NEW_DOCUMENT_ATT_SEND_API1 documentation also, an should work, but it doesn't. &lt;/P&gt;&lt;P&gt;What could be wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And have another problem, trying to send a mail trhugh SApscript, usign OPEN_FORM funtiong.&lt;/P&gt;&lt;P&gt;I'passing following parameters:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create Recipient&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  swc_create_object lo_recipient 'RECIPIENT' space.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'AddressString' lv_addrsmtp.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'TypeID' 'U'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Deliver' 'X'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Read' 'X'.&lt;/P&gt;&lt;P&gt;  swc_call_method lo_recipient 'CreateAddress' lt_container.&lt;/P&gt;&lt;P&gt;  swc_object_to_persistent lo_recipient ls_persistent_recipient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create Sender&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  swc_create_object lo_sender 'RECIPIENT' space.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'AddressString' l_nombre.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'TypeID' 'U'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Deliver' 'X'.&lt;/P&gt;&lt;P&gt;  swc_set_element lt_container 'Read' 'X'.&lt;/P&gt;&lt;P&gt;  swc_call_method lo_sender 'CreateAddress' lt_container.&lt;/P&gt;&lt;P&gt;  swc_object_to_persistent lo_sender ls_persistent_sender.&lt;/P&gt;&lt;P&gt; MOVE-CORRESPONDING ls_persistent_sender TO v_sender.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING ls_persistent_recipient TO v_recipient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THEN, calling the Open form function:&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'OPEN_FORM'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              archive_index  = h_archive_index&lt;/P&gt;&lt;P&gt;              archive_params = h_archive_params&lt;/P&gt;&lt;P&gt;              device         = htddevice&lt;/P&gt;&lt;P&gt;              dialog         = hdialog&lt;/P&gt;&lt;P&gt;              form           = '      '&lt;/P&gt;&lt;P&gt;              language       = save_langu&lt;/P&gt;&lt;P&gt;              options        = itcpo&lt;/P&gt;&lt;P&gt;              mail_sender    = v_sender&lt;/P&gt;&lt;P&gt;              mail_recipient = v_recipient&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              result         = itcpp&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              canceled       = 1&lt;/P&gt;&lt;P&gt;              device         = 2&lt;/P&gt;&lt;P&gt;              form           = 3&lt;/P&gt;&lt;P&gt;              options        = 4&lt;/P&gt;&lt;P&gt;              unclosed       = 5&lt;/P&gt;&lt;P&gt;              mail_options   = 6&lt;/P&gt;&lt;P&gt;              archive_error  = 7&lt;/P&gt;&lt;P&gt;              OTHERS         = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the mail doesn't ask for a read receipt.&lt;/P&gt;&lt;P&gt;any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2006 03:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-email-read-acknowledgment/m-p/975523#M70789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-14T03:48:24Z</dc:date>
    </item>
  </channel>
</rss>

