<?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: concatenation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820663#M659694</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;declare 2 variables like&lt;/P&gt;&lt;P&gt;data: str(10) type C,&lt;/P&gt;&lt;P&gt;         str1(19) type c.&lt;/P&gt;&lt;P&gt;         string(70).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now do like this and see&lt;/P&gt;&lt;P&gt;CONCATENATE 'Material' str 'Material Description' str1 into STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: /  STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Sep 2007 12:35:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-26T12:35:14Z</dc:date>
    <item>
      <title>concatenation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820660#M659691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two texts ' Material ','Material description'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i concatenate them as&lt;/P&gt;&lt;P&gt;concatenate 'Material'  'Material description' into l_text seperated by space.&lt;/P&gt;&lt;P&gt;then l_text = Material material description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what i want is after Material i need 10 spaces and after material description i need 19 spaces.&lt;/P&gt;&lt;P&gt;i.e l_text = Material                Material description                    .&lt;/P&gt;&lt;P&gt;How to do this ?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or let me know is there any fm which gives all the field description in a single text field when we pass an internal table(not a standard table) into it.&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, 26 Sep 2007 12:30:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820660#M659691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T12:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: concatenation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820661#M659692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi shobna,&lt;/P&gt;&lt;P&gt;     Instead of concatenate use write &lt;/P&gt;&lt;P&gt;example write 'example' to text+(10).&lt;/P&gt;&lt;P&gt;it u can use offset for ur purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 12:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820661#M659692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T12:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: concatenation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820662#M659693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;concatenate 'Material' '          ' 'Material description' '                   ' into l_text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 12:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820662#M659693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T12:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: concatenation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820663#M659694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;declare 2 variables like&lt;/P&gt;&lt;P&gt;data: str(10) type C,&lt;/P&gt;&lt;P&gt;         str1(19) type c.&lt;/P&gt;&lt;P&gt;         string(70).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now do like this and see&lt;/P&gt;&lt;P&gt;CONCATENATE 'Material' str 'Material Description' str1 into STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: /  STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 12:35:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820663#M659694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T12:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: concatenation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820664#M659695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let a = 'material'.&lt;/P&gt;&lt;P&gt;b = 'material description'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c = strlen(a).&lt;/P&gt;&lt;P&gt;d = strlen(b).&lt;/P&gt;&lt;P&gt;e = f = ' '.&lt;/P&gt;&lt;P&gt;do c-1 times.&lt;/P&gt;&lt;P&gt;concatenate ' ' e into e.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do d-1 times.&lt;/P&gt;&lt;P&gt;concatenate ' ' f into f.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate a e b f.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2007 12:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenation/m-p/2820664#M659695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-26T12:35:59Z</dc:date>
    </item>
  </channel>
</rss>

