<?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: Problem during string display. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262880#M1529146</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maen / Raul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the hex value for ## is : 0D0A in my string!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURRENCES OF REGEX '\Q#\E' in p_line
                                WITH cl_abap_char_utilities=&amp;gt;newline&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its not working for me! am I doing anything wrong here? Plz suggest..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:   &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;This is Descr text   .##hello 1234##this is tesing##&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want this string to be displayed as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;This is Descr text   .
hello 1234
this is tesing&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;bh_hir&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: bh_hir on Oct 4, 2010 3:42 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Oct 2010 13:41:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-04T13:41:09Z</dc:date>
    <item>
      <title>Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262872#M1529138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one application which accepts long text(text editor control) and save it to the Ztable by dividing into char255. It stores into Ztable in the form of stream, as the control have that method to read &amp;amp; write long text as stream.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now for reporting purpose. When I want to display the data it displays '##' wherever  'ENTER' or 'NEW-LINE' has been written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to replace that ## with new line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURANCES OF '##' IN p_str WITH cl_abap_char_utilities=&amp;gt;newline.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but its not working for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest how to replace this ## with newline character in string. Or is there any FM available to convert stream to string directly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt; Removed &amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appriciate your time and Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;bh_hir&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Oct 1, 2010 1:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 16:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262872#M1529138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T16:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262873#M1529139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you convert your text from the control, you need to do it as follows:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
      CALL METHOD ctrl_notes-&amp;gt;get_text_as_stream
        IMPORTING
          text                   = lt_text_table
        EXCEPTIONS
          error_dp               = 1
          error_cntl_call_method = 2
          OTHERS                 = 3.

      CALL FUNCTION 'CONVERT_STREAM_TO_ITF_TEXT'
        TABLES
          text_stream = lt_text_table
          itf_text    = lt_itf_text.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 17:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262873#M1529139</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-10-01T17:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262874#M1529140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From control, I am storing stream to the database. So while I will retrieve data for reports, I dont have to use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ctrl_notes-&amp;gt;get_text_as_stream&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only thing I do is, I wanted to print that lines (char255), but it has ## when I pressed enter. In report/Smarform display I dont want that ##, and needed newline there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I have to store the long text as stream to the ztables only, because if I convert it to the string then again I have to convert it to the table and then store, In table I dont want to save blank lines, there ## is good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In reporting part only I want to replace ## with newline. plz help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;bh_hir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 19:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262874#M1529140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T19:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262875#M1529141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you need to keep the format for show it in a smartform, you can create a text element instead of saving it in a 255 char lines.&lt;/P&gt;&lt;P&gt;You can create the text with the FM 'CREATE_TEXT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'CREATE_TEXT'
    EXPORTING
      fid         = 'ZDET'
      flanguage   = sy-langu
      fname       = p_nomb
      fobject     = 'ZOBJ'
      save_direct = 'X'
      fformat     = '*'
    TABLES
      flines      = t_txt
    EXCEPTIONS
      no_init     = 1
      no_save     = 2
      OTHERS      = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the second step is create a text element in your smartform, but declaring type "I" .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps (sorry about my english)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sebastian Bustamante on Oct 1, 2010 11:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 21:12:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262875#M1529141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T21:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262876#M1529142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Sebastian - sounds like you're working against the standard instead of using it.  'Work smarter, not harder' is my motto...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 21:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262876#M1529142</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-10-01T21:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262877#M1529143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Removing regEx|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1798953"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 10:22:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262877#M1529143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T10:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262878#M1529144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi!&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; This will help you&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; [Removing regEx|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1798953"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No it won't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 12:24:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262878#M1529144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T12:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262879#M1529145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi!&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; This will help you&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; [Removing regEx|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1798953"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now it does. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 12:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262879#M1529145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T12:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262880#M1529146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maen / Raul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the hex value for ## is : 0D0A in my string!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURRENCES OF REGEX '\Q#\E' in p_line
                                WITH cl_abap_char_utilities=&amp;gt;newline&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its not working for me! am I doing anything wrong here? Plz suggest..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:   &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;This is Descr text   .##hello 1234##this is tesing##&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want this string to be displayed as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;This is Descr text   .
hello 1234
this is tesing&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;bh_hir&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: bh_hir on Oct 4, 2010 3:42 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 13:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262880#M1529146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T13:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262881#M1529147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the final reply from the original poster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 13:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262881#M1529147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T13:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262882#M1529148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: itab TYPE TABLE OF string,&lt;/P&gt;&lt;P&gt;                wa LIKE LINE OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : l_text type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; l_text = 'abc#xyz'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SPLIT l_text AT '#' INTO TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa.&lt;/P&gt;&lt;P&gt;write:/ wa.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Output&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abc&lt;/P&gt;&lt;P&gt;xyz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try out above code, probably that is your solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 14:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262882#M1529148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T14:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262883#M1529149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it partially solved my problem, It was not newline, it was cr_lf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I did replaced cl_abap_char_utilities=&amp;gt;CR_LFwith ' ' In my string. It seems that ## will not come now. but is there any way I can really display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;This is Descr text   .
hello 1234
this is tesing&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;This is Descr text   .hello 1234this is tesing&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;although there is way by spliting it at cl_abap_char_utilities=&amp;gt;CR_LF , but If we can just replace the char which will directly can do the above thing, then I do not have to process on many strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz suggest!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;bh_hir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 14:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262883#M1529149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T14:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262884#M1529150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz suggest for above post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 14:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262884#M1529150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T14:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262885#M1529151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are you displying the text? ABAP list? ALV? Smartform?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 14:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262885#M1529151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T14:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262886#M1529152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ALV &amp;amp; Smarform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALV it doesn't matter if its in one line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in smartform I have to display as they have entered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Descr text     .
hello text
testing&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 14:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262886#M1529152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T14:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262887#M1529153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First thing that comes to mind it pass it as separate lines in an internal table to your smartform, loop over that internal table in your smartform and print the lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe there are more elegant solutions but this is the first that came to mind.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 14:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262887#M1529153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T14:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262888#M1529154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, Sebastian made a good suggestion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 14:39:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262888#M1529154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T14:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262889#M1529155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi bh_hir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried the code I have given?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will require very minor changes to implement into your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because as per your scenarion I think split is the best way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 15:37:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262889#M1529155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T15:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem during string display.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262890#M1529156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, Thanks everyone for your time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Sabestian, am going with your suggestion. Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Oct 2010 22:06:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-during-string-display/m-p/7262890#M1529156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-04T22:06:11Z</dc:date>
    </item>
  </channel>
</rss>

