<?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: replacing ',' with space in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763655#M1116823</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: output type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create an itab of type text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split &amp;lt;string&amp;gt; at ',' into table &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;  concatenate output &amp;lt;itab-field&amp;gt; into output separated by space.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Nov 2008 09:21:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-05T09:21:08Z</dc:date>
    <item>
      <title>replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763652#M1116820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to replace ',' with space in one field.&lt;/P&gt;&lt;P&gt;I am using following syntax but its not working help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN itab-xyz  WITH ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN itab-xyz  WITH SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both are not working, so need ur help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Basu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:17:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763652#M1116820</guid>
      <dc:creator>former_member575017</dc:creator>
      <dc:date>2008-11-05T09:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763653#M1116821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope you loop the itab to make this change .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN itab-xyz WITH ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---&amp;gt; You need to use modify itab to make the change permanent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763653#M1116821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763654#M1116822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using TRANSLATE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TRANSLATE itab-xyz USING ', '. "pls. not there is a space after the coma&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check if itab-xyz has any value when the statement is reached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763654#M1116822</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-05T09:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763655#M1116823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: output type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create an itab of type text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split &amp;lt;string&amp;gt; at ',' into table &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;  concatenate output &amp;lt;itab-field&amp;gt; into output separated by space.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:21:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763655#M1116823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763656#M1116824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; REPLACE ALL OCCURRENCES OF ',' IN itab-xyz  WITH ' '.&lt;/P&gt;&lt;P&gt;&amp;gt; REPLACE ALL OCCURRENCES OF ',' IN itab-xyz  WITH SPACE.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use &lt;STRONG&gt;IN TABLE itab&lt;/STRONG&gt; instead of &lt;STRONG&gt;IN itab-xyz&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURRENCES OF ',' IN TABLE itab WITH SPACE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Karthik D on Nov 5, 2008 3:07 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:37:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763656#M1116824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763657#M1116825</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;   I have recently worked with the same syntax. It is working fine for me. Please check this out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_itab ASSIGNING &amp;lt;fs_t_itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CHECK &amp;lt;fs_t_itab&amp;gt; IS ASSIGNED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN &amp;lt;fs_t_itab&amp;gt;-fieldname WITH ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763657#M1116825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T10:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763658#M1116826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your efforts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using below code its working fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      while itab-xyz cs ','.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        replace ',' with ' ' into itab-xyz.&lt;/P&gt;&lt;P&gt;      endwhile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Basu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 11:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763658#M1116826</guid>
      <dc:creator>former_member575017</dc:creator>
      <dc:date>2008-11-05T11:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763659#M1116827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as my knowledge is concern, i don't think that the code has any nagation..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;REPLACE ALL OCCURRENCES OF ',' IN itab-xyz WITH ' '.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;REPLACE ALL OCCURRENCES OF ',' IN itab-xyz WITH SPACE.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 11:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763659#M1116827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T11:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: replacing ',' with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763660#M1116828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;close the thread as answered if you got the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 11:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing-with-space/m-p/4763660#M1116828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T11:30:58Z</dc:date>
    </item>
  </channel>
</rss>

