<?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: Remove % from  Character in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679705#M1291126</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;Try with replace keyword&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REPLACE '%' WITH ' ' INTO variable which contains the value i.e 17.25%&lt;/P&gt;&lt;P&gt; CONDENSE variable which contains the value  NO-GAPS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jun 2009 10:04:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-02T10:04:34Z</dc:date>
    <item>
      <title>Remove % from  Character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679704#M1291125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     I run the function module VB_BATCH_GET_DETAIL after running &lt;/P&gt;&lt;P&gt;     i get the character value each material against a particular batch.&lt;/P&gt;&lt;P&gt;     For eg: i get 177.25 %.I want remove the % since i want to find the average of these characte value.&lt;/P&gt;&lt;P&gt;    How to solve this in ABAP&lt;/P&gt;&lt;P&gt;&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;Manoj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 09:57:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679704#M1291125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T09:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Remove % from  Character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679705#M1291126</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;Try with replace keyword&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REPLACE '%' WITH ' ' INTO variable which contains the value i.e 17.25%&lt;/P&gt;&lt;P&gt; CONDENSE variable which contains the value  NO-GAPS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 10:04:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679705#M1291126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T10:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Remove % from  Character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679706#M1291127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer program.. move your number 17.25% to character variable .. make the changes and  move it back to numeric variable.. do the changes to  it like taking avg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data v_var(10) type c value ' 17.25%'.&lt;/P&gt;&lt;P&gt;data l_number(10) type N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE  '%' WITH ' ' INTO v_var IN CHARACTER MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONDENSE v_var.&lt;/P&gt;&lt;P&gt;write v_var to l_number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE v_var.&lt;/P&gt;&lt;P&gt;WRITE l_number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 10:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679706#M1291127</guid>
      <dc:creator>gautam_totekar</dc:creator>
      <dc:date>2009-06-02T10:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Remove % from  Character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679707#M1291128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: l_amount(15) type c.&lt;/P&gt;&lt;P&gt;move amount to l_amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace all occurrences of '%' from l_amount with ' '.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 10:18:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-from-character/m-p/5679707#M1291128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T10:18:59Z</dc:date>
    </item>
  </channel>
</rss>

