<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703142#M308117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is advisable to split the file into various files and do a parallel processing...Use CALL Transaction method and execute all processing parallely in background.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Nov 2006 14:13:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-21T14:13:15Z</dc:date>
    <item>
      <title>Parallel processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703140#M308115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to implement parallel processing in the conversion program using BAPI call ?? I have a requirement to load 2 Million Material records Please guide me the best possible way of programming when data transfer load is this high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 14:10:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703140#M308115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T14:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703141#M308116</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;the best way is if possible split the records into dealable number of records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 14:12:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703141#M308116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T14:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703142#M308117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is advisable to split the file into various files and do a parallel processing...Use CALL Transaction method and execute all processing parallely in background.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 14:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703142#M308117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T14:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703143#M308118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is possible  to write  parallel processing program to process materials using BAPI. Which i  used for  GR creation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL BAPI_GOODSMVT_CREATE&lt;/P&gt;&lt;P&gt; starting new task w_taskname&lt;/P&gt;&lt;P&gt;     destination in group p_srvgrp&lt;/P&gt;&lt;P&gt;     performing gr_info on end of task&lt;/P&gt;&lt;P&gt;   exporting&lt;/P&gt;&lt;P&gt;     wa_gdsmvt_hdr  = w_goodsmvt_header&lt;/P&gt;&lt;P&gt;     wa_gdsmvt_code = w_goodsmvt_code&lt;/P&gt;&lt;P&gt;     w_tstrun       = p_test&lt;/P&gt;&lt;P&gt;   tables&lt;/P&gt;&lt;P&gt;     it_gdsmvt_itm = it_goodsmvt_item&lt;/P&gt;&lt;P&gt;     it_gdsmvt_sno = it_goodsmvt_serialnumber&lt;/P&gt;&lt;P&gt;     it_ret        = it_return&lt;/P&gt;&lt;P&gt;   exceptions&lt;/P&gt;&lt;P&gt;     communication_failure = 1&lt;/P&gt;&lt;P&gt;     system_failure        = 2&lt;/P&gt;&lt;P&gt;     resource_failure      = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  case sy-subrc.&lt;/P&gt;&lt;P&gt;    when 0.&lt;/P&gt;&lt;P&gt;      w_taskname = w_taskname + 1.&lt;/P&gt;&lt;P&gt;      w_snd_jobs = w_snd_jobs + 1.&lt;/P&gt;&lt;P&gt;    when 1 or 2.&lt;/P&gt;&lt;P&gt;      w_excep_flag = 'X'.&lt;/P&gt;&lt;P&gt;    when 3.&lt;/P&gt;&lt;P&gt;      if w_excep_flag = space.&lt;/P&gt;&lt;P&gt;        w_excep_flag = 'X'.&lt;/P&gt;&lt;P&gt;        wait until w_rcv_jobs &amp;gt;= w_snd_jobs up to '0.01' seconds.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        wait until w_rcv_jobs &amp;gt;= w_snd_jobs up to '0.1' seconds.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;        clear w_excep_flag.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        exit.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest LSMW for doing the same instead of implementing parallel processing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 16:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703143#M308118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T16:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703144#M308119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some codes for parallel processing,&lt;/P&gt;&lt;P&gt;/people/naresh.pai/blog/2005/06/16/parallel-processing-in-abap&lt;/P&gt;&lt;P&gt;/people/sap.user72/blog/2005/04/22/parallel-processing--an-introduction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would not be the best approach. Create batch jobs and schedule them. They will do the rest. For any failures you can always reprocess the failed records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kathirvel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 18:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703144#M308119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T18:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703145#M308120</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;This is a quite common problem (usually my customers have 'just' 200.000 materials...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use LSMW to define the upload and take the IDOC approach. The IDOC interface is very similar to the BAPI, because the IDOC is creating the materials with the BAPI. But you get a very powerfull parallelization with just a view clicks (in the end, when planning the steps to book the IDOC, some in the beginning when you have to maintain the partner profile).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2006 11:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parallel-processing/m-p/1703145#M308120</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2006-11-22T11:35:59Z</dc:date>
    </item>
  </channel>
</rss>

