<?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: HI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572016#M859782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;se93 and se91&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Mar 2008 08:36:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-21T08:36:03Z</dc:date>
    <item>
      <title>HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572014#M859780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*&lt;STRONG&gt;What is the Transaction code to create a Transaction-code and a Message&lt;/STRONG&gt; ???*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572014#M859780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T08:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572015#M859781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For tCode SE93 &lt;/P&gt;&lt;P&gt;For message SE91&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572015#M859781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T08:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572016#M859782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;se93 and se91&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572016#M859782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T08:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572017#M859783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SE93 -&amp;gt; creation for transction code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE91 -&amp;gt; Message Maintenece&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:37:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572017#M859783</guid>
      <dc:creator>nivaskumar2</dc:creator>
      <dc:date>2008-03-21T08:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572018#M859784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
se91 and se 93
1 Goto Transaction code se91.
 
Give Message class name  creat message, 
2 Messages are defined in table T100.
in in programging ................
 
 
 
3. Syntax
 
Message xnnn
 
x is the type of message ( See: Types of messages )
 
nnn is the identifier of the message.
 
Example: message e001
 
4. Setting the message class
 
You set the message class for the whole program in the header of thje program:
 
report my_report message-id .
 
Setting the message class for a sigle message:
 
Message ID type number 
 
Example: message id &amp;#145;ZB&amp;#146; type &amp;#145;W&amp;#146; number &amp;#145;004&amp;#146; with &amp;#145;Test&amp;#146;.
 
5. Types of messages
 
IInfoPress ENTER to continue
WWarningCorrection possible
EErrorCorrection required
 
AAbendTransaction terminated
XExitTransaction terminated with short dump
SSuccessMessage on next screen
 
6. Paramiterized messages
 
You can paramiterize messages, so that you can insert your own text programmatically
in messages.
 
When you define the message use &amp;amp; for the parameters:
 
This is a &amp;amp;1 message
 
When you call the message use the syntax
 
Message e001 with &amp;#145;bad&amp;#146;
 
The resulting message: This is a bad message
 
7. Writing message into a field
 
Sometimes you want to store e.g. an error message from a function module in a text field instead of displaying it.
 
Use this syntax to store the message to the field l_errror_text.
 
CALL FUNCTION &amp;#133; something
 
IF sy-subrc 0. MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4 into l_errror_text. ENDIF. 
  
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;reward points if helpful&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;Reagrds.&lt;/P&gt;&lt;P&gt;pankaj vashista&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:39:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572018#M859784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T08:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572019#M859785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashok,&lt;/P&gt;&lt;P&gt;   To create transcation code :se93&lt;/P&gt;&lt;P&gt;  To create message :se91&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 08:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3572019#M859785</guid>
      <dc:creator>geetha_k</dc:creator>
      <dc:date>2008-03-21T08:39:49Z</dc:date>
    </item>
  </channel>
</rss>

