<?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: Function Module In Update Task in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787611#M911217</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 having the same issue and used commit work after calling  fm .... in update task. This not updating the tables. Its working when I commet the in update task. Your help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Surya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Jul 2008 20:22:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-16T20:22:15Z</dc:date>
    <item>
      <title>Function Module In Update Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787607#M911213</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;While calling a Function Module In Update Task, do we need to perform Commit Work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Sunanda.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 09:06:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787607#M911213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T09:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module In Update Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787608#M911214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Better If U call a commit work ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 09:08:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787608#M911214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T09:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module In Update Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787609#M911215</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;The actual execution is triggered by the statement COMMIT WORK. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If a COMMIT WORK statement is not executed&lt;/STRONG&gt; after registration of a function module during execution of the current program, &lt;U&gt;the function module is not executed and is deleted from table VBLOG at the end of the program.&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pls reward if found helpful.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 09:16:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787609#M911215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T09:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module In Update Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787610#M911216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you need to perform commit work. whether that should be synchronous or asynchronous will depend upon the way commit statement is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function modules that run in the update task can run synchronously or asynchronously. You determine this by the form of the COMMITstatement you use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        COMMIT WORK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the standard form, which specifies asynchronous processing. Your program does not wait for the requested functions to finish processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        COMMIT WORK AND WAIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This form specifies synchronous processing. The COMMITstatement waits for the end of processing. Control returns to your program after all high priority (V1) function modules have run successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AND WAIT form is convenient for switching old programs to synchronous processing without having to re-write the code. Functionally, using AND WAIT for update-task updates is just the same as dialog-task updates with PERFORM ON COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please have a look at belwo link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/EN/41/7af4dda79e11d1950f0000e82de14a/frameset.htm"&gt;Calling Update Functions&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vibha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please mark all the useful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 09:17:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787610#M911216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T09:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module In Update Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787611#M911217</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 having the same issue and used commit work after calling  fm .... in update task. This not updating the tables. Its working when I commet the in update task. Your help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Surya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 20:22:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787611#M911217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T20:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module In Update Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787612#M911218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please have a look at this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/EN/41/7af4dda79e11d1950f0000e82de14a/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/EN/41/7af4dda79e11d1950f0000e82de14a/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 15:45:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787612#M911218</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-07-17T15:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module In Update Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787613#M911219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi a®s,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your link. Your link helped me solving the issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 19:14:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-in-update-task/m-p/3787613#M911219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T19:14:01Z</dc:date>
    </item>
  </channel>
</rss>

