<?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 Abap - CONCATENATE long string into variable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513832#M18184</link>
    <description>&lt;P&gt;Dear Support, &lt;/P&gt;
  &lt;P&gt; I have a loop which Concatenates two strings, the problem is Concatenate is limited only for 255 char.&lt;/P&gt;
  &lt;P&gt;how do I Concatenate string which is larger than 255 ?&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sun, 17 Dec 2017 13:14:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-12-17T13:14:34Z</dc:date>
    <item>
      <title>Abap - CONCATENATE long string into variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513832#M18184</link>
      <description>&lt;P&gt;Dear Support, &lt;/P&gt;
  &lt;P&gt; I have a loop which Concatenates two strings, the problem is Concatenate is limited only for 255 char.&lt;/P&gt;
  &lt;P&gt;how do I Concatenate string which is larger than 255 ?&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 13:14:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513832#M18184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-12-17T13:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Abap - CONCATENATE long string into variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513833#M18185</link>
      <description>&lt;P&gt;It's not the SAP support here, it's a community with people of good will (most of them are not related to the SAP company), trying to help other people.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 13:34:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513833#M18185</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-12-17T13:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: Abap - CONCATENATE long string into variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513834#M18186</link>
      <description>&lt;P&gt;Sorry but the concatenation is not limited to 255 characters at all, where did you read that?&lt;/P&gt;
  &lt;P&gt;Run this code which does nothing except it doesn't short dump which proves that the resulting string3 is 400 characters long :&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA: string1 TYPE string, string2 TYPE string, string3 TYPE string.
SHIFT string1 RIGHT BY 200 PLACES. TRANSLATE string1 USING ' X'. " or string1 = repeat( val = 'X' occ = 200 ).
string2 = string1.
CONCATENATE string1 string2 INTO string3.
ASSERT strlen( string3 ) = 400.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Dec 2017 13:39:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513834#M18186</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-12-17T13:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Abap - CONCATENATE long string into variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513835#M18187</link>
      <description>&lt;P&gt;I think the issue is he didn't actual use a "string" data type or field.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 14:25:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513835#M18187</guid>
      <dc:creator>ChrisSolomon</dc:creator>
      <dc:date>2017-12-17T14:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Abap - CONCATENATE long string into variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513836#M18188</link>
      <description>&lt;P&gt;Even c fields can be much larger.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 14:43:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513836#M18188</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-12-17T14:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Abap - CONCATENATE long string into variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513837#M18189</link>
      <description>&lt;P&gt;I guess your target field is limited to 255 characters. That would be trivial.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Dec 2017 14:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-concatenate-long-string-into-variable/m-p/513837#M18189</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-12-17T14:47:50Z</dc:date>
    </item>
  </channel>
</rss>

