<?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: Doubt regarding Message statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946493#M64316</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;MESSAGE ID id TYPE mtype NUMBER n. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want a Pop-up message then u have to give TYPE I message class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MESSAGE i001 WITH 'COMPUTED' text-001 .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Text-001 should be FFF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes in ur messgae&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;MESSAGE ID TYPE E000 WITH 'COMPUTED' text-001.&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaae335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaae335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Judith Jessie Selvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jun 2005 04:04:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-27T04:04:43Z</dc:date>
    <item>
      <title>Doubt regarding Message statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946491#M64314</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 want to pop up a message in which I want the valye of X tp be replaced by its value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: X(3) TYPE C VALUE 'FFF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE ID 'ERROR MESSAGE' TYPE 'E' NUMBER '000' WITH 'COMPUTED' '&amp;amp;X&amp;amp;'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this does not work.&lt;/P&gt;&lt;P&gt;Can someone help me out ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tushar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2005 22:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946491#M64314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-26T22:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding Message statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946492#M64315</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;Try to use variable X directly:&lt;/P&gt;&lt;P&gt;MESSAGE ID 'ERROR MESSAGE' TYPE 'E' NUMBER '000' WITH 'COMPUTED' X.&lt;/P&gt;&lt;P&gt;then symbol "&amp;amp;1" in your message text will be replaced with "COMPUTED" and symbol "&amp;amp;2" will be replace with variable X content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krzys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2005 23:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946492#M64315</guid>
      <dc:creator>krzysztof_konitz4</dc:creator>
      <dc:date>2005-06-26T23:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding Message statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946493#M64316</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;MESSAGE ID id TYPE mtype NUMBER n. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want a Pop-up message then u have to give TYPE I message class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MESSAGE i001 WITH 'COMPUTED' text-001 .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Text-001 should be FFF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes in ur messgae&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;MESSAGE ID TYPE E000 WITH 'COMPUTED' text-001.&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaae335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaae335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Judith Jessie Selvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 04:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946493#M64316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T04:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding Message statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946494#M64317</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;Here is the sample code.Whatever value you type in p_matnr will be displayed if you press the button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab type standard table of mara.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_matnr LIKE mara-matnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(20) TEXT-001 USER-COMMAND GO.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN .&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'GO'.&lt;/P&gt;&lt;P&gt;message i005 with p_matnr.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your message is static,you better can create a text-symbol[say.eg..005 - 'fff'] for it and use the following code.&lt;/P&gt;&lt;P&gt;message i005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.If so,reward points.Otherwise,get back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 04:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946494#M64317</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-27T04:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding Message statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946495#M64318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tushar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ID part refers to a Message Class. Here you specified 'Error Message' which is an invalid name as well as being not in customer name space (does not start with Y or Z). You can examine existing Message Classes as well as create and maintain with Txn SE91. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A message with Number mentioned with the number part should exist in the specified Message Class. In your case the message should have at least  two '&amp;amp;' symbols as place holders for two variable you are going to substitute from your ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do not enclose a variable name with  &amp;amp; and  quotes in the ABAP code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As already mentioned in one of the replies, Error Messages by default are not dispalyed in a popup. It is a user setting. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, please read the F1 help for the Message statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ramki Maley.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 18:49:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-message-statement/m-p/946495#M64318</guid>
      <dc:creator>ramki_maley</dc:creator>
      <dc:date>2005-06-28T18:49:25Z</dc:date>
    </item>
  </channel>
</rss>

