<?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: Regarding BDCs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338346#M800268</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;Error handling in call transaction. &lt;/P&gt;&lt;P&gt;The BDCMSGCOLL does not have the messages text. It has only the message type, number and message parameters. &lt;/P&gt;&lt;P&gt;You have to read the message text. (recall that the database table T100 stores all the messages.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To handle error in bdc call transaction method...without using structure BDCMSGCOLL,&lt;/P&gt;&lt;P&gt;Use Std Function module 'FORMAT_MESSAGE' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using BDC session method and an error occurs, a a session is created in SM35. You can rerun the session in foreground from transaction SM35 after correcting the error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward Points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jan 2008 07:09:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-29T07:09:16Z</dc:date>
    <item>
      <title>Regarding BDCs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338343#M800265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to handle the errors in call transaction method without using the bdcmsgcoll structure?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 06:59:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338343#M800265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T06:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BDCs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338344#M800266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first declare an int tab type BDCMSGCOLL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use it in call transaction extension MESSAGES INTO MSG_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if MSG_TAB-MSGTYP = 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use the MESSAGE_PREPARE FM to get the text pass MSGV1, MSGV2, MSGV3, MSGV5, MSGNR, MSGID to the funchtion module . it'll return a text. write it or store it to an int tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 07:03:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338344#M800266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T07:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BDCs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338345#M800267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Error handling in call transaction. &lt;/P&gt;&lt;P&gt;The BDCMSGCOLL does not have the messages text. It has only the message type, number and message parameters. &lt;/P&gt;&lt;P&gt;You have to read the message text. (recall that the database table T100 stores all the messages.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To handle error in bdc call transaction method...without using structure BDCMSGCOLL,&lt;/P&gt;&lt;P&gt;Use Std Function module 'FORMAT_MESSAGE' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 07:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338345#M800267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T07:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BDCs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338346#M800268</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;Error handling in call transaction. &lt;/P&gt;&lt;P&gt;The BDCMSGCOLL does not have the messages text. It has only the message type, number and message parameters. &lt;/P&gt;&lt;P&gt;You have to read the message text. (recall that the database table T100 stores all the messages.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To handle error in bdc call transaction method...without using structure BDCMSGCOLL,&lt;/P&gt;&lt;P&gt;Use Std Function module 'FORMAT_MESSAGE' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using BDC session method and an error occurs, a a session is created in SM35. You can rerun the session in foreground from transaction SM35 after correcting the error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward Points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 07:09:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcs/m-p/3338346#M800268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T07:09:16Z</dc:date>
    </item>
  </channel>
</rss>

