<?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: problems with strings in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-strings/m-p/4297461#M1024801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it like this as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:   L_RESULT TYPE CHAR70.
 
L_RESULT(30) = 'Naimesh'.
L_RESULT+30(40) = 'Patel'.
  
WRITE: L_RESULT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2008 17:29:47 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2008-08-13T17:29:47Z</dc:date>
    <item>
      <title>problems with strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-strings/m-p/4297459#M1024799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello there guys, I need to get strings of the same lentgh, for example if I declare name(30) type C, surname(40) type C and I do the following : concatenate name surname into fullname .where name = 'Julia' and Surname = 'Smith'  I want  Julia plus 25 caracters in blank remaining  Smith Plus 35 Caract. remaining.       70 caracters as a result , is that possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 16:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-strings/m-p/4297459#M1024799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T16:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: problems with strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-strings/m-p/4297460#M1024800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of concatenate, use structure to move your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF TY_ADD,
       FIRST TYPE CHAR30,
       LAST  TYPE CHAR40,
       END   OF TY_ADD.

DATA: L_ADD TYPE TY_ADD,
      L_RESULT TYPE CHAR70.

L_ADD-FIRST = 'Naimesh'.
L_ADD-LAST = 'Patel'.

MOVE L_ADD TO L_RESULT.

WRITE: L_RESULT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 16:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-strings/m-p/4297460#M1024800</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-08-13T16:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: problems with strings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-strings/m-p/4297461#M1024801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it like this as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:   L_RESULT TYPE CHAR70.
 
L_RESULT(30) = 'Naimesh'.
L_RESULT+30(40) = 'Patel'.
  
WRITE: L_RESULT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 17:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-strings/m-p/4297461#M1024801</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-08-13T17:29:47Z</dc:date>
    </item>
  </channel>
</rss>

