<?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: Line break within string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863429#M928581</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont think its possible by only using concatenate statement..you can use shift right statement after using concatenate statement.i think it will give you your desired output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 08:51:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T08:51:25Z</dc:date>
    <item>
      <title>Line break within string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863424#M928576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a string including a line break, like \n in C programming.&lt;/P&gt;&lt;P&gt;But I do NOT want to split lines with ULINE command, I do want the CRLF in the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I tried this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONCATENATE 'LINE1' 'LINE2' INTO v_line SEPARATED BY cl_abap_char_utilities=&amp;gt;cr_lf.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But unfortunately that prints this output to the report's list:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LINE1##LINE2&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;Kind regards, Matthias&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: it's a Unicode system&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863424#M928576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Line break within string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863425#M928577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matthias,&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;STRONG&gt;CONCATENATE 'LINE1' 'LINE2' INTO v_line SEPARATED BY ' ' RESPECTING BLANKS.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful to you. If you need further information, revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nagaraj T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863425#M928577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Line break within string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863426#M928578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nagaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this solution does not work either. It gives me the following output&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; LINE1 LINE2&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both "lines" are separated only by a blank, not by a newline.&lt;/P&gt;&lt;P&gt;Kind regards, Matthias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:42:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863426#M928578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Line break within string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863427#M928579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi mathias ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you get the answer to that question? I'm having the same problem.&lt;/P&gt;&lt;P&gt;Thanks; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C.K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863427#M928579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T08:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Line break within string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863428#M928580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi this is not problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;it will seems like that  but at the time of downloading from the application server it will give the good result ..like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;line1  line2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863428#M928580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T08:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Line break within string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863429#M928581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont think its possible by only using concatenate statement..you can use shift right statement after using concatenate statement.i think it will give you your desired output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/line-break-within-string/m-p/3863429#M928581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T08:51:25Z</dc:date>
    </item>
  </channel>
</rss>

