<?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 BDCMSGCOLL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069895#M1355386</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;below is the piece of code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     call transaction 'FB01' using BDCDATA mode 'N'&lt;/P&gt;&lt;P&gt;                                         messages into MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      read table MESSTAB with key MSGTYP = 'E' into WA_MESSTAB.&lt;/P&gt;&lt;P&gt;      if SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        perform READ_MESSAGE using WA_MESSTAB-MSGID WA_MESSTAB-MSGNR&lt;/P&gt;&lt;P&gt;                                 changing V_MSGSTR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        V_ERROR = V_ERROR + C_INCREMENT.&lt;/P&gt;&lt;P&gt;        WA_RESULT-MESSAGE = V_MSGSTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        append WA_RESULT to IT_RESULT.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        read table MESSTAB with key MSGTYP = 'S' into WA_MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        if SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          perform READ_MESSAGE using WA_MESSTAB-MSGID WA_MESSTAB-MSGNR&lt;/P&gt;&lt;P&gt;                                     changing V_MSGSTR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          V_SUCCESS = V_SUCCESS + C_INCREMENT.&lt;/P&gt;&lt;P&gt;          WA_RESULT-MESSAGE = V_MSGSTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          append WA_RESULT to IT_RESULT.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      V_ERROR = V_ERROR + C_INCREMENT.&lt;/P&gt;&lt;P&gt;      WA_RESULT-MESSAGE = TEXT-012.&lt;/P&gt;&lt;P&gt;      append WA_RESULT to IT_RESULT.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ashu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2009 05:03:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-25T05:03:47Z</dc:date>
    <item>
      <title>Regarding BDCMSGCOLL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069892#M1355383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  I have used FORMAT_MESSAGE and traced the errors while trying to upload the file.&lt;/P&gt;&lt;P&gt;Now I want to Display the error message along with the record from the text file .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say in the text file i have the vehicle number SHG5 and the error is "Vehicle does not exist',&lt;/P&gt;&lt;P&gt;I want to display it for the users as.&lt;/P&gt;&lt;P&gt;SHG5   Vehicle does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i do this.Kindly advise.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 01:51:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069892#M1355383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-25T01:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BDCMSGCOLL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069893#M1355384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a message like the following in your custom message class YZZZ    999 as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp; &amp;amp; &amp;amp; &amp;amp; &amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message e999(yzzz) with v_textfile_veh_number v_message into v_message_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now v_message_text contains your message SHG5 Vehicle does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 02:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069893#M1355384</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-25T02:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BDCMSGCOLL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069894#M1355385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
Try this way.
&lt;PRE&gt;&lt;CODE&gt;VEHICLE_NO = 'SHG5'.
MESSAGE E027(Z7) WITH VEHICLE_NO 'Vehicle does not exist'.&lt;/CODE&gt;&lt;/PRE&gt;
"Z7 is custom message class.
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 02:18:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069894#M1355385</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-08-25T02:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding BDCMSGCOLL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069895#M1355386</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;below is the piece of code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     call transaction 'FB01' using BDCDATA mode 'N'&lt;/P&gt;&lt;P&gt;                                         messages into MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      read table MESSTAB with key MSGTYP = 'E' into WA_MESSTAB.&lt;/P&gt;&lt;P&gt;      if SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        perform READ_MESSAGE using WA_MESSTAB-MSGID WA_MESSTAB-MSGNR&lt;/P&gt;&lt;P&gt;                                 changing V_MSGSTR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        V_ERROR = V_ERROR + C_INCREMENT.&lt;/P&gt;&lt;P&gt;        WA_RESULT-MESSAGE = V_MSGSTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        append WA_RESULT to IT_RESULT.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        read table MESSTAB with key MSGTYP = 'S' into WA_MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        if SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          perform READ_MESSAGE using WA_MESSTAB-MSGID WA_MESSTAB-MSGNR&lt;/P&gt;&lt;P&gt;                                     changing V_MSGSTR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          V_SUCCESS = V_SUCCESS + C_INCREMENT.&lt;/P&gt;&lt;P&gt;          WA_RESULT-MESSAGE = V_MSGSTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          append WA_RESULT to IT_RESULT.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      V_ERROR = V_ERROR + C_INCREMENT.&lt;/P&gt;&lt;P&gt;      WA_RESULT-MESSAGE = TEXT-012.&lt;/P&gt;&lt;P&gt;      append WA_RESULT to IT_RESULT.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ashu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 05:03:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdcmsgcoll/m-p/6069895#M1355386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-25T05:03:47Z</dc:date>
    </item>
  </channel>
</rss>

