<?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: help in field type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965688#M396634</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare it as TYPE P DECIMALS 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and make sure that in the attributes(in menu Goto--&amp;gt;Attributes) of the program fixed point arithmetic is checked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Feb 2007 11:52:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-28T11:52:48Z</dc:date>
    <item>
      <title>help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965684#M396630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallow I have a problem in calculation  the problem is that I wont  to double 2 numbers from different type and the program bring me rounded number&lt;/P&gt;&lt;P&gt;I wont just the  real number   the types for the 2 numbers is&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Score is type N4&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;weighiting is type DEC3_2&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;In my program I do like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT score_tab INTO wa_score_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;wa_score_tab-score_sum&amp;lt;/b&amp;gt; = ( wa_score_tab-weighting * wa_score_tab-score ) / 100.&lt;/P&gt;&lt;P&gt;  MODIFY score_tab FROM wa_score_tab TRANSPORTING score_sum .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wont like &lt;/P&gt;&lt;P&gt;(77*5)/100 = 3.85&lt;/P&gt;&lt;P&gt;And not 4 like I have now.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Which type I have to declare score_sum.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 11:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965684#M396630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T11:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965685#M396631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data : sum type P decimals 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 11:46:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965685#M396631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T11:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965686#M396632</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 packed data type for i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreevani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 11:46:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965686#M396632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T11:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965687#M396633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Packed decimal type P and u can limit the how many decimal place u want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: sum type P decimals 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 11:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965687#M396633</guid>
      <dc:creator>alex_m</dc:creator>
      <dc:date>2007-02-28T11:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965688#M396634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare it as TYPE P DECIMALS 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and make sure that in the attributes(in menu Goto--&amp;gt;Attributes) of the program fixed point arithmetic is checked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 11:52:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965688#M396634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T11:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965689#M396635</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;Define wa_score_tab-score_sum  as the &amp;lt;b&amp;gt;same type of weighiting&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;U will get the correct output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if this helsp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 11:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965689#M396635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T11:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965690#M396636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi santosh &lt;/P&gt;&lt;P&gt;it help in the program but i have structre that i buield in se11 how i declare it their &lt;/P&gt;&lt;P&gt;becouse type p is erorr.&lt;/P&gt;&lt;P&gt;regardas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 12:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965690#M396636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T12:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965691#M396637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everyone &lt;/P&gt;&lt;P&gt;it help in the program but i have structre that i buield in se11 how i declare it their &lt;/P&gt;&lt;P&gt;becouse type p is erorr.&lt;/P&gt;&lt;P&gt;regardas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 12:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965691#M396637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T12:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: help in field type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965692#M396638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give the dataelement  as  DEC8_2  in SE11&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 12:31:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-field-type/m-p/1965692#M396638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T12:31:50Z</dc:date>
    </item>
  </channel>
</rss>

