<?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: Question on parallel processing using the STARTING NEW TASK keyword in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253503#M1384026</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;Try adding this line, by using DEFAULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'FUNCTION_NAME'
    starting new task ld_taskname
DESTINATION IN GROUP DEFAULT
    performing collect_output on end of task
      exporting
        pd_param1       = ld_param1
      tables
        pt_packet       = lt_packet.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do let us know if that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Oct 2009 06:00:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-20T06:00:12Z</dc:date>
    <item>
      <title>Question on parallel processing using the STARTING NEW TASK keyword</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253501#M1384024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the following code in a program on my development system:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'FUNCTION_NAME'
    starting new task ld_taskname
    performing collect_output on end of task
      exporting
        pd_param1       = ld_param1
      tables
        pt_packet       = lt_packet.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll notice in the code above I left out the following part of the function call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DESTINATION IN GROUP group&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my one-server development system the topmost code executes fine, but I'm getting a 'REMOTE FUNCTION CALL ERROR' when I execute this in a multi-server Q&amp;amp;A system.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question: Is the missing 'DESTINATION' keyword required in order for this technique to work in a multi-server environment or is it optional keyword?  I made the assumption that since it worked in my development environment that without the 'DESTINATION' addition the system simply used the current logged on system to start the new processes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any input appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2009 02:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253501#M1384024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-20T02:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Question on parallel processing using the STARTING NEW TASK keyword</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253502#M1384025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just take &lt;STRONG&gt;F1&lt;/STRONG&gt; help on &lt;STRONG&gt;CALL FUNCTION&lt;/STRONG&gt; key word and go to the variant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION func STARTING NEW TASK task &lt;/P&gt;&lt;P&gt;              [DESTINATION {dest|{IN GROUP {group|DEFAULT}}}] &lt;/P&gt;&lt;P&gt;              parameter_list &lt;/P&gt;&lt;P&gt;              [{PERFORMING subr}|{CALLING meth} ON END OF TASK]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gives you very clear information about this Key word. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No one would give you better information better than this, i hope&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2009 03:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253502#M1384025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-20T03:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Question on parallel processing using the STARTING NEW TASK keyword</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253503#M1384026</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;Try adding this line, by using DEFAULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'FUNCTION_NAME'
    starting new task ld_taskname
DESTINATION IN GROUP DEFAULT
    performing collect_output on end of task
      exporting
        pd_param1       = ld_param1
      tables
        pt_packet       = lt_packet.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do let us know if that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2009 06:00:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253503#M1384026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-20T06:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Question on parallel processing using the STARTING NEW TASK keyword</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253504#M1384027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vaibhav,&lt;/P&gt;&lt;P&gt;Thanks for the suggestion.  It turns out that it was another error totally unrelated to this.  So, my takeaway would be that although it does NOT mention this in the documentation, if you leave out the line 'DESTINATION IN GROUP DEFAULT' it still actually does the same thing anyway as if you did put that line in.  Interesting stuff.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Lee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2009 23:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-parallel-processing-using-the-starting-new-task-keyword/m-p/6253504#M1384027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-20T23:02:01Z</dc:date>
    </item>
  </channel>
</rss>

