<?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>Question Re: Task type in parallel processing in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaa-p/13885988#M4886540</link>
    <description>&lt;P&gt;The RFC task behind STARTING NEW TASK is like starting a User Session (same as if a user logins) to which you give a task name and so you may reuse it for another RFC call or close it (RFC_CONNECTION_CLOSE).&lt;/P&gt;&lt;P&gt;The RFC runs in a DIA workprocess.&lt;/P&gt;&lt;P&gt;It's not a background job (which runs in a BTC workprocess).&lt;/P&gt;&lt;P&gt;You may see the open tasks via SM04 (user sessions).&lt;/P&gt;&lt;P&gt;See there to understand the memory organization: &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenmemory_organization.htm" target="_blank"&gt;https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenmemory_organization.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Concerning the limit of tasks, joker, it's not clear to me.&lt;/P&gt;&lt;P&gt;You may use pRFC (starting new task in destination group), you should not have this limit.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Oct 2024 19:04:56 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2024-10-02T19:04:56Z</dc:date>
    <item>
      <title>Task type in parallel processing</title>
      <link>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaq-p/13885904</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;currently I am reseachring on parallel processing in ABAP.&lt;/P&gt;&lt;P&gt;The most solutions I found so far are based on asynchronous RFC calls. So far so good.&lt;/P&gt;&lt;P&gt;Also, in most cases, one talks about 'tasks' instead of 'jobs' or 'calls'.&lt;BR /&gt;Especially regarding the call `STARTING NEW TASK ...`&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Unfortunately, for me it's not clear, what we are talking about on a technical layer...&lt;/P&gt;&lt;P&gt;Is a 'task' in general a 'background job" that runs on an application server?&lt;BR /&gt;&lt;SPAN&gt;Is there &lt;/SPAN&gt;&lt;SPAN&gt;any transactional overview, like SM37, to see all created (and running) 'tasks"?&lt;BR /&gt;Is a 'task' a dialog process, so do I have to take care about the limit of dialog processes?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe anyone can clearify.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 16:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaq-p/13885904</guid>
      <dc:creator>dschiener</dc:creator>
      <dc:date>2024-10-02T16:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Task type in parallel processing</title>
      <link>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaa-p/13885988#M4886540</link>
      <description>&lt;P&gt;The RFC task behind STARTING NEW TASK is like starting a User Session (same as if a user logins) to which you give a task name and so you may reuse it for another RFC call or close it (RFC_CONNECTION_CLOSE).&lt;/P&gt;&lt;P&gt;The RFC runs in a DIA workprocess.&lt;/P&gt;&lt;P&gt;It's not a background job (which runs in a BTC workprocess).&lt;/P&gt;&lt;P&gt;You may see the open tasks via SM04 (user sessions).&lt;/P&gt;&lt;P&gt;See there to understand the memory organization: &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenmemory_organization.htm" target="_blank"&gt;https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenmemory_organization.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Concerning the limit of tasks, joker, it's not clear to me.&lt;/P&gt;&lt;P&gt;You may use pRFC (starting new task in destination group), you should not have this limit.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 19:04:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaa-p/13885988#M4886540</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2024-10-02T19:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Task type in parallel processing</title>
      <link>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaa-p/13888455#M4886798</link>
      <description>&lt;P&gt;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/145194"&gt;@Sandra_Rossi&lt;/a&gt;thank you for your reply.&lt;/P&gt;&lt;P&gt;As far as I know there is a system wide limit of processes that may be executed at one time. Regarding this limit I am wondering if it is possible to start as much dialog processes in parallel by using default syntax like STARTING NEW TASK to crash the system or if there is a fall back built in to prevent of this case.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Furthermore I guess using dialog processes to implement parallelism won’t be such a good idea in case of longer running processes (e.g. 1 hour). Otherwise theses processes would block dialog user of logging in or using the system. Am I right?&lt;/P&gt;&lt;P&gt;In this case IN BACKGROUND UNIT could help out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 10:05:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaa-p/13888455#M4886798</guid>
      <dc:creator>dschiener</dc:creator>
      <dc:date>2024-10-04T10:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Task type in parallel processing</title>
      <link>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaa-p/13888764#M4886862</link>
      <description>There are no differences between dialog and background workprocesses, you may arrange how many workprocesses are assigned to DIA or BTC. That won't block users. You indicate the ratio of dialog workprocesses reserved to users (check the profile parameters). RFC runs in dialog tasks because they should be sized to run small units of work (like a dialog operation). bgRFC also runs via dialog workprocesses but you may select 3 priorities with each a different timeout (profile parameters again).</description>
      <pubDate>Fri, 04 Oct 2024 14:32:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/task-type-in-parallel-processing/qaa-p/13888764#M4886862</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2024-10-04T14:32:57Z</dc:date>
    </item>
  </channel>
</rss>

