<?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 quantity field error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422428#M540920</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;When  i am multiplying&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  xkomv-kwert = xkomv-kbetr(11.14) * KOMP-MGAME( 1.000 this is one).&lt;/P&gt;&lt;P&gt;  it is giving 11140.00 what need to be done, I am aware because of the QUANTITY field, now please tell me &lt;/P&gt;&lt;P&gt;         1. Whether I need to pass the UNIT field? HOW?&lt;/P&gt;&lt;P&gt;         2. or I need do use some numerator / denominator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jul 2007 12:28:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-02T12:28:13Z</dc:date>
    <item>
      <title>quantity field error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422428#M540920</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;When  i am multiplying&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  xkomv-kwert = xkomv-kbetr(11.14) * KOMP-MGAME( 1.000 this is one).&lt;/P&gt;&lt;P&gt;  it is giving 11140.00 what need to be done, I am aware because of the QUANTITY field, now please tell me &lt;/P&gt;&lt;P&gt;         1. Whether I need to pass the UNIT field? HOW?&lt;/P&gt;&lt;P&gt;         2. or I need do use some numerator / denominator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 12:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422428#M540920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T12:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: quantity field error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422429#M540921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Prabhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  goto the attributes of the program and check if &amp;lt;b&amp;gt;Fixed Point Arithmetic&amp;lt;/b&amp;gt; checkbox is checked or not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Fixed point arithmetic&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you mark this checkbox, all caluculations in the program will use&lt;/P&gt;&lt;P&gt;    fixed point arithmetic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you do not, packed numbers (ABAP/4 type P, Dictionary types CURR, DEC&lt;/P&gt;&lt;P&gt;    or QUAN) will be treated as integers when they are used in assignments,&lt;/P&gt;&lt;P&gt;    comparisons and calculations, irrespective of the number of decimal&lt;/P&gt;&lt;P&gt;    places defined. Intermediate results in arithmetic calculations will&lt;/P&gt;&lt;P&gt;    also be rounded to the next whole number. The number of decimal places&lt;/P&gt;&lt;P&gt;    defined is only taken into account when you output the answer using the&lt;/P&gt;&lt;P&gt;    WRITE statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 12:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422429#M540921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T12:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: quantity field error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422430#M540922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the Flag in the Attributes of the report&amp;lt;b&amp;gt; FIXED POINT ARITHMETEIC.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or &amp;lt;b&amp;gt;Divide the result by 1000&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 12:35:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422430#M540922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T12:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: quantity field error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422431#M540923</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;It is a SAP statndard program for USER EXITS so there is no FIXED POINT ARITHMETEIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 12:54:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quantity-field-error/m-p/2422431#M540923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-02T12:54:47Z</dc:date>
    </item>
  </channel>
</rss>

