<?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: BDC ERRORS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382373#M812083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          If u r using call transaction method u should use BDCMASGCOll to see the errors which are occured in the recording. If u are using session method u have to see the errors in error log in SM35 Tcode.Apart from this no other alternative is there to see the errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is useful to u please reward points,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Koti Reddy N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 13:51:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-13T13:51:33Z</dc:date>
    <item>
      <title>BDC ERRORS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382370#M812080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI &lt;/P&gt;&lt;P&gt;  how to see errors in bdc without going to log file in programming. can we find out the errors without moving to log file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2008 14:26:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382370#M812080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-10T14:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: BDC ERRORS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382371#M812081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Siva, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF u r using call transaction method then u can use bdcmsgcol table for capturing the error records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naveen Gupta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Reward Points if helpfull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 07:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382371#M812081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T07:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: BDC ERRORS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382372#M812082</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;for Call Transaction method , you can generate an internal table where you store all erroneous entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction &amp;lt;tcode&amp;gt; using &amp;lt;BDCTAB&amp;gt;&lt;/P&gt;&lt;P&gt;Mode &amp;lt;A/N/E&amp;gt;&lt;/P&gt;&lt;P&gt;Update &amp;lt;S/A&amp;gt;&lt;/P&gt;&lt;P&gt;Messages into &amp;lt;MSGTAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you update database table, operation is either successful or unsuccessful or operation is successful with some warning. These messages are stored in internal table (msgtab), which you specify along with MESSAGE statement. This internal table should be declared like &lt;STRONG&gt;BDCMSGCOLL&lt;/STRONG&gt;, a structure available in ABAP/4. It contains the following fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Tcode: Transaction code&lt;/P&gt;&lt;P&gt;2. Dyname: Batch point module name&lt;/P&gt;&lt;P&gt;3. Dynumb: Batch input Dyn number&lt;/P&gt;&lt;P&gt;4. Msgtyp: Batch input message type (A/E/W/I/S)&lt;/P&gt;&lt;P&gt;5. Msgspra: Batch input Lang, id of message&lt;/P&gt;&lt;P&gt;6. Msgid: Message id&lt;/P&gt;&lt;P&gt;7. MsgvN: Message variables (N = 1 - 4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each entry, which is updated in database, table message is available in BDCMSGCOLL. As BDCMSGCOLL is structure, you need to declare a internal table which can contain multiple records (unlike structure). And depending on the message type (A/E/W/I/S) , you can individually handle the records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that answered your query. Do reward points if it did.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rakesh Damera.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 13:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382372#M812082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T13:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: BDC ERRORS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382373#M812083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          If u r using call transaction method u should use BDCMASGCOll to see the errors which are occured in the recording. If u are using session method u have to see the errors in error log in SM35 Tcode.Apart from this no other alternative is there to see the errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is useful to u please reward points,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Koti Reddy N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 13:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-errors/m-p/3382373#M812083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T13:51:33Z</dc:date>
    </item>
  </channel>
</rss>

