<?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: execute code asynchronously in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631359#M874675</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 can be done,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto selection-screen of report, then keen the required parameters then click on PROGRAM&amp;gt;Execute in background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 7, 2008 12:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Apr 2008 13:40:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-07T13:40:38Z</dc:date>
    <item>
      <title>execute code asynchronously</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631358#M874674</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;is it possible to execute a part of a program in background (asynchronous) ?&lt;/P&gt;&lt;P&gt;I have an amount of code which processes input from the user, but it doesn 't require any action from the user. he only has to wait until the code has finished processing. Is it possible to execute this code without that the user has to wait ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Björn Demol on Apr 7, 2008 3:34 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 13:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631358#M874674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-07T13:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: execute code asynchronously</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631359#M874675</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 can be done,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto selection-screen of report, then keen the required parameters then click on PROGRAM&amp;gt;Execute in background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 7, 2008 12:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 13:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631359#M874675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-07T13:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: execute code asynchronously</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631360#M874676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bjorn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not 100% on this, but using the SUBMIT verb may accomplish what you area asking.  You may have to play with the options for SUBMIT to accomplish you goal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 13:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631360#M874676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-07T13:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: execute code asynchronously</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631361#M874677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure whether the below steps will help you or not. But just give an try on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Write a separate report with the code that you want to run asynchronously with the main report execution with out the user interaction.&lt;/P&gt;&lt;P&gt;2. Call the following function modules in sequence in your main program. These function modules will create a job to execute the code asynchronously.&lt;/P&gt;&lt;P&gt;   a. JOB_OPEN.&lt;/P&gt;&lt;P&gt;   b. JOB_SUBMIT.&lt;/P&gt;&lt;P&gt;   c. JOB_CLOSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with 'where used list' option on these function modules in SE37, there you can get lot of standard SAP objects for the examples of these function modules usage.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 17:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631361#M874677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-07T17:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: execute code asynchronously</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631362#M874678</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;&lt;/P&gt;&lt;P&gt;I tried it with making a function module and use it as a rfc fm to run it asynchronously..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the heklp !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 14:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-code-asynchronously/m-p/3631362#M874678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T14:24:33Z</dc:date>
    </item>
  </channel>
</rss>

