<?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 concatenate in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate/m-p/4639787#M1092236</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;         When i am concatenating the itab-vbeln ,if the itab-text1(255) when it cross 255 length it should go to itab-text2(255).&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt; length = strlen( itab-vbeln ).&lt;/P&gt;&lt;P&gt; if length le 255.&lt;/P&gt;&lt;P&gt; text1 = itab-vbeln(length).&lt;/P&gt;&lt;P&gt;concatenate itab-vbeln '|' into text1.&lt;/P&gt;&lt;P&gt;concatenate tet text1 into text1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;if length gt 255.&lt;/P&gt;&lt;P&gt; text2 = itab-vbeln(length).&lt;/P&gt;&lt;P&gt;concatenate itab-vbeln '|' into text2.&lt;/P&gt;&lt;P&gt;concatenate tet1 text2 into text2.&lt;/P&gt;&lt;P&gt;endif. endif.&lt;/P&gt;&lt;P&gt;how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;singh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Oct 2008 15:26:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-15T15:26:50Z</dc:date>
    <item>
      <title>concatenate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate/m-p/4639787#M1092236</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;         When i am concatenating the itab-vbeln ,if the itab-text1(255) when it cross 255 length it should go to itab-text2(255).&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt; length = strlen( itab-vbeln ).&lt;/P&gt;&lt;P&gt; if length le 255.&lt;/P&gt;&lt;P&gt; text1 = itab-vbeln(length).&lt;/P&gt;&lt;P&gt;concatenate itab-vbeln '|' into text1.&lt;/P&gt;&lt;P&gt;concatenate tet text1 into text1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;if length gt 255.&lt;/P&gt;&lt;P&gt; text2 = itab-vbeln(length).&lt;/P&gt;&lt;P&gt;concatenate itab-vbeln '|' into text2.&lt;/P&gt;&lt;P&gt;concatenate tet1 text2 into text2.&lt;/P&gt;&lt;P&gt;endif. endif.&lt;/P&gt;&lt;P&gt;how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;singh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 15:26:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate/m-p/4639787#M1092236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T15:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate/m-p/4639788#M1092237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
data: vl_long type string.

loop at itab.
len = strlen( vl_long).

itab-text1 = vl_long+0(255).

if len GR 255.
len2 = len - 255.

itab-text2 = vl_long+256( len2 ). 
endif.

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 15:33:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate/m-p/4639788#M1092237</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-10-15T15:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate/m-p/4639789#M1092238</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;   You SPLIT command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 15:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate/m-p/4639789#M1092238</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-10-15T15:34:09Z</dc:date>
    </item>
  </channel>
</rss>

