<?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: MESSAGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601795#M270179</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can get the message whose length is around 50 characters. I am not sure about the exact length. But it is near to 50 characters including spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Oct 2006 09:21:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-13T09:21:29Z</dc:date>
    <item>
      <title>MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601794#M270178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'VE WRITTEN THE FOLLOWING CODES:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: MESS(100).&lt;/P&gt;&lt;P&gt;CONCATENATE 'material document or year is not a valid ' 'return delivery document' INTO mess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE i208(00) WITH mess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT IN THE OUTPUT I ONLY GET:&lt;/P&gt;&lt;P&gt;( material document or year is not a valid r)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT DOESNOT SHOW ME FULL MESSAGE.HOW CAN I GET THE FULL MESSAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZ HELP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 09:12:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601794#M270178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T09:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601795#M270179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can get the message whose length is around 50 characters. I am not sure about the exact length. But it is near to 50 characters including spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 09:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601795#M270179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T09:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601796#M270180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do one thing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split the message into two texts like &lt;/P&gt;&lt;P&gt;mess--material document or year is not a valid &lt;/P&gt;&lt;P&gt;mess2--return delivery document&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now message i208(00) with mess mess2.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;note that this mess will be for 50 char &lt;/P&gt;&lt;P&gt;and in a message u can give four text &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message i000 with mess mess2 mess3 mess4 &lt;/P&gt;&lt;P&gt;each holding 50 char each ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, &lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this code .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MESSAGE I208(zm) with text-001 text-002.&lt;/P&gt;&lt;P&gt; zm IS UR MESSAGE CLASS , &lt;/P&gt;&lt;P&gt;  AND TEXT-001 , TEXT 002 CONTAINS UR TEXT VALUES ..&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;P&gt; MESSAGE I208(zp824) with text-001 text-002.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is working fine for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 09:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601796#M270180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T09:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601797#M270181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once u go to the particular message in the message class, there is one option called long text. It may meet your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shane&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 09:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601797#M270181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T09:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: MESSAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601798#M270182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONCATENATE 'material document or year is not a valid ' 'return delivery document' INTO mess &amp;lt;b&amp;gt;separated by ','&amp;lt;/b&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 09:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message/m-p/1601798#M270182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T09:33:39Z</dc:date>
    </item>
  </channel>
</rss>

