<?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 error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727645#M633074</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;supose that I am uploading data from a flat file with 10 records and suppose if I get an error while uploading 5th record,then what willl happen and what we have to do in case of 'SESSION' as well as 'CALL TRANSACTION'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Sep 2007 06:18:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-03T06:18:17Z</dc:date>
    <item>
      <title>error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727645#M633074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;supose that I am uploading data from a flat file with 10 records and suppose if I get an error while uploading 5th record,then what willl happen and what we have to do in case of 'SESSION' as well as 'CALL TRANSACTION'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 06:18:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727645#M633074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T06:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727646#M633075</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;it will generate a seesion log there you will find at which record the error was found &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you put commitwork at the end it will stop at that record and the total records will not be updated &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if don't put commit work then it will up date up to 4th record&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 06:22:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727646#M633075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T06:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727647#M633076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;session stop the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call do success record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SESSION METHOD&lt;/P&gt;&lt;P&gt;Data is not updated in database table unless Session is processed.&lt;/P&gt;&lt;P&gt;No sy-subrc is returned.&lt;/P&gt;&lt;P&gt;Error log is created for error records.&lt;/P&gt;&lt;P&gt;Updation in database table is always synchronous&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION&lt;/P&gt;&lt;P&gt;Immediate updation in database table.&lt;/P&gt;&lt;P&gt;Sy-subrc is returned.&lt;/P&gt;&lt;P&gt;Errors need to be handled explicitly&lt;/P&gt;&lt;P&gt;Updation in database table can be synchronous Or Asynchronous&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction : &lt;/P&gt;&lt;P&gt;the transaction will be called immediatly when u run the report and the recording will be done once u execute the program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Session method:&lt;/P&gt;&lt;P&gt;Session method will create a session ... U can schedule the session at any time so that it runs at the specified time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us suppose that u need to enter some 1000 materials using MM01.. when u run this during normal working hours, it consumes time and server may lose its pace..&lt;/P&gt;&lt;P&gt;to avoid this , u can create a session for this data upload and schedule the session when users are less...say friday night..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will be useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 06:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727647#M633076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T06:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727648#M633077</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;When you use CALL TRANSACTION, the data for the previous four records is already updated in the database.. if you have used it in E or A mode then the system will stop at the error screen.. but if you have used N mode, then it will skip the record and go ahead to the next record.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, you will need to track the error record from the message table.. and later display a report or download the error records..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For SESSION method.. no record data will be updated in the database.. a log will be generated.. you can see that, correct the error record and re execute the session..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 06:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error/m-p/2727648#M633077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T06:28:47Z</dc:date>
    </item>
  </channel>
</rss>

