<?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: using  so_new_document_send_api1 ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849527#M925459</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;we have used this submitting report in many of the objects and in none of the objects we have issues. As soon as u run the object mail will go. Also i dont think there is any disadvantages with this approach. So u can proceed with adding this 2 lines of code which u urself can do without the need of abaper if u have developer access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 May 2008 10:47:35 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2008-05-20T10:47:35Z</dc:date>
    <item>
      <title>using  so_new_document_send_api1 ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849522#M925454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using FM  so_new_document_send_api1 for sending emails from z-abap. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any possibility that i can send the email IMMEDIATELY ? &lt;/P&gt;&lt;P&gt;now it is getting into the queue (in SCOT). there we have a job running every&lt;/P&gt;&lt;P&gt;5 minutes which sends the emails. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but for this case i need it directly after call of  so_new_document_send_api1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b.regards, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 10:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849522#M925454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T10:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: using  so_new_document_send_api1 ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849523#M925455</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;In the Standard FM &lt;STRONG&gt;'SO_NEW_DOCUMENT_SEND_API1'&lt;/STRONG&gt; , we have a &lt;STRONG&gt;RECEIVERS&lt;/STRONG&gt; parameter, in the &lt;STRONG&gt;TABLES&lt;/STRONG&gt; tab. Here, the  &lt;STRONG&gt;RECEIVER&lt;/STRONG&gt; parameter is of the type of the STRUCTURE  &lt;STRONG&gt;SOMLRECI1&lt;/STRONG&gt;, which has a flag &lt;STRONG&gt;EXPRESS&lt;/STRONG&gt; need to be set in order to send the mail immediately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful to you. If you need further information, revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nagaraj T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 10:19:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849523#M925455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T10:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: using  so_new_document_send_api1 ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849524#M925456</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;Put this piece of code after calling this FM.(Bold one)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call function so_new_document_send_api1 &lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Send mail immediately&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SUBMIT rsconn01 USING SELECTION-SET 'INT' AND&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RETURN.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;CALL FUNCTION 'SO_DEQUEUE_UPDATE_LOCKS'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;MESSAGE i123 WITH 'Mail sending failed.'&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Kumar Vemuru on May 20, 2008 4:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 10:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849524#M925456</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-20T10:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: using  so_new_document_send_api1 ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849525#M925457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the external mails, the background job will send the mail. We can't do anything from the coding side.You need to contact with the BASIS team to reshedule the background job.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 10:37:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849525#M925457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T10:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: using  so_new_document_send_api1 ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849526#M925458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i AM the 'basic team' myself. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don't want to change the scheduling of the job ! i have to send it right AFTER the fm-call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you gave me 3 solutions now ! 1) using 'express' (this will work ??????) 2) submit the job in the abap&lt;/P&gt;&lt;P&gt;3) reschedule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;well, what is best now ? &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 10:40:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849526#M925458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T10:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: using  so_new_document_send_api1 ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849527#M925459</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;we have used this submitting report in many of the objects and in none of the objects we have issues. As soon as u run the object mail will go. Also i dont think there is any disadvantages with this approach. So u can proceed with adding this 2 lines of code which u urself can do without the need of abaper if u have developer access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 10:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849527#M925459</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-20T10:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: using  so_new_document_send_api1 ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849528#M925460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh my god ! thats a very very very bad solution &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;now i have sent about 500 emails from TESTSYSTEM to many users, even to the general director !&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in testenv. we don't have scheduled the job, as it would not be good to send messages out from testsystem, they should stay there in scot as unsent ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b. reg, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 11:44:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-so-new-document-send-api1/m-p/3849528#M925460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T11:44:02Z</dc:date>
    </item>
  </channel>
</rss>

