<?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 # in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace/m-p/4593252#M1083124</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Santosh for your time . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried that also . it is working fine in Development server . But in quality server , sy-subrc value 2 , it is giving . even i removed sy-subrc  check also , that also not working in Quality server . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls.help me  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards , &lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Oct 2008 06:01:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-22T06:01:27Z</dc:date>
    <item>
      <title>Replace #</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace/m-p/4593250#M1083122</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 want to  replace # symbol . &lt;/P&gt;&lt;P&gt;like my text  SSS113 200MM# -SL&lt;/P&gt;&lt;P&gt;I  need to replace it  SSS113 200MM -SL( remove the # symbol )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the below code in Development server . it is working fine. however , it is not working in Quality server . &lt;/P&gt;&lt;P&gt;IF p_text IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SPLIT p_text AT c_# INTO l_text l_text1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    REPLACE ALL OCCURRENCES OF cl_abap_char_utilities=&amp;gt;horizontal_tab IN l_text WITH '-'.&lt;/P&gt;&lt;P&gt;    REPLACE ALL OCCURRENCES OF cl_abap_char_utilities=&amp;gt;horizontal_tab IN l_text1 WITH '-'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE l_text l_text1 INTO p_text  SEPARATED BY '-'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;when i check in debugging mode  , if i change the value in debugging mode manully , it is replacing the # value . after that i changed the code below .&lt;/P&gt;&lt;P&gt;after also , got same problem , working in Developement server . not working in quality server.&lt;/P&gt;&lt;P&gt; Data: l_special_chars TYPE CHAR50 value '#'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF p_text is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    translate p_text using l_special_chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Pls.help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards , &lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 05:47:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace/m-p/4593250#M1083122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T05:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace/m-p/4593251#M1083123</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;You can try with this statement i will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        REPLACE '#' WITH '-' INTO Your field.&lt;/P&gt;&lt;P&gt;        CONDENSE field NO-GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 05:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace/m-p/4593251#M1083123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T05:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace/m-p/4593252#M1083124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Santosh for your time . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried that also . it is working fine in Development server . But in quality server , sy-subrc value 2 , it is giving . even i removed sy-subrc  check also , that also not working in Quality server . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls.help me  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards , &lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 06:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace/m-p/4593252#M1083124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T06:01:27Z</dc:date>
    </item>
  </channel>
</rss>

