<?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 tracking in batchinput method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-tracking-in-batchinput-method/m-p/2027191#M415693</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello abapers,&lt;/P&gt;&lt;P&gt;)how to handle errors in call transaction and session , what is the procedure to correct those errors , which technique frequently used .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Mar 2007 15:08:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-09T15:08:05Z</dc:date>
    <item>
      <title>error tracking in batchinput method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-tracking-in-batchinput-method/m-p/2027191#M415693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello abapers,&lt;/P&gt;&lt;P&gt;)how to handle errors in call transaction and session , what is the procedure to correct those errors , which technique frequently used .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 15:08:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-tracking-in-batchinput-method/m-p/2027191#M415693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T15:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: error tracking in batchinput method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-tracking-in-batchinput-method/m-p/2027192#M415694</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 better way of handling error's in call transaction, first is to collect the call messages. You should use the statment ...MESSAGES into itab. in the Call Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second, you should only care about the errors type 'E'(error) and 'A'(abort) in the messages tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, (i'm suposing that we are talking about processs error's and not Abap error's) shoud analize the each of the error's and try to finding the error reason (for example a customizing error's) and after that, run the program again for the bad registrys. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I not sure if this answers your question &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;, not sure i understand the problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 15:52:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-tracking-in-batchinput-method/m-p/2027192#M415694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T15:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: error tracking in batchinput method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-tracking-in-batchinput-method/m-p/2027193#M415695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;Batch Input&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Errors occured during Batch input sessions can corrected manually, when we re-process the session from SM35. Also you can analyze the errors from SM35 itself, before you re-process the same session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1-&amp;gt;goto SM35, select the session which resulted in error.&lt;/P&gt;&lt;P&gt;2-&amp;gt;choose button &amp;lt;b&amp;gt;Analysis&amp;lt;/b&amp;gt; or &amp;lt;b&amp;gt;Log&amp;lt;/b&amp;gt; to see the errors&lt;/P&gt;&lt;P&gt;30&amp;gt;choose button &amp;lt;b&amp;gt;Process&amp;lt;/b&amp;gt; to re-process the session &lt;/P&gt;&lt;P&gt;and manually enter the faulty values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;Call transaction&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to collect the error messages into an internal table of structure &amp;lt;b&amp;gt;BDCMSGCOLL&amp;lt;/b&amp;gt; and output/download the errors so that the end user can know which records are giving error. There is no option to re-process these records directly. &lt;/P&gt;&lt;P&gt;But you can do it in a different way. collect the records which are gives error and generate a session for these records only. Now the user can run the session online and correct the entries.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data itab type table of BDCMSGCOLL
Call transaction 'XK01' MODE 'A'  UPDATE 'S' MESSAGES INTO itab&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*mode A = display all screens. (E = errors only, N = no display)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Sajan Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 15:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-tracking-in-batchinput-method/m-p/2027193#M415695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T15:54:01Z</dc:date>
    </item>
  </channel>
</rss>

