<?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: decimal points in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332968#M1032341</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use like follow code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa_itab.&lt;/P&gt;&lt;P&gt;wa_value = wa_itab-currency.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN wa_value WITH '.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Aug 2008 08:10:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-14T08:10:37Z</dc:date>
    <item>
      <title>decimal points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332963#M1032336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a string 123,45,0.89.&lt;/P&gt;&lt;P&gt;my requirement is to identiy the commas &lt;/P&gt;&lt;P&gt;where exactly it is and need to delete the &lt;/P&gt;&lt;P&gt;commas.the string i am getting from the flat file,so the&lt;/P&gt;&lt;P&gt;commas maybe at the third and 5th position or etc.&lt;/P&gt;&lt;P&gt;so i cannot predict the commas where they are.so what ever the&lt;/P&gt;&lt;P&gt;string is i need to delete the commas and period should be there ie&lt;/P&gt;&lt;P&gt;decimal should be the there.&lt;/P&gt;&lt;P&gt;so tell me how to handle this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332963#M1032336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T07:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: decimal points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332964#M1032337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;     Read this string and split the string  and loop at that string check it with ',' if sy-subrc = 0 delete ',' and endloep.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;jaten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332964#M1032337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T07:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: decimal points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332965#M1032338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jaten,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN test1 WITH space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:56:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332965#M1032338</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-08-14T07:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: decimal points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332966#M1032339</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;You can use the REPLACE ALL OCCURANCE and CONDENSE statements to achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN var1 WITH ' '. &lt;/P&gt;&lt;P&gt;condense var1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now var1 will not have any comma in it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332966#M1032339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T07:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: decimal points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332967#M1032340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MN,&lt;/P&gt;&lt;P&gt;you can read the string and &lt;/P&gt;&lt;P&gt;replace all occurrences of ',' in string with space.&lt;/P&gt;&lt;P&gt;condense string no-gaps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332967#M1032340</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-08-14T07:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: decimal points</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332968#M1032341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use like follow code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa_itab.&lt;/P&gt;&lt;P&gt;wa_value = wa_itab-currency.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN wa_value WITH '.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 08:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-points/m-p/4332968#M1032341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T08:10:37Z</dc:date>
    </item>
  </channel>
</rss>

