<?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 Difference between the Direct Input Method and Batch Input Method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391785#M190305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give me an idea of Whatz the Differences between the Direct Input Method and Batch Input Methods in BDC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jun 2006 20:04:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-16T20:04:10Z</dc:date>
    <item>
      <title>Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391785#M190305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give me an idea of Whatz the Differences between the Direct Input Method and Batch Input Methods in BDC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:04:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391785#M190305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391786#M190306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI DEV,&lt;/P&gt;&lt;P&gt;Check these Links out&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="949273"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1262703"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC does a CALL TRANSACTION. So each and every case (document, master data,...) is committed to the database on commit. The commit occurs after completion of the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Direct input will commit the data to the database when the commit is requested explicitly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During BDC and direct input relevant DB tables are locked, they can not be updated by other processes. After commit they are unlocked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus a program using direct input must care for intermittent commits to avoid an overflow of the lock tables. For master data, a lock table overflow may occur for more than (roughly) 2000 cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although direct input does not do any screen input, the same routines are passed as BDC with (simulated) screen input&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:09:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391786#M190306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391787#M190307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no diff between Direct input and BDC because Direct input is one of the methods in BDC to transfer external data into SAP system.&lt;/P&gt;&lt;P&gt;In BDC you can transfer data into SAP system using 3 methods,&lt;/P&gt;&lt;P&gt;1.session&lt;/P&gt;&lt;P&gt;2.call transaction.&lt;/P&gt;&lt;P&gt;3.Direct input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In direct input the data is processed very quickly than other two methods since it wont create any sessions and no screens are processed rather data is transferred into SAP database directly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391787#M190307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391788#M190308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx for the inputs.Can you elaborate a little bit...under which circumstances we go for those? means is ther any criteria for choosing the Direct Input for an instance and the other methods for other instances?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391788#M190308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391789#M190309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Dev,&lt;/P&gt;&lt;P&gt;   Drect input the data is processed very quickly than other methods. So you make a choice in using these methods based on how fast you want your data processing to be..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:26:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391789#M190309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391790#M190310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev a,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Direct Input method:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      1. Only for error free datas and also master data &lt;/P&gt;&lt;P&gt;         updation.&lt;/P&gt;&lt;P&gt;      2. It will directly updates the database table. No &lt;/P&gt;&lt;P&gt;         screens involved.&lt;/P&gt;&lt;P&gt;      3. Transaction BMVO or Program RBMVSHOW has been &lt;/P&gt;&lt;P&gt;         used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   BDC(Batch Input Session):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      1. Screens will be called programmatically.&lt;/P&gt;&lt;P&gt;      2. First sessions will be created then we'll run the seesions in SM35 transaction.&lt;/P&gt;&lt;P&gt;      3.Synchronous database update. After the processing the session only database update will occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Selvapandian Arunachalam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391790#M190310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391791#M190311</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;   Upto 10,000 records we can use Call Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If morethan 10,000 we can go for BAtch Input Session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Call Dialog is outdated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Customer MAster, Material MAster, Vendor Master like all the masters are uploaded thro Direct Input Method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391791#M190311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Direct Input Method and Batch Input Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391792#M190312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Call Transaction:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Speed.&lt;/P&gt;&lt;P&gt;    Synchronous process.&lt;/P&gt;&lt;P&gt;    SYnc. and Async both update possible.&lt;/P&gt;&lt;P&gt;    Error handling thro Message structure BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;    Single Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Batch Input Session:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Slow.&lt;/P&gt;&lt;P&gt;    Asynchronous process.&lt;/P&gt;&lt;P&gt;    SYnc. update possible.&lt;/P&gt;&lt;P&gt;    Error log is created in the SM35.&lt;/P&gt;&lt;P&gt;    Multiple Transaction possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Direct Input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Without calling the screens but all the validations should be done and only for master datas upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Selvapandian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 20:47:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-the-direct-input-method-and-batch-input-method/m-p/1391792#M190312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T20:47:30Z</dc:date>
    </item>
  </channel>
</rss>

