<?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: Regarding calling the fuctional module Using 'in update task' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443523#M1412658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya only the addition 'IN UPDATE TASK' to the Call Function Statement, will suffice .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Dec 2009 06:45:42 GMT</pubDate>
    <dc:creator>former_member195383</dc:creator>
    <dc:date>2009-12-02T06:45:42Z</dc:date>
    <item>
      <title>Regarding calling the fuctional module Using 'in update task'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443518#M1412653</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 want to call a Functional module Z-PS_VK11_FRC  using the statement  IN UPDATE TASK . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is procedure to work with . can anybodt tell me how to proceed  or give me some sample program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shilpa Talluri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 06:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443518#M1412653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T06:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding calling the fuctional module Using 'in update task'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443519#M1412654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'Z_FM'  IN UPDATE TASK&lt;/P&gt;&lt;P&gt;           EXPORTING&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;It means the function will be called in asynchronous mode. The execution of the FM happens in a separate task.&lt;/P&gt;&lt;P&gt; You can not get in to the FM in debugg mode. If you want that then you have to remove 'UPDATE task' string while calling FM .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 06:06:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443519#M1412654</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2009-12-02T06:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding calling the fuctional module Using 'in update task'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443520#M1412655</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 want to know only that statement will work or we should do little coding for that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u give me some sample code or program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;shilpa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 06:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443520#M1412655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T06:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding calling the fuctional module Using 'in update task'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443521#M1412656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Function modules that run in update task can not return any values because your program has no longer control over the function module (the update task has).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE TASK fm  mostly used to update database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You don't any special coding other than calling fm UPDATE TASK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in the attributes of function module you need to tick the Update mode and "Coll Run" so that it can be used to run individually in the V2 update process can be grouped together and run collectively.&lt;/P&gt;&lt;P&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>Wed, 02 Dec 2009 06:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443521#M1412656</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-12-02T06:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding calling the fuctional module Using 'in update task'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443522#M1412657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shilpa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the following thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="thread" id="47230"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Avinash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 06:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443522#M1412657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T06:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding calling the fuctional module Using 'in update task'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443523#M1412658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya only the addition 'IN UPDATE TASK' to the Call Function Statement, will suffice .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 06:45:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-calling-the-fuctional-module-using-in-update-task/m-p/6443523#M1412658</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2009-12-02T06:45:42Z</dc:date>
    </item>
  </channel>
</rss>

