<?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: Text symbols: Split line in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561614#M21586</link>
    <description>&lt;P&gt;Differently said, is your question "split line" similar to "word wrapping" ? If so, I don't understand why your solution for MESSAGE would be different with a text symbol.&lt;/P&gt;
  &lt;P&gt;Or is your question about replacing "placeholders" in a text symbol ? (not related to "split line" but maybe you used the wrong term) If so, using the ABAP statement REPLACE is very easy.&lt;/P&gt;</description>
    <pubDate>Fri, 29 Sep 2017 15:25:38 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2017-09-29T15:25:38Z</dc:date>
    <item>
      <title>Text symbols: Split line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561613#M21585</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
  &lt;P&gt; If a message line is long, sometimes it looks better in two or more lines. I know how to do it when using literals in MESSAGE. Is there any way to do it using text symbols?&lt;/P&gt;
  &lt;P&gt;Thanks in advance,&lt;/P&gt;
  &lt;P&gt;Luis&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2017 15:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561613#M21585</guid>
      <dc:creator>luis_rod</dc:creator>
      <dc:date>2017-09-29T15:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Text symbols: Split line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561614#M21586</link>
      <description>&lt;P&gt;Differently said, is your question "split line" similar to "word wrapping" ? If so, I don't understand why your solution for MESSAGE would be different with a text symbol.&lt;/P&gt;
  &lt;P&gt;Or is your question about replacing "placeholders" in a text symbol ? (not related to "split line" but maybe you used the wrong term) If so, using the ABAP statement REPLACE is very easy.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2017 15:25:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561614#M21586</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-09-29T15:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: Text symbols: Split line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561615#M21587</link>
      <description>&lt;P&gt;Sandra,&lt;/P&gt;
  &lt;P&gt;First, my apologies if the question was not stated clearly, as english is not my first language.&lt;/P&gt;
  &lt;P&gt;Let me show you a small example. If I write:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA: msg_text type string.
msg_text = 'a long first line' &amp;amp;
           ' a long second line'.
MESSAGE msg_text type 'I' DISPLAY LIKE 'W'.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;I get my message in two lines. How can I replicate that using text symbols?&lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;
  &lt;P&gt;Luis &lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2017 15:51:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561615#M21587</guid>
      <dc:creator>luis_rod</dc:creator>
      <dc:date>2017-09-29T15:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Text symbols: Split line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561616#M21588</link>
      <description>&lt;P&gt;If I understand well your question. Currently, you do:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA: msg_text type string.
msg_text = 'a long first line' &amp;amp;
           ' a long second line'.
MESSAGE msg_text type 'I' DISPLAY LIKE 'W'.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;You want to &lt;STRONG&gt;use text symbols&lt;/STRONG&gt; instead of the text literals, so you cannot use the &lt;A href="https://help.sap.com/http.svc/rc/abapdocu_751_index_htm/7.51/en-US/index.htm?file=abenliteral_operator_glosry.htm"&gt;literal operator &amp;amp;&lt;/A&gt;, but you may use the &lt;A href="https://help.sap.com/http.svc/rc/abapdocu_751_index_htm/7.51/en-US/index.htm?file=abenstring_operators.htm"&gt;string operator &amp;amp;&amp;amp;&lt;/A&gt;:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA: msg_text type string.
msg_text = 'a long first line'(001) &amp;amp;&amp;amp;
           ' a long second line'(002).
MESSAGE msg_text type 'I' DISPLAY LIKE 'W'.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Sep 2017 18:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561616#M21588</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-09-29T18:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Text symbols: Split line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561617#M21589</link>
      <description>&lt;P&gt;Sandra,&lt;/P&gt;
  &lt;P&gt;Thanks for your answer. I think that's the way to do it.&lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;
  &lt;P&gt;Luis&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2017 20:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561617#M21589</guid>
      <dc:creator>luis_rod</dc:creator>
      <dc:date>2017-09-29T20:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Text symbols: Split line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561618#M21590</link>
      <description>&lt;P&gt;Or like that?&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;MESSAGE 'a long first line'(001) &amp;amp;&amp;amp;
        ' a long second line'(002) 
        type 'I' DISPLAY LIKE 'W'.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 01 Oct 2017 15:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-symbols-split-line/m-p/561618#M21590</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-10-01T15:51:51Z</dc:date>
    </item>
  </channel>
</rss>

