<?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: WAIT statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802839#M41041</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it makes the program run longer! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seriously, none to my knowledge.  We use it to allow an external job monitor to monitor the progress of an ABAP that schedules other jobs dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The external monitor knows about job A, but not jobs B and C that A spawns.  So instead, job A uses the WAIT statement to periodically wait for the completion of jobs B and C.  Seems to work very well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Apr 2004 09:36:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-04-02T09:36:53Z</dc:date>
    <item>
      <title>WAIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802838#M41040</link>
      <description>&lt;P&gt;Hello all&lt;/P&gt;
  &lt;P&gt;&amp;lt;b&amp;gt;Thomas Jung&amp;lt;/b&amp;gt; wrote in an earlier posting about WAIT: &lt;/P&gt;
  &lt;P&gt;The big advantage it has is that it release the dialog work process while the program is waiting. &lt;/P&gt;
  &lt;P&gt;Are there any disadvantages ?&lt;/P&gt;
  &lt;P&gt;Best regards&lt;/P&gt;
  &lt;P&gt;Thomas Madsen Nielsen&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2004 06:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802838#M41040</guid>
      <dc:creator>TMNielsen</dc:creator>
      <dc:date>2004-04-02T06:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: WAIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802839#M41041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it makes the program run longer! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seriously, none to my knowledge.  We use it to allow an external job monitor to monitor the progress of an ABAP that schedules other jobs dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The external monitor knows about job A, but not jobs B and C that A spawns.  So instead, job A uses the WAIT statement to periodically wait for the completion of jobs B and C.  Seems to work very well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2004 09:36:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802839#M41041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-04-02T09:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: WAIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802840#M41042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only disadvantage I can think of is that it was really designed to be used with Asynchronous RFC calls.  I guess if you use it outside of this context and you have problems, you might not be able to get help from SAP.  However I have never had any problems with it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2004 20:56:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802840#M41042</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2004-04-02T20:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: WAIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802841#M41043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe that only the WAIT UNTIL variant of the WAIT statement was designed for asynchronous RFC.  There are no documented restricted uses of WAIT UP TO n SECONDS that I can see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2004 09:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802841#M41043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-04-05T09:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: WAIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802842#M41044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following is from the on-line help in our 46C system:&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;WAIT should only be used with asynchronous Remote Function Calls (CALL FUNCTION func ...STARTING NEW TASK task name) and the addition PERFORMING form ON END OF TASK. It has no effect in other environments. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the ABAP debugger has its own internal flow logic (just like related roll area changes), this can have a considerable effect on the execution of the WAIT statement in debugging mode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2004 13:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802842#M41044</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2004-04-05T13:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: WAIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802843#M41045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I saw that documentation too, however it is a note for the variant WAIT UNTIL &amp;lt;logical expression&amp;gt; only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It makes perfect sense there, because only a parallel thread invoked by asynchronous remote function call could update the flag typically used in such a logical expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are no such restrictions regarding WAIT UP TO n SECONDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2004 13:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wait-statement/m-p/802843#M41045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-04-05T13:21:00Z</dc:date>
    </item>
  </channel>
</rss>

