<?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 Round in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298767#M789524</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;&lt;/P&gt;&lt;P&gt;is there any function like round?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jan 2008 11:02:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-21T11:02:20Z</dc:date>
    <item>
      <title>Round</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298767#M789524</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;&lt;/P&gt;&lt;P&gt;is there any function like round?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 11:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298767#M789524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T11:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Round</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298768#M789525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a ABAP statement ROUND.&lt;/P&gt;&lt;P&gt;Check this link for details and examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/9f/db9e3d35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/9f/db9e3d35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 11:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298768#M789525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T11:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: Round</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298769#M789526</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;I think ceil and floor statement are used for rounding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram POnna,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 11:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298769#M789526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T11:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Round</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298770#M789527</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;yes u can use the FM ROUND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rounding to spec. no. of dec. place (round up, round down, comm. round&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functionality&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module rounds the value INPUT to ANDEC decimal places. The parameter SIGN determines whether rounding is down ('-'), up ('+') or commercial ('X').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If SIGN = SPACE, there is no rounding (OUTPUT = INPUT).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value VALUE is to be rounded up to the nearest hundred.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: VALUE TYPE F,&lt;/P&gt;&lt;P&gt;      ROUND_VALUE TYPE F.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ROUND'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          DECIMALS = 2-&lt;/P&gt;&lt;P&gt;          INPUT    = VALUE&lt;/P&gt;&lt;P&gt;          SIGN     = '+'&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          OUTPUT   = ROUND_VALUE&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          INPUT_INVALD = 01&lt;/P&gt;&lt;P&gt;          OVERFLOW     = 02&lt;/P&gt;&lt;P&gt;          TYPE_INVALID = 03. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result of floating point rounding calculations can be incorrect in certain cases because of rounding errors.&lt;/P&gt;&lt;P&gt;If INPUT is a field of type P, internal calculatons similarly use packed numbers. This is expensive, but more accurate. If the calculation accuracy is very important, INPUT should thus be a field of type P.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz reward if it is usefull....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz dont forget to reward...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2008 11:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/round/m-p/3298770#M789527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-21T11:11:46Z</dc:date>
    </item>
  </channel>
</rss>

