<?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 comma's and dots in a feild. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837103#M664308</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;Check the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_char(7), v_char1(6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dATA : V_FIELD(13) VALUE '123,34.45'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; split v_field at ',' into v_char v_char1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; concatenate v_char v_char1 into v_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; write: v_field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2007 07:49:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-03T07:49:19Z</dc:date>
    <item>
      <title>Remove comma's and dots in a feild.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837101#M664306</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 have a requirement to remove the commas and dots in particular string.&lt;/P&gt;&lt;P&gt;i hav explained like how i require the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note: simply if you look from last the first of special charecter is ',' then it should replace with '.' and all other ',' and '.' should be remove.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope this is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
1.200,50	should be 	1200.50
1,200.50	should be	1200.50
1200		should be	1200
1.200		should be	1.200
1,200		should be	1200
10,200.450.123	should be	10200450.123
10.200.450,123	should be	10200450.123
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me in this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will reward you with points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ragu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 07:38:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837101#M664306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T07:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Remove comma's and dots in a feild.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837102#M664307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code with TRANSLATE command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;dATA : V_FIELD(13) VALUE '123,34.45'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;translate v_field using ',..,' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ v_field.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 07:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837102#M664307</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-10-03T07:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remove comma's and dots in a feild.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837103#M664308</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;Check the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_char(7), v_char1(6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dATA : V_FIELD(13) VALUE '123,34.45'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; split v_field at ',' into v_char v_char1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; concatenate v_char v_char1 into v_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; write: v_field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 07:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837103#M664308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T07:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Remove comma's and dots in a feild.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837104#M664309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you check by changing the setting on your user profile on how numbers are displayed.&lt;/P&gt;&lt;P&gt;May be you don't have to convert if the settings are as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction code for accessing user profile : SU01, and check the defaults tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 07:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837104#M664309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T07:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Remove comma's and dots in a feild.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837105#M664310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;used editmask&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 07:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837105#M664310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T07:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remove comma's and dots in a feild.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837106#M664311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu,&lt;/P&gt;&lt;P&gt; Use the below mentioned statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : v_var(13) VALUE = 123,34.45.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF ',' IN v_var WITH ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harini.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 07:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-comma-s-and-dots-in-a-feild/m-p/2837106#M664311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T07:55:35Z</dc:date>
    </item>
  </channel>
</rss>

