<?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 message numbers in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095800#M436303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look at the table T100 for massages Numbers and Message texts, and alos look at the transaction code SE91 for the Numbers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the sample code for message numbers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;     SELECT SINGLE * FROM t100 WHERE sprsl = it_messtab-msgspra
                                        AND   arbgb = it_messtab-msgid
                                        AND   msgnr = it_messtab-msgnr.
      IF sy-subrc = 0.
        g_l_mstring = t100-text.
        IF g_l_mstring CS c_val35.                          " '&amp;amp;1'.
          REPLACE c_val35 WITH it_messtab-msgv1 INTO g_l_mstring.
          REPLACE c_val36 WITH it_messtab-msgv2 INTO g_l_mstring.
          REPLACE c_val37 WITH it_messtab-msgv3 INTO g_l_mstring.
          REPLACE c_val38 WITH it_messtab-msgv4 INTO g_l_mstring.
        ELSE.
          REPLACE c_val39 WITH it_messtab-msgv1 INTO g_l_mstring.
          REPLACE c_val39 WITH it_messtab-msgv2 INTO g_l_mstring.
          REPLACE c_val39 WITH it_messtab-msgv3 INTO g_l_mstring.
          REPLACE c_val39 WITH it_messtab-msgv4 INTO g_l_mstring.
        ENDIF.

        CONDENSE g_l_mstring.
        IF NOT g_l_mstring+0(8) = c_val40.     " 'No batch'.
          g_cnt = g_cnt + 1.
          WRITE: /1 g_cnt,5 g_l_mstring(100).
        ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Apr 2007 12:23:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-09T12:23:18Z</dc:date>
    <item>
      <title>Regarding message numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095798#M436301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the message numbers available in ABAP. How can we use that in our code. Can anyone explain me with sample codes, it will be a great help for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 12:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095798#M436301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T12:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095799#M436302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Message numbers are stored in T100 table.You can fetch the message text from this table by querying MSGNR = &amp;lt;message number&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 12:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095799#M436302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T12:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095800#M436303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look at the table T100 for massages Numbers and Message texts, and alos look at the transaction code SE91 for the Numbers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the sample code for message numbers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;     SELECT SINGLE * FROM t100 WHERE sprsl = it_messtab-msgspra
                                        AND   arbgb = it_messtab-msgid
                                        AND   msgnr = it_messtab-msgnr.
      IF sy-subrc = 0.
        g_l_mstring = t100-text.
        IF g_l_mstring CS c_val35.                          " '&amp;amp;1'.
          REPLACE c_val35 WITH it_messtab-msgv1 INTO g_l_mstring.
          REPLACE c_val36 WITH it_messtab-msgv2 INTO g_l_mstring.
          REPLACE c_val37 WITH it_messtab-msgv3 INTO g_l_mstring.
          REPLACE c_val38 WITH it_messtab-msgv4 INTO g_l_mstring.
        ELSE.
          REPLACE c_val39 WITH it_messtab-msgv1 INTO g_l_mstring.
          REPLACE c_val39 WITH it_messtab-msgv2 INTO g_l_mstring.
          REPLACE c_val39 WITH it_messtab-msgv3 INTO g_l_mstring.
          REPLACE c_val39 WITH it_messtab-msgv4 INTO g_l_mstring.
        ENDIF.

        CONDENSE g_l_mstring.
        IF NOT g_l_mstring+0(8) = c_val40.     " 'No batch'.
          g_cnt = g_cnt + 1.
          WRITE: /1 g_cnt,5 g_l_mstring(100).
        ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 12:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095800#M436303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T12:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095801#M436304</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;we can create new message number in tcode se91.&lt;/P&gt;&lt;P&gt;give the msg class,message numer and press create there u can enter some text.save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in program u have to call as MESSAGE &amp;lt;MSG TYPE&amp;gt;&amp;lt;MSG NUMBER&amp;gt;(MSG CLASS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK THIS LINKS&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbaaaf35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbaaaf35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b3e454211d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b3e454211d189710000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;BHARAT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 12:34:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095801#M436304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T12:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095802#M436305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbaaaf35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbaaaf35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 12:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095802#M436305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T12:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095803#M436306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the complete demo for messages in the demo program:&lt;/P&gt;&lt;P&gt;DEMO_MESSAGES&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 12:39:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-numbers/m-p/2095803#M436306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T12:39:52Z</dc:date>
    </item>
  </channel>
</rss>

