<?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: Parallel Processing Issue : call function starting new task in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555904#M1430441</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That happens because the FM is executed asynchronously.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jun 2016 09:56:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-06-10T09:56:34Z</dc:date>
    <item>
      <title>Parallel Processing Issue : call function starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555899#M1430436</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 using the parallel processing functionality using the call function new task  destination in group default  Performing    on end of task  inside a loop ( i am splitting the internal table ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However when i am debugging the code, i am able to see the function module( it opens a new session in debugging ) ,  and i see that new task is started after the RFC Function module is executed . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this parallel processing ? I mean the new task starts after control returns back to main program , after the execution of the RFC FM. &lt;/P&gt;&lt;P&gt;I thought the idea was to have the same FM executing in multi threads. So that time is saved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 14:07:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555899#M1430436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T14:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing Issue : call function starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555900#M1430437</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 think you need to try with IN BACKGROUND TASK addition. But You can't Debug the FM called in BACKGROUND TASK.&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, 16 Feb 2010 14:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555900#M1430437</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-02-16T14:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing Issue : call function starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555901#M1430438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Parallel processing consists on execute several tasks in the same moment. Your divide your reports in tasks that can execute at the same time because are independently. At the end you combine the tasks for reaching a result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 17:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555901#M1430438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T17:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing Issue : call function starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555902#M1430439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There were too many  complications in the 'call function in new task '  option.&lt;/P&gt;&lt;P&gt;So we are trying it with the job submit option. So we are splitting up the data into smaller tables and submiting it with this statement : Submit  'prog' with selection-table 's_sel' via job 'job' and return .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2010 14:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555902#M1430439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-19T14:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing Issue : call function starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555903#M1430440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used job submit option and there are no complexities! &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 05:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555903#M1430440</guid>
      <dc:creator>Sathish</dc:creator>
      <dc:date>2016-06-10T05:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing Issue : call function starting new task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555904#M1430441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That happens because the FM is executed asynchronously.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 09:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing-issue-call-function-starting-new-task/m-p/6555904#M1430441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-10T09:56:34Z</dc:date>
    </item>
  </channel>
</rss>

