<?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 Error Messages ???? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984639#M72702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did u pass all the parameters&lt;/P&gt;&lt;P&gt;MESSAGE_V1,MESSAGE_V2,MESSAGE_V3,MESSAGE_V4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;gv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Sep 2005 07:00:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-06T07:00:49Z</dc:date>
    <item>
      <title>BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984632#M72695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i have one bdc for PR Creation, and if there is any error message i stored in my internal table, now my problem is that when i find the text of that error message no. like 629 in t100 it gives &amp;lt;b&amp;gt;Item &amp;amp; payment budget exceeded&amp;lt;/b&amp;gt; but when i run it in foreground it gives the correct error like &amp;lt;b&amp;gt;Item XXXX payment budget exceeded 5000.&amp;lt;/b&amp;gt; how to read this error message. when i read messagtab table after cunning by bdc these values comes in msgv1 &amp;amp; msgv2 etc.. but how to know in which field the value is coming.. i hope i have cleared my query..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abhishek suppal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 04:04:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984632#M72695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T04:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984633#M72696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data wrk_message(250).&lt;/P&gt;&lt;P&gt;MESSAGE ID &amp;lt;itab messageid&amp;gt; TYPE &amp;lt;itab messagetype&amp;gt; NUMBER &amp;lt;itab message number &amp;gt; with &amp;lt;itab message 1 &amp;gt; &amp;lt;itab message 2 &amp;gt; &amp;lt;itab message 3 &amp;gt; &amp;lt;itab message 4 &amp;gt; into wrk_message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;gv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 04:08:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984633#M72696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T04:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984634#M72697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the standard code for handling messages returned by call transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT MESSTAB.&lt;/P&gt;&lt;P&gt;        SELECT SINGLE * FROM T100 WHERE SPRSL = MESSTAB-MSGSPRA&lt;/P&gt;&lt;P&gt;                                  AND   ARBGB = MESSTAB-MSGID&lt;/P&gt;&lt;P&gt;                                  AND   MSGNR = MESSTAB-MSGNR.&lt;/P&gt;&lt;P&gt;        IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;          L_MSTRING = T100-TEXT.&lt;/P&gt;&lt;P&gt;          IF L_MSTRING CS '&amp;amp;1'.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;1' WITH MESSTAB-MSGV1 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;2' WITH MESSTAB-MSGV2 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;3' WITH MESSTAB-MSGV3 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;4' WITH MESSTAB-MSGV4 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;' WITH MESSTAB-MSGV1 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;' WITH MESSTAB-MSGV2 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;' WITH MESSTAB-MSGV3 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;            REPLACE '&amp;amp;' WITH MESSTAB-MSGV4 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;          CONDENSE L_MSTRING.&lt;/P&gt;&lt;P&gt;          WRITE: / MESSTAB-MSGTYP, L_MSTRING(250).&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          WRITE: / MESSTAB.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 04:18:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984634#M72697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T04:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984635#M72698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhishek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Use the Function Module, 'FORMAT_MESSAGE' to format the message, this function module will return the formatted message in the export parameter... Hope this will help you&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;Phani Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 04:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984635#M72698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T04:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984636#M72699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi phani&lt;/P&gt;&lt;P&gt;is there any FM to read the long text also for any error like for message class BP and no. 629.... i want to show the long text also.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abhishek suppal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 05:47:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984636#M72699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T05:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984637#M72700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use fm BAPI_MESSAGE_GETDETAIL to get long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz try to close ur previous threads if solved.There are many threads still open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;gv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 06:24:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984637#M72700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T06:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984638#M72701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear gv&lt;/P&gt;&lt;P&gt;i used this fm&lt;/P&gt;&lt;P&gt;but it gives just the text as&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;In document item , payment budget  for fiscal year  was exceeded by .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;it shud display&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;In document item XXXX, payment budget  for fiscal year  2006 was exceeded by 5500 .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;for my msg id BP and no. 629.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 06:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984638#M72701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T06:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Error Messages ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984639#M72702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did u pass all the parameters&lt;/P&gt;&lt;P&gt;MESSAGE_V1,MESSAGE_V2,MESSAGE_V3,MESSAGE_V4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;gv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 07:00:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-messages/m-p/984639#M72702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T07:00:49Z</dc:date>
    </item>
  </channel>
</rss>

