<?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: Conactenating with diffrent spaces in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836165#M1317262</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;concatenate the values separated by characters that do not appear otherwise in the data, e.g. '§'.&lt;/P&gt;&lt;P&gt;Then TRANSLATE the result USING '§ '.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Jun 2009 15:55:04 GMT</pubDate>
    <dc:creator>ThomasZloch</dc:creator>
    <dc:date>2009-06-16T15:55:04Z</dc:date>
    <item>
      <title>Conactenating with diffrent spaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836163#M1317260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a req. of conactenating vaiables with diffrent space values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. Var1, Var2 ,Var3............Var n  need to be seperated by diffrent space values.&lt;/P&gt;&lt;P&gt;    Like Var1  Var2         Var3..                      .. Varn&lt;/P&gt;&lt;P&gt;     or    Var1            Var2   Var3..           ... Varn &lt;/P&gt;&lt;P&gt;     or    Var1       Var2                      Var3..           ... Varn  etc.&lt;/P&gt;&lt;P&gt;The spaces are not unique but having diffrent lengths.&lt;/P&gt;&lt;P&gt;The Concatenate option with diffrent spaces doesn't work. I have checked it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Ideas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 15:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836163#M1317260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-16T15:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Conactenating with diffrent spaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836164#M1317261</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;Try with the below options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Include the spaces in the symbol ~. i.e. ~  ~. Now I have included two spaces in the tild symbol.&lt;/P&gt;&lt;P&gt;2. Declare the variables of those many characters with default space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santhosh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 15:29:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836164#M1317261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-16T15:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Conactenating with diffrent spaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836165#M1317262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;concatenate the values separated by characters that do not appear otherwise in the data, e.g. '§'.&lt;/P&gt;&lt;P&gt;Then TRANSLATE the result USING '§ '.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 15:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836165#M1317262</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-06-16T15:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Conactenating with diffrent spaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836166#M1317263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: lstr type string,&lt;/P&gt;&lt;P&gt;      c_5(5) value space,&lt;/P&gt;&lt;P&gt;      c_10(10) value space.&lt;/P&gt;&lt;P&gt;CONCATENATE 'This' c_5 'Will' into lstr RESPECTING BLANKS.&lt;/P&gt;&lt;P&gt;CONCATENATE lstr c_5 'Work' c_10 '- Try.' into lstr RESPECTING BLANKS.&lt;/P&gt;&lt;P&gt;write:/ lstr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 07:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836166#M1317263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T07:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conactenating with diffrent spaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836167#M1317264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case, check this example, here you can use spaces length dynamically.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : l_space(255) TYPE c VALUE space.
DATA : varn TYPE i.
DATA : var3(200) TYPE c.

varn = '6'.  "Any  dynamic value

CONCATENATE 'VAR1' 'VAR2' 'VAR3' INTO var3
SEPARATED BY l_space+0(varn).

WRITE var3.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 07:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836167#M1317264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T07:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Conactenating with diffrent spaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836168#M1317265</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;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_space1(1),&lt;/P&gt;&lt;P&gt;      v_space2(2),&lt;/P&gt;&lt;P&gt;      v_space3(3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_text1(10),&lt;/P&gt;&lt;P&gt;      v_text2(10),&lt;/P&gt;&lt;P&gt;      v_text3(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'Hello' v_space1 '1' into v_text1&lt;/P&gt;&lt;P&gt;respecting blanks.&lt;/P&gt;&lt;P&gt;concatenate 'Hello' v_space2 '2' into v_text2&lt;/P&gt;&lt;P&gt;respecting blanks.&lt;/P&gt;&lt;P&gt;concatenate 'Hello' v_space3 '3' into v_text3&lt;/P&gt;&lt;P&gt;respecting blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ v_text1.&lt;/P&gt;&lt;P&gt;write:/ v_text2.&lt;/P&gt;&lt;P&gt;write:/ v_text3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar Bandanadham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 07:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conactenating-with-diffrent-spaces/m-p/5836168#M1317265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T07:17:35Z</dc:date>
    </item>
  </channel>
</rss>

