<?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: writing message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193271#M128988</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ateeq K  &lt;/P&gt;&lt;P&gt;How to put text-001 in text symbols?Can any one give me step by step?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jan 2006 10:59:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-11T10:59:50Z</dc:date>
    <item>
      <title>writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193267#M128984</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 write very long message with one variable.Can any one give me the correct syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
message I000(ZM) with 'Part is within warranty.Sales order': T_VIS-SDAUFNR. 
   'Please create this item in Service Order as non-chargeable'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Guaranteed&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 10:52:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193267#M128984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T10:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193268#M128985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;writing too long text is not possible so break the text into different text elements.&lt;/P&gt;&lt;P&gt;First create a message no. in message classs suppose zm.&lt;/P&gt;&lt;P&gt;000 - &amp;amp; &amp;amp; &amp;amp; &amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here u can place four fields or four text elements or combination of both&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the program u can use the same for ur message&lt;/P&gt;&lt;P&gt;text-001 = 'Part is within warranty.Sales order':&lt;/P&gt;&lt;P&gt;text-002 = 'Please create this item in Service Order as non-chargeable'&lt;/P&gt;&lt;P&gt;message I000(ZM) with text-001 T_VIS-SDAUFNR text-002. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will help u...Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 10:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193268#M128985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T10:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193269#M128986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE xnnn. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... WITH f1 ... f4 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outputs the message no. nnn for the MESSAGE-ID specified in the REPORT statement with the message type x. Dialog control recognizes the following message types: &lt;/P&gt;&lt;P&gt;I - Info : Press ENTER to continue W - Warning : Correction possible E - Error : Correction required A - Abend : Transaction terminated X - Exit : Transaction terminated with short dump &lt;/P&gt;&lt;P&gt;MESSAGE_TYPE_X S - Success : Message on next screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1&lt;/P&gt;&lt;P&gt;... WITH f1 ... f4 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Inserts the contents of a field fi in the message instead of in the variables &amp;amp;i. If unnumbered variables (&amp;amp;) are used in a message text, these are replaced consecutively by the fields f1 to f4 . &lt;/P&gt;&lt;P&gt;To aid conversion, only numbered variables (&amp;amp;1 to &amp;amp;4) are to be used in future if several fields are involved. &lt;/P&gt;&lt;P&gt;If a "&amp;amp;" is supposed to appear in the message at runtime, you must enter "&amp;amp;&amp;amp;". &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;In the long text of a message, the symbol &amp;amp;Vi&amp;amp; is replaced by the field contents of fi . &lt;/P&gt;&lt;P&gt;After WITH , you can specify 1 to 4 fields.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Note&lt;/P&gt;&lt;P&gt;You can output up to 50 characters per field. If the field contains more characters, these are ignored.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 10:58:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193269#M128986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T10:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193270#M128987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of this, put  the texts in text-symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message I000(ZM) with 'Part is within warranty.Sales order' T_VIS-SDAUFNR 'Please create this item in Service Order as non-chargeable'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text-001 = 'Part is within warranty.Sales order'&lt;/P&gt;&lt;P&gt;text-002 = 'Please create this item in Service Order as non-chargeable'&lt;/P&gt;&lt;P&gt;And say,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE i000(zm) WITH text-001 t_vis-sdaufnr text-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But remember these texts which are put in text symbols, each must not go more than 50 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 10:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193270#M128987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T10:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193271#M128988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ateeq K  &lt;/P&gt;&lt;P&gt;How to put text-001 in text symbols?Can any one give me step by step?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 10:59:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193271#M128988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T10:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193272#M128989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the place holder &amp;amp; in the message and do it.. in SE 91 under your message class ZM create a message with 3 place holders and use them in the message statement to write what you want. Getting the entire message in asingle line may not be possible with a type I message though.&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 11:02:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193272#M128989</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-11T11:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193273#M128990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the editor,double click on TEXT-001.. enter your text &amp;amp; activate..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 11:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193273#M128990</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-11T11:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: writing message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193274#M128991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. There is a limit to the message issued&lt;/P&gt;&lt;P&gt;   by this command.&lt;/P&gt;&lt;P&gt;  78 characters - 100 (exactly i dn'tknow)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. so what ever we use, &amp;amp;1, &amp;amp;2 etc,&lt;/P&gt;&lt;P&gt;   it will not exceed the maximum limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="11" type="ul"&gt;&lt;P&gt;sorry&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. please use message s999(yhr) with 'abc' variable 'def'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Mittal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 12:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/writing-message/m-p/1193274#M128991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T12:47:44Z</dc:date>
    </item>
  </channel>
</rss>

