<?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: Concatenate Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-statement/m-p/4232968#M1010749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After concatenation pl. check in debug mode for the content of V_CHAR3. When u write a variable in out max. 255 char. can be displayed. This is a limitation of SAP. In this case as u displayng the content using WRITE statement that's why it is showing only 255 char. But actually it contains 510 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data v_char1(255) type c.&lt;/P&gt;&lt;P&gt;data v_char2(255) type c.&lt;/P&gt;&lt;P&gt;data v_char3(1024) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_char1 =&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_char2 =&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate v_char1 v_char2 into v_char3.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WRITE V_CHAR3.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Aug 2008 20:31:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-05T20:31:24Z</dc:date>
    <item>
      <title>Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-statement/m-p/4232967#M1010748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm running into issues concatenating two long char fields together into one.  I am being limited to only 255 characters in my variable which I am concatenating into.  This variable is defined as (1024) type c so there should be plenty of room.  Can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data v_char1(255) type c.&lt;/P&gt;&lt;P&gt;data v_char2(255) type c.&lt;/P&gt;&lt;P&gt;data v_char3(1024) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_char1 =&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_char2 =&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate v_char1 v_char2 into v_char3.&lt;/P&gt;&lt;P&gt;WRITE V_CHAR3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Blake Haan on Aug 5, 2008 10:25 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 20:22:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-statement/m-p/4232967#M1010748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T20:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-statement/m-p/4232968#M1010749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After concatenation pl. check in debug mode for the content of V_CHAR3. When u write a variable in out max. 255 char. can be displayed. This is a limitation of SAP. In this case as u displayng the content using WRITE statement that's why it is showing only 255 char. But actually it contains 510 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data v_char1(255) type c.&lt;/P&gt;&lt;P&gt;data v_char2(255) type c.&lt;/P&gt;&lt;P&gt;data v_char3(1024) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_char1 =&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_char2 =&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ'&amp;amp;&lt;/P&gt;&lt;P&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate v_char1 v_char2 into v_char3.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WRITE V_CHAR3.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 20:31:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenate-statement/m-p/4232968#M1010749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T20:31:24Z</dc:date>
    </item>
  </channel>
</rss>

