<?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: concatenating ' to a string. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118861#M1187213</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;  data : l(4) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;concatenate XYZ ' ' ' into  l.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jan 2009 13:05:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-21T13:05:03Z</dc:date>
    <item>
      <title>concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118853#M1187205</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;I have a requirement in which , I need to conver one string say   &lt;STRONG&gt;XYZ  to 'XYZ&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note that i want to concatenate '    .&lt;/P&gt;&lt;P&gt;Please suggest the needful, as I m unable to concatenate ' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rudra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118853#M1187205</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2009-01-21T12:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118854#M1187206</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;Try the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t1 TYPE c LENGTH 10 VALUE 'We', &lt;/P&gt;&lt;P&gt;      t2 TYPE c LENGTH 10 VALUE 'have', &lt;/P&gt;&lt;P&gt;      t3 TYPE c LENGTH 10 VALUE 'all', &lt;/P&gt;&lt;P&gt;      t4 TYPE c LENGTH 10 VALUE 'the', &lt;/P&gt;&lt;P&gt;      t5 TYPE c LENGTH 10 VALUE 'time', &lt;/P&gt;&lt;P&gt;      t6 TYPE c LENGTH 10 VALUE 'in', &lt;/P&gt;&lt;P&gt;      t7 TYPE c LENGTH 10 VALUE 'the', &lt;/P&gt;&lt;P&gt;      t8 TYPE c LENGTH 10 VALUE 'world', &lt;/P&gt;&lt;P&gt;      result TYPE string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE t1 t2 t3 t4 t5 t6 t7 t8 &lt;/P&gt;&lt;P&gt;            INTO result. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;CONCATENATE t1 t2 t3 t4 t5 t6 t7 t8 &lt;/P&gt;&lt;P&gt;            INTO result SEPARATED BY space. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anki Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118854#M1187206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T12:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118855#M1187207</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;Create a text symbol with value '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and concatenate text-001 l_val into l_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118855#M1187207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T12:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118856#M1187208</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;U can do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Var1 = XYZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE    ' ' ' '      Var1    into  Var2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Var2 =  ' XYZ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118856#M1187208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T12:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118857#M1187209</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;PRE&gt;&lt;CODE&gt;DATA : lv_str1 TYPE string VALUE 'XYZ',
       lv_str2 TYPE string.

CONCATENATE text-001 lv_str1 INTO lv_str2.
" CREATE  a text element for text-001&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:14:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118857#M1187209</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2009-01-21T12:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118858#M1187210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate '''' 'XYZ' to w_target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or create a text symbol then use it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate 'text-001 'XYZ' to w_target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manoj Kumar P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:18:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118858#M1187210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T12:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118859#M1187211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: st(5) type c value 'xyz'.&lt;/P&gt;&lt;P&gt;data: sts type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate '''' st into sts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ sts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:19:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118859#M1187211</guid>
      <dc:creator>former_member222860</dc:creator>
      <dc:date>2009-01-21T12:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118860#M1187212</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;try this fm CONVERSION_EXIT_ALPHA_INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Aakash Banga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 12:20:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118860#M1187212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T12:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: concatenating ' to a string.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118861#M1187213</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;  data : l(4) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;concatenate XYZ ' ' ' into  l.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 13:05:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concatenating-to-a-string/m-p/5118861#M1187213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T13:05:03Z</dc:date>
    </item>
  </channel>
</rss>

