<?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: how to remove decimal point in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239614#M773077</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;SPLIT f AT '.'  INTO f1 f2.&lt;/P&gt;&lt;P&gt;Concatenate f1 f2 into f3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jan 2008 15:13:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-15T15:13:46Z</dc:date>
    <item>
      <title>how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239609#M773072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I want to remove decimal point in quantity field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g instead 5.0000, it should print 50000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one suggest what to be done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239609#M773072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T15:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239610#M773073</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;PRE&gt;&lt;CODE&gt;
    DATA : l_quntity(16).

    l_quntity  = itab-menge.  "quntity field 5.0000

    REPLACE ALL OCCURRENCES OF '.' IN l_quntity WITH SPACE.
    CONDENSE l_quntity.

    WRITE l_quntity.

    &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239610#M773073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T15:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239611#M773074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: p_fld type p decimals 4.
data: c_fld(15) type c.

c_fld = p_fld.
translate c_fld using '. '.
condense c_fld no-gaps.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also find the number of decimals places, and then multiple by 10, 100, 1000,  etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:11:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239611#M773074</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-01-15T15:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239612#M773075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goto Menu option &lt;/P&gt;&lt;P&gt;System - User Profile - Own Data&lt;/P&gt;&lt;P&gt;Tabstrip Defaults&lt;/P&gt;&lt;P&gt;Change Decimal Notation to 1234567,89, that will remove the decimal point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have to log out and back on before it takes effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:12:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239612#M773075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T15:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239613#M773076</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;Use syntax REPLACE ALL OCCURANCES OF ',' in &amp;lt;field Name&amp;gt; with ''.&lt;/P&gt;&lt;P&gt;CONDENCE &amp;lt;field name&amp;gt; no-gaps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:12:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239613#M773076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T15:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239614#M773077</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;SPLIT f AT '.'  INTO f1 f2.&lt;/P&gt;&lt;P&gt;Concatenate f1 f2 into f3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:13:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239614#M773077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T15:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239615#M773078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Imran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write that fields with "decimals 0" option in Write statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;~ Ranganath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:16:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239615#M773078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T15:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove decimal point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239616#M773079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your kindly help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 15:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-remove-decimal-point/m-p/3239616#M773079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T15:23:25Z</dc:date>
    </item>
  </channel>
</rss>

