<?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: concantenate with even space between strings in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611564#M870065</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thks for answers, closing the thread&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Dec 2008 06:40:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-22T06:40:27Z</dc:date>
    <item>
      <title>concantenate with even space between strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611560#M870061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fellow abapers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to concatenate 3 words of type c to a variable type c, with even space between them in all the rows ,when i tried it ,i'm gettin the following output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOM...........20.03.2008.......... 02 : 37 : 40&lt;/P&gt;&lt;P&gt;HARRY............20.03.2008........... 01 : 37 : 40&lt;/P&gt;&lt;P&gt;DICK........... 20.03.2008......... 00 : 37 : 40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to bring even space between then in all rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOM.............20.03.2008.......... 02 : 37 : 40&lt;/P&gt;&lt;P&gt;HARRY.........20.03.2008.......... 01 : 37 : 40&lt;/P&gt;&lt;P&gt;DICK............ 20.03.2008.......... 00 : 37 : 40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(no dots , its only to represent blanks) &lt;/P&gt;&lt;P&gt;i've tried with SEPARATED BY SPACE, RESPECTING BLANKS,  CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;nothing works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabumanoharan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 08:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611560#M870061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T08:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: concantenate with even space between strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611561#M870062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;&lt;SPAN __default_attr="sylfaen" __jive_macro_name="font"&gt;&lt;SPAN __default_attr="15" __jive_macro_name="size"&gt;
You can use OFFSET operations.

Eg: 
&lt;PRE&gt;&lt;CODE&gt;DATA: l_text TYPE char255.

LOOP AT itab INTO &amp;lt;wa&amp;gt;.
   CLEAR l_text.
   MOVE: &amp;lt;wa&amp;gt;-name TO l_text(20),
         &amp;lt;wa&amp;gt;-date TO l_text+20(10),
         &amp;lt;wa&amp;gt;-time TO l_text+30(10).
   WRITE:/ l_text.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN __default_attr="maroon" __jive_macro_name="color"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 08:28:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611561#M870062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T08:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: concantenate with even space between strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611562#M870063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: w_txt TYPE char60.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;write :   w_name to w_txt(30),&lt;/P&gt;&lt;P&gt;            w_date TO w_txt+35(10),&lt;/P&gt;&lt;P&gt;            w_time TO w_txt+50(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 08:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611562#M870063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T08:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: concantenate with even space between strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611563#M870064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey &lt;/P&gt;&lt;P&gt;i had the same issue a few weeks ago &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i do a loop with this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/(20) VARIABLE 1.&lt;/P&gt;&lt;P&gt;WRITE (15)  VARIABLE 2.&lt;/P&gt;&lt;P&gt;WRITE (15)  VARIABLE 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 08:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611563#M870064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T08:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: concantenate with even space between strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611564#M870065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thks for answers, closing the thread&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 06:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concantenate-with-even-space-between-strings/m-p/3611564#M870065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T06:40:27Z</dc:date>
    </item>
  </channel>
</rss>

