<?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 Inconsistent Behavior of the REPLACE statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870719#M673515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is more of a gripe than a question, but I&amp;#146;ve marked it as a question anyway in case someone can shed some light. It is prompted by a couple of recent forum questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you have a character string with spaces in it and want to replace all the spaces with dashes. The following program uses the REPLACE statement a couple of ways to try to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ztest MESSAGE-ID 00.

DATA: f1(20) VALUE 'ABCDEF GHIJK LMNO'.

* OK
WHILE sy-subrc = 0.
  REPLACE space WITH '-' INTO f1.
ENDWHILE.

* REPLACE_INFINITE_LOOP
REPLACE ALL OCCURRENCES OF space IN f1 WITH '-'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first attempt using a WHILE/ENDWHILE works, but if you try to do this all at once in the second it dumps with REPLACE_INFINITE_LOOP because it thinks that SPACE or (&amp;#145; &amp;#145;) has zero length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if SPACE has zero length, how can it do the replacement correctly in the first case? Is this a bug or a "design feature" of ABAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought I would bump this to the top to see if there were any further ideas before closing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Sep 2007 15:46:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-28T15:46:07Z</dc:date>
    <item>
      <title>Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870719#M673515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is more of a gripe than a question, but I&amp;#146;ve marked it as a question anyway in case someone can shed some light. It is prompted by a couple of recent forum questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you have a character string with spaces in it and want to replace all the spaces with dashes. The following program uses the REPLACE statement a couple of ways to try to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ztest MESSAGE-ID 00.

DATA: f1(20) VALUE 'ABCDEF GHIJK LMNO'.

* OK
WHILE sy-subrc = 0.
  REPLACE space WITH '-' INTO f1.
ENDWHILE.

* REPLACE_INFINITE_LOOP
REPLACE ALL OCCURRENCES OF space IN f1 WITH '-'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first attempt using a WHILE/ENDWHILE works, but if you try to do this all at once in the second it dumps with REPLACE_INFINITE_LOOP because it thinks that SPACE or (&amp;#145; &amp;#145;) has zero length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if SPACE has zero length, how can it do the replacement correctly in the first case? Is this a bug or a "design feature" of ABAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought I would bump this to the top to see if there were any further ideas before closing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 15:46:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870719#M673515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T15:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870720#M673516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The reason for this exception is:                             &lt;/P&gt;&lt;P&gt;he running program, "ZETA_TEST3", tried to execute the command "REPLACE ALL CCURRENCES OF ' '". However, the field "' '" has a length of 0, which would have caused the command to perform an endless loop. For this reason, the program was terminated.                                                    &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>Fri, 28 Sep 2007 15:54:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870720#M673516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T15:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870721#M673517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand that Sudheer, but why do the two versions behave differently?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 15:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870721#M673517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T15:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870722#M673518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very interesting. Tried in different ways..but always dumps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nice find though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 16:06:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870722#M673518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T16:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870723#M673519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah - it seems silly on one hand. On the other, it forces you into more complex logic to do what should be a very simple thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 16:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870723#M673519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T16:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870724#M673520</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,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA FIELD(20).&lt;/P&gt;&lt;P&gt;MOVE 'ABCDEF GHIJK LMNO' TO FIELD.&lt;/P&gt;&lt;P&gt;REPLACE ' ' WITH ' - ' INTO field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/10 FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS&lt;/P&gt;&lt;P&gt;SIVA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 16:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870724#M673520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T16:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870725#M673521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Siva - yes, that does something different, but I'm really more interested in why ALL OCCURRENCES doesn't work in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 16:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870725#M673521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T16:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870726#M673522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very interesting, Tried it out a couple of times before I could actually believe it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Went to the exception class (This is a catchable exception) and it had this description:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_REPLACE_INFINITE_LOOP	&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURENCES OF ... with blank search string causes endless loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I guess no matter what you do, you cannot leave the search string blank when you use all occurrences of addition .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srihari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 16:57:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870726#M673522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T16:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870727#M673523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Went to the exception class (This is a catchable&lt;/P&gt;&lt;P&gt;&amp;gt; exception) and it had this description:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;gt; CX_SY_REPLACE_INFINITE_LOOP	&lt;/P&gt;&lt;P&gt;&amp;gt; REPLACE ALL OCCURENCES OF ... with blank search&lt;/P&gt;&lt;P&gt;&amp;gt; string causes endless loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that SAP doesn't want to give us a better explanation -:(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 17:00:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870727#M673523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T17:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870728#M673524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srihari and Blag - but why the difference?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 17:10:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870728#M673524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T17:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870729#M673525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good question...Here comes my silly explanation...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPLACE --&amp;gt; Took first occurrence and replace it...

REPLACE ALL OCCURENCES --&amp;gt; Took all occurrences...But as they are all SPACE, there's actually no size...So they can't be handled...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 17:16:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870729#M673525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T17:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870730#M673526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think deep down in the kernel this is how code for the replace statement has been written:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
If replace &amp;lt;b&amp;gt;one occurrence of &amp;lt;/b&amp;gt;
     Try to replace the char
else.
&amp;lt;b&amp;gt;*all occurences of &amp;lt;/b&amp;gt;
   if string length &amp;gt; 0.
      then replace.
   else.
      throw exception.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 17:19:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870730#M673526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T17:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870731#M673527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, but it doesn't work that way without the ALL OCCURRENCES. That's the question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 17:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870731#M673527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T17:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870732#M673528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srihari - it looks to me like you're saying it's a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 17:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870732#M673528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T17:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870733#M673529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Today I stumbled over the same problem. If you have at least Kernel 7.00 (I think) you may use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURRENCES OF REGEX '\s{1}' IN result WITH '_'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as replacement for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURRENCES OF space IN result WITH '_'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Just in case someone like me uses google in the future and finds this long dead thread.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 13:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870733#M673529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-19T13:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870734#M673530</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;This will also solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPLACE ALL OCCURRENCES OF ` ` IN f1 WITH '-'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 13:30:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870734#M673530</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-05-19T13:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870735#M673531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE f1 USING ' -'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 13:42:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870735#M673531</guid>
      <dc:creator>che_eky</dc:creator>
      <dc:date>2010-05-19T13:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870736#M673532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes - I know there's all sorts of workarounds. I was complaining about how it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note the date of the OP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rpb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 13:45:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870736#M673532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-19T13:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870737#M673533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was aware of this thread long before, and just wanted to add my opinion. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keshav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 13:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870737#M673533</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-05-19T13:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Inconsistent Behavior of the REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870738#M673534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worked Well&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 May 2016 13:28:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inconsistent-behavior-of-the-replace-statement/m-p/2870738#M673534</guid>
      <dc:creator>RachamallaKiran</dc:creator>
      <dc:date>2016-05-17T13:28:45Z</dc:date>
    </item>
  </channel>
</rss>

