<?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: How to put spaces between lines while using append in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243490#M1828537</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;Post your requirement clearly so,that we can give better solutions.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Any way PFB....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;add an other &lt;/SPAN&gt;column like serial number to your table structure and pass sno and text field as empty after every apped. &lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2014 13:56:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-04-16T13:56:51Z</dc:date>
    <item>
      <title>How to put spaces between lines while using append</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243488#M1828535</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 have written the following piece of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_objtxt_temp &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Hello all,'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;i_objtxt_temp&amp;nbsp; &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;i_objtxt .&lt;/P&gt;&lt;P&gt;i_objtxt_temp &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'How are you.'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;i_objtxt_temp&amp;nbsp; &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;i_objtxt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output to which is coming like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;How are you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I need a space between these two lines. Please suggest how can I do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be given.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 13:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243488#M1828535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-16T13:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to put spaces between lines while using append</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243489#M1828536</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;Just use another append statement with the variable cleared. as shown. which will give a blank line in between and will be printed as if there is space in between. or else rather assign&amp;nbsp; a space to the variable and then append&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_objtxt_temp &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Hello all,'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;i_objtxt_temp&amp;nbsp; &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;i_objtxt .&lt;/P&gt;&lt;P&gt;CLEAR i_objtxt_temp.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;i_objtxt_temp&amp;nbsp; &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;i_objtxt .&lt;/P&gt;&lt;P&gt;i_objtxt_temp &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'How are you.'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;i_objtxt_temp&amp;nbsp; &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;i_objtxt .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 13:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243489#M1828536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-16T13:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to put spaces between lines while using append</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243490#M1828537</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;Post your requirement clearly so,that we can give better solutions.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Any way PFB....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;add an other &lt;/SPAN&gt;column like serial number to your table structure and pass sno and text field as empty after every apped. &lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 13:56:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243490#M1828537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-16T13:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to put spaces between lines while using append</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243491#M1828538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;APPEND &lt;SPAN class="L0S52"&gt;INITIAL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO&amp;nbsp; i_objtxt&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 14:03:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243491#M1828538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-16T14:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to put spaces between lines while using append</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243492#M1828539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Two ways that I can think of immediately. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Append initial line to &lt;SPAN class="L0S52" style="font-size: 12px; color: #333333;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;i_objtxt&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;2. When you loop thru your internal table and issue write statement, after the first line add a "skip 1" statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vikram.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 14:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243492#M1828539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-16T14:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to put spaces between lines while using append</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243493#M1828540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Devanand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried by assigning a space to the variable and it worked.&amp;nbsp; Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all. It has been solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Debapriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 14:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-put-spaces-between-lines-while-using-append/m-p/10243493#M1828540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-16T14:22:53Z</dc:date>
    </item>
  </channel>
</rss>

