<?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 Concat  String problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604737#M596848</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         I am struggling  with a little problem. I don't have Authorization for ABAP Help. That's why I am posting in SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to concatenate two string with space between them.&lt;/P&gt;&lt;P&gt;like two word Spell and Check.&lt;/P&gt;&lt;P&gt;when I cancatenate then the result I got is spellcheck. But I want Spell Check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one Please tell me what to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Swati....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Aug 2007 04:47:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-04T04:47:47Z</dc:date>
    <item>
      <title>Concat  String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604737#M596848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         I am struggling  with a little problem. I don't have Authorization for ABAP Help. That's why I am posting in SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to concatenate two string with space between them.&lt;/P&gt;&lt;P&gt;like two word Spell and Check.&lt;/P&gt;&lt;P&gt;when I cancatenate then the result I got is spellcheck. But I want Spell Check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one Please tell me what to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Swati....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 04:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604737#M596848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-04T04:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Concat  String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604738#M596849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Write as below&lt;/P&gt;&lt;P&gt;data: v1(5) type c value 'Spell', STR(11), &lt;/P&gt;&lt;P&gt;        v2(5) type c value 'Check'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONCATENATE V1 V2 INTO STR SEPARATED BY SPACE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 05:05:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604738#M596849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-04T05:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Concat  String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604739#M596850</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;check this sample one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: it_message3 type standard table of solisti1 initial size 0
with header line.

data: it_message4 type standard table of solisti1 initial size 0
with header line.

***Give your select statement here for ur required coding part

then concatenate like this

concatenate 'Maturity After 2Days' 'for'  'G/L account-' it_message3
'--' IT_MESSAGE4  ',' 'Amount-' it_message2
    into it_message separated by space.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 05:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604739#M596850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-04T05:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Concat  String problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604740#M596851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to write like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATINATE FIELD1 FIELD2 into FIELD3 SEPARATED BY SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 07:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/concat-string-problem/m-p/2604740#M596851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-04T07:11:45Z</dc:date>
    </item>
  </channel>
</rss>

