<?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 Insert a space in the string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261556#M490231</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know how to insert a space in a string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg: CONCATENATE pmtfle-text ' '  finaccno INTO PMTFLE-TEXT.&lt;/P&gt;&lt;P&gt; I want to insert a space in between pmtfle-text and finaccno. Even though I gave like above, it is not inserting a space. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right answers will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Renjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 May 2007 07:31:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-21T07:31:10Z</dc:date>
    <item>
      <title>Insert a space in the string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261556#M490231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know how to insert a space in a string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg: CONCATENATE pmtfle-text ' '  finaccno INTO PMTFLE-TEXT.&lt;/P&gt;&lt;P&gt; I want to insert a space in between pmtfle-text and finaccno. Even though I gave like above, it is not inserting a space. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right answers will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Renjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 07:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261556#M490231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T07:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Insert a space in the string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261557#M490232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONCATENATE pmtfle-text finaccno INTO PMTFLE-TEXT separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        A. de Smidt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 07:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261557#M490232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T07:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Insert a space in the string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261558#M490233</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;write CONCATENATE pmtfle-text  finaccno INTO PMTFLE-TEXT separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward all helpful answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 07:33:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261558#M490233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T07:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: Insert a space in the string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261559#M490234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Renjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Allow me to introduce you to the concept of a string literal which is not the same as a character literal. A string literal respects trailing spaces, which a char literal does not.&lt;/P&gt;&lt;P&gt;Try the same code you tried earlier, except enclose the spaces in &amp;lt;b&amp;gt;reverse-single quotes&amp;lt;/b&amp;gt;, not the single quote character beside the "Enter" key, instead use the one just above the "Tab" Key...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dushyant Shetty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 07:36:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261559#M490234</guid>
      <dc:creator>dustyplanet</dc:creator>
      <dc:date>2007-05-21T07:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Insert a space in the string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261560#M490235</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 can concatenate two fileds as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate &amp;lt;field1&amp;gt; &amp;lt;field2 &amp;gt; INTO string seprated by space.&lt;/P&gt;&lt;P&gt;reward if useful &lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;mohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 07:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-a-space-in-the-string/m-p/2261560#M490235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T07:36:37Z</dc:date>
    </item>
  </channel>
</rss>

