<?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 -  How we can identify errors in Transaction method?. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332625#M169331</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;check this thread..&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="89894"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 May 2006 10:22:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-04T10:22:56Z</dc:date>
    <item>
      <title>BDC -  How we can identify errors in Transaction method?.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332622#M169328</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; How we can identify errors in Transaction method?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards &lt;/P&gt;&lt;P&gt; Nikhil V Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 10:06:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332622#M169328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T10:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: BDC -  How we can identify errors in Transaction method?.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332623#M169329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;check the return code after the CALL TRANSACTION statemnt.&lt;/P&gt;&lt;P&gt;for eg.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'ME21' USING itab MODE 'A' UPDATE 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;&amp;lt;Error Handling&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 10:08:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332623#M169329</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-04T10:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDC -  How we can identify errors in Transaction method?.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332624#M169330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the following syntax:&lt;/P&gt;&lt;P&gt;call transaction &amp;lt;TCODE&amp;gt; using it_bdcdata options from x_ctuparams messages into i_RETURN.&lt;/P&gt;&lt;P&gt;   loop at i_return.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          ID              = i_return-id&lt;/P&gt;&lt;P&gt;          LANG            = sy-langu&lt;/P&gt;&lt;P&gt;          NO              = i_return-number&lt;/P&gt;&lt;P&gt;          V1              = i_return-MESSAGE_V1&lt;/P&gt;&lt;P&gt;          V2              = i_return-MESSAGE_V2&lt;/P&gt;&lt;P&gt;          V3              = i_return-MESSAGE_V3&lt;/P&gt;&lt;P&gt;          V4              = i_return-MESSAGE_V4&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          MSG             = l_message&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          NOT_FOUND       = 1&lt;/P&gt;&lt;P&gt;          OTHERS          = 2&lt;/P&gt;&lt;P&gt;                .&lt;/P&gt;&lt;P&gt;      check sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      write: / l_message.&lt;/P&gt;&lt;P&gt;   endloop.rEGARDS,&lt;/P&gt;&lt;P&gt;rAVI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 10:09:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332624#M169330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T10:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: BDC -  How we can identify errors in Transaction method?.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332625#M169331</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;check this thread..&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="89894"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 10:22:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332625#M169331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T10:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: BDC -  How we can identify errors in Transaction method?.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332626#M169332</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;CALL TRANSACTION 'FK01' USING IT_BDCDATA MODE 'A'&lt;/P&gt;&lt;P&gt;                        UPDATE 'S'&lt;/P&gt;&lt;P&gt;                        MESSAGES INTO IT_MESSAGES.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;PERFORM FORMAT_MESSAGES.&lt;/P&gt;&lt;P&gt;form FORMAT_MESSAGES .&lt;/P&gt;&lt;P&gt;DATA: L_MSG(100).&lt;/P&gt;&lt;P&gt;LOOP AT IT_MESSAGES.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;   ID              = IT_MESSAGES-MSGID&lt;/P&gt;&lt;P&gt;   LANG            = SY-LANGU&lt;/P&gt;&lt;P&gt;   NO              = IT_MESSAGES-MSGNR&lt;/P&gt;&lt;P&gt;   V1              = IT_MESSAGES-MSGV1&lt;/P&gt;&lt;P&gt;   V2              = IT_MESSAGES-MSGV2&lt;/P&gt;&lt;P&gt;   V3              = IT_MESSAGES-MSGV3&lt;/P&gt;&lt;P&gt;   V4              = IT_MESSAGES-MSGV4&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   MSG             = L_MSG&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NOT_FOUND       = 1&lt;/P&gt;&lt;P&gt;   OTHERS          = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;write:/ l_msg.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " FORMAT_MESSAGES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HOPE THIS HELPS,&lt;/P&gt;&lt;P&gt;PRIYA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 10:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-how-we-can-identify-errors-in-transaction-method/m-p/1332626#M169332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T10:27:53Z</dc:date>
    </item>
  </channel>
</rss>

