<?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 Decimial places changing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923367#M688517</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts .please tell me how to change the decimal places. My statement is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;absmg type ce1whas-absmg.     (absmg is quantity field with 3 decimal places. I want to make it only 2 decimal places).Thanks for all the replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2007 04:36:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-16T04:36:47Z</dc:date>
    <item>
      <title>Decimial places changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923367#M688517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts .please tell me how to change the decimal places. My statement is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;absmg type ce1whas-absmg.     (absmg is quantity field with 3 decimal places. I want to make it only 2 decimal places).Thanks for all the replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 04:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923367#M688517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T04:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Decimial places changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923368#M688518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using the DEIMALS extension of the WRITE statement.&lt;/P&gt;&lt;P&gt;data: menge type menge_D value '1234'.&lt;/P&gt;&lt;P&gt;write:/ menge decimals 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 04:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923368#M688518</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-10-16T04:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Decimial places changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923369#M688519</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 change the decimal placing as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System - User Profile - Own Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Defaults tab set the Decimal Notation required ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 06:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923369#M688519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T06:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Decimial places changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923370#M688520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the following's program logic 2 if you want to round up to ceiling.&lt;/P&gt;&lt;P&gt;If you notice that assigning it to the following logic 1 it will only round up to ceiling if the last digit is more than or equal to 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Logic 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : l_value type p decimals 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value = menge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write : / l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Logic 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: l_value type p decimals 3,&lt;/P&gt;&lt;P&gt;              l_temp type n,&lt;/P&gt;&lt;P&gt;              l_len type n,&lt;/P&gt;&lt;P&gt;              l_string type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : menge type menge_D.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        l_value = menge.&lt;/P&gt;&lt;P&gt;        l_string = l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        l_len = strlen( l_string ) - 2.&lt;/P&gt;&lt;P&gt;        l_temp = l_string+l_len(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        if l_temp &amp;gt; 0.&lt;/P&gt;&lt;P&gt;          l_string = l_value + '0.01'.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        write : / l_string(l_len).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the above helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;Loo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 08:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923370#M688520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T08:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Decimial places changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923371#M688521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can change the decimal placing as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;System - User Profile - Own Data&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give your Decimal places notation here.&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;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 08:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimial-places-changing/m-p/2923371#M688521</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-10-17T08:11:19Z</dc:date>
    </item>
  </channel>
</rss>

