<?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: STRUCTURE OF PROGRAMS THAT USE PARALLEL PROCESSING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807935#M915907</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 I just want the structure of parallel processing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 May 2008 03:18:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-22T03:18:48Z</dc:date>
    <item>
      <title>STRUCTURE OF PROGRAMS THAT USE PARALLEL PROCESSING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807932#M915904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I WANT THE STRUCTURAL PROGRAM FOR PARALLEL PROCESSING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DON'T GIVE THE LINKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRY TO EXPLAIN IN CLEAR VIEW, SO THAT POINTS WILL BE REWARDED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARUN REDDY I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 06:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807932#M915904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T06:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: STRUCTURE OF PROGRAMS THAT USE PARALLEL PROCESSING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807933#M915905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generaly we are not using loop in a loop for performance issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But sometimes we have to follow this for catering requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That time when you are using 2nd loop, add a where clause for giving condition. (condition value is coming from 1st internal table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at int_tab1 into wa_tab1.&lt;/P&gt;&lt;P&gt;   Loop at int_tab2 into wa_tab2 where matnr = wa_tab1-matnr.&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This tecnique is called &lt;STRONG&gt;Parallel cursor&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will suffice the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishnendu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 09:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807933#M915905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T09:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: STRUCTURE OF PROGRAMS THAT USE PARALLEL PROCESSING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807934#M915906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Parallel processing is implemented in ABAP reports and programs, not in the background processing system itself. That means that jobs are only processed in parallel if the report that runs in a job step is programmed for parallel processing. Such reports can also process in parallel if they are started interactively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parallel-processing is implemented with a special variant of asynchonous RFC. Itu2019s important that you use only the correct variant for your own parallel processing applications: the CALL FUNCTION STARTING NEW TASK DESTINATION IN GROUP keyword. Using other variants of asynchronous RFC circumvents the built-in safeguards in the correct keyword, and can bring your system to its knees&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 09:40:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807934#M915906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T09:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: STRUCTURE OF PROGRAMS THAT USE PARALLEL PROCESSING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807935#M915907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 I just want the structure of parallel processing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2008 03:18:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-of-programs-that-use-parallel-processing/m-p/3807935#M915907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-22T03:18:48Z</dc:date>
    </item>
  </channel>
</rss>

