<?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: REPLACE ALL issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432231#M824436</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;My requirement is reverse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to replace all occurrunces of space with '.' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Mar 2008 21:31:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-27T21:31:27Z</dc:date>
    <item>
      <title>REPLACE ALL issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432226#M824431</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;&lt;/P&gt;&lt;P&gt;I have a string like "Nikhil                #". I need to remove # from the string but still keeping the trailing spaces. I tried REPLACE ALL and SHIFT statements but it deletes the Trailing spaces as well. Any help would be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please  see there are 5 spaces between "Nikhil" and "#" and I need to remove # still keeping those spaces&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nikhil Sood on Feb 16, 2008 12:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 11:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432226#M824431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T11:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE ALL issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432227#M824432</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 using translate keyword.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data string   type string.
move 'NIKHIL     #' to string.
write : string,'&amp;lt;-ends here'.
translate string using '# '.
write : / string,'&amp;lt;-ends here'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 11:33:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432227#M824432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T11:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE ALL issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432228#M824433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even the TRANSLATE is deleting the trailing spaces. Any other clues please??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 11:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432228#M824433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T11:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE ALL issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432229#M824434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No did u try dat code...........&lt;STRONG&gt;&amp;lt;-end&lt;/STRONG&gt; indicates the end of dat string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 11:46:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432229#M824434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T11:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE ALL issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432230#M824435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are absolutely right Jose. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue actually was with the "WS_DOWNLOAD" function. It trucates the trailing spaces of the lines in the itab. It does not have any option for processing otherwise. I have shifted to "GUI_DOWNLOAD" and it has TRUNC_TRAILING_BLANKS_EOL to help i nthis situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the help!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 13:33:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432230#M824435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T13:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE ALL issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432231#M824436</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;My requirement is reverse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to replace all occurrunces of space with '.' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 21:31:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432231#M824436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T21:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE ALL issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432232#M824437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
translate string using ' .'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 21:36:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-all-issue/m-p/3432232#M824437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T21:36:34Z</dc:date>
    </item>
  </channel>
</rss>

