<?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: Data Upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705295#M308995</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One the session is created, we wont be using the file again. We can use the session created without interacting the source file. Hence no need to delete any records from the file.&lt;/P&gt;&lt;P&gt;Whereas transactions in session, we will reprocess the records that are yet to be processed and hence we will not modify the session.&lt;/P&gt;&lt;P&gt;Every execution of a session will create a log. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 29 Oct 2006 07:04:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-29T07:04:43Z</dc:date>
    <item>
      <title>Data Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705290#M308990</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;At the time of uploading data some records got problem. Then what can we do? can we start from the beginning or do with the errored records. Plz explain step by step for both the methods(Call Transaction as well as Session Method.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Oct 2006 12:46:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705290#M308990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-28T12:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Data Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705291#M308991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using the session method, you can process transactions in error using SM35.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wouldn't recommend CALL TRANSACTION if you expect to have a lot of errors to process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Oct 2006 19:23:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705291#M308991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-28T19:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Data Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705292#M308992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when Iam uploading 10000 records using session method, of that 10 records contains errors. can I reprocess all the records or process only the 10 error records?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 04:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705292#M308992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-29T04:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Data Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705293#M308993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Using the session method we can process the error records again via transaction SM35.&lt;/P&gt;&lt;P&gt;  As per your example, a session is created for 10000 transactions and 10 were error. So next time when we go and re-process the session these 10 records only wil be processed. We can check the same, if we go the ANLAYSIS of the session, we can find the statastics like Records Processed, To Process...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 06:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705293#M308993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-29T06:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Data Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705294#M308994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eswar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply. &lt;/P&gt;&lt;P&gt;In reprocessing can I delete the processed records or no need to delete?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 06:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705294#M308994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-29T06:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Data Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705295#M308995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One the session is created, we wont be using the file again. We can use the session created without interacting the source file. Hence no need to delete any records from the file.&lt;/P&gt;&lt;P&gt;Whereas transactions in session, we will reprocess the records that are yet to be processed and hence we will not modify the session.&lt;/P&gt;&lt;P&gt;Every execution of a session will create a log. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 07:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705295#M308995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-29T07:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Data Upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705296#M308996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If you are using session method then inside SM35 transaction you can very wel check : number of records processed, records in error, number of records needs to process.&lt;/P&gt;&lt;P&gt; Here you can also check log option to see reason why these records gone into error.So once you will get list of error records just check is there any problem in upload file or is there any other reason. Fixed the error and again you can create upload file for error records and processed through BDC or LSMW.&lt;BR /&gt;\&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  If you are using Call transaction method then write a ABAP code in such manner that it will give you number of processed records then number of error records at the end of your BDC processed. So here again you can find out reason for error records and create and upload file for error records only and then again you can processed it.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt; Shilpa K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 09:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-upload/m-p/1705296#M308996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T09:15:13Z</dc:date>
    </item>
  </channel>
</rss>

