<?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: Reg: REPLACE statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720905#M1298089</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 with Translate lv_data using '" '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2009 13:34:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-09T13:34:45Z</dc:date>
    <item>
      <title>Reg: REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720904#M1298088</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;I am using the below shown statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_data = ' "YellLive","Acc1st,"January",2009,"Account","Summary_",sch'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF '","' in lv_data with ','.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF '",' in lv_data with ','.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',"' in lv_data with ','.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically i want to remove the (") from the variable LV_DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statements are working fine in ECC 6.0, but not in 4.6C (as, 'ALL OCCURRENCES OF' is not allowed here).&lt;/P&gt;&lt;P&gt;I have to use the same logic in 4.6C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone suggest some solution, but even i dont want to Iterate the Variable LV_DATA and SEARCH, as it will cause Performance problem (as this logic is to be used on the bulk of data in loop).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Pankaj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:27:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720904#M1298088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T13:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720905#M1298089</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 with Translate lv_data using '" '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:34:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720905#M1298089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T13:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720906#M1298090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;use a FM SSM_REPLACE_CHAR_BY_SPACE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Function module              SSM_REPLACE_CHAR_BY_SPACE
 Import parameters               Value
  INPUT_STRING                    "YELLLIVE","ACC1ST,"JANUARY",2009,"ACCOUNT","SUMMARY_",SCH'
  CHAR                            "

  Export parameters               Value
  OUTPUT_STRING                    YELLLIVE , ACC1ST, JANUARY ,2009, ACCOUNT , SUMMARY_ ,SCH'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720906#M1298090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T13:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720907#M1298091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you must program a loop for yout data in 4.6C, because addition "ALL OCCURRENCES "&lt;/P&gt;&lt;P&gt;doesn't exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or copy and modify a fm like PREPARE_STRING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720907#M1298091</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2009-06-09T13:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: REPLACE statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720908#M1298092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I can use TRANSLATE stm. or the mentioned FM 'SSM_REPLACE_CHAR_BY_SPACE', but I want to remove the spaces also (i want to remove " with blank value and not with SPACE) and that too without using SPLIT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any possible solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pankaj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-replace-statement/m-p/5720908#M1298092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T13:54:09Z</dc:date>
    </item>
  </channel>
</rss>

