<?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: MB1C Upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093728#M1507497</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like to dissent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 million records is a lot of stuff. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep in mind that you cannot load all the records in one go (most likely not). I would use LSMW with BAPI Bus2017 (MB_CREATE_GOODS_MOVEMENT) or possibly even a Batch-Input. Why LSMW? Because LSMW stores your data in several stages - you load them, they get stored on the application-server as the .READ file. Then you convert them according to your rules and the results get stored in the .CONV file. This has several advantages: if you experience a delay between load and convert or between convert and execute, you wouldn't  have to do all from scratch again, you can re-start to proceed where you previously left off ... with the dataload you have at hand this is no small gain ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... why even possibly BDC - because I can create BDC-sessions in a size that is likely to be of no performance-thread to the system and can then decide how many to process in parallel ... I have only package-sized protocolls to read (in case of errors) ... etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jul 2010 12:50:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-29T12:50:42Z</dc:date>
    <item>
      <title>MB1C Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093725#M1507494</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 have to upload more than 1 millons record in MB1C T-Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know the better way to upload LSMW , BAPI Or Idoc.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jul 2010 12:06:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093725#M1507494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-29T12:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: MB1C Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093726#M1507495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use BAPI - BAPI_GOODSMVT_CREATE.&lt;/P&gt;&lt;P&gt;Please read function module documetation for more details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jul 2010 12:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093726#M1507495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-29T12:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: MB1C Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093727#M1507496</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;Use BAPI_GOODSMVT_CREATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call this fucntion module in loop and populate data for each material document. Refresh the BAPI itabs after each call and do remeber to wait after commit so that the locks get release.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jul 2010 12:30:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093727#M1507496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-29T12:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: MB1C Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093728#M1507497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like to dissent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 million records is a lot of stuff. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep in mind that you cannot load all the records in one go (most likely not). I would use LSMW with BAPI Bus2017 (MB_CREATE_GOODS_MOVEMENT) or possibly even a Batch-Input. Why LSMW? Because LSMW stores your data in several stages - you load them, they get stored on the application-server as the .READ file. Then you convert them according to your rules and the results get stored in the .CONV file. This has several advantages: if you experience a delay between load and convert or between convert and execute, you wouldn't  have to do all from scratch again, you can re-start to proceed where you previously left off ... with the dataload you have at hand this is no small gain ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... why even possibly BDC - because I can create BDC-sessions in a size that is likely to be of no performance-thread to the system and can then decide how many to process in parallel ... I have only package-sized protocolls to read (in case of errors) ... etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jul 2010 12:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093728#M1507497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-29T12:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: MB1C Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093729#M1507498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please search before asking - post locked

Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jul 2010 13:06:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mb1c-upload/m-p/7093729#M1507498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-29T13:06:47Z</dc:date>
    </item>
  </channel>
</rss>

