<?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 multiplication problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889534#M678980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying this statement in my code, but it is showing error pls help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vv007 = kbetr * absmg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here absmg is quan (15 , 3 decimals) &lt;/P&gt;&lt;P&gt;kbetr is curr (11, 2 decimals) ie rate&lt;/P&gt;&lt;P&gt;vv007 is curr(15, 2 decimals).&lt;/P&gt;&lt;P&gt;error is input value is greater than screen field ie vv007(table is ce1****).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Oct 2007 11:17:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-15T11:17:13Z</dc:date>
    <item>
      <title>multiplication problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889534#M678980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying this statement in my code, but it is showing error pls help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vv007 = kbetr * absmg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here absmg is quan (15 , 3 decimals) &lt;/P&gt;&lt;P&gt;kbetr is curr (11, 2 decimals) ie rate&lt;/P&gt;&lt;P&gt;vv007 is curr(15, 2 decimals).&lt;/P&gt;&lt;P&gt;error is input value is greater than screen field ie vv007(table is ce1****).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 11:17:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889534#M678980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T11:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: multiplication problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889535#M678981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change u r absmg to 2 decimals &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change u r kbetr and w007 to 3 decimals &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then it will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 11:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889535#M678981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T11:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: multiplication problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889536#M678982</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;it's showing error when u Check the code or when u run the program?&lt;/P&gt;&lt;P&gt;if when it's run, U can try &amp;lt;b&amp;gt;Increasing the size of the field "w007"&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this:&lt;/P&gt;&lt;P&gt;U have one value size 15 ( no decimals ) and outher of size 11.&lt;/P&gt;&lt;P&gt;look this example:&lt;/P&gt;&lt;P&gt;a = '999999999' "(size 9 without decimals)&lt;/P&gt;&lt;P&gt;b = '999999999' "(size 9 without decimals)&lt;/P&gt;&lt;P&gt;c = a * b.&lt;/P&gt;&lt;P&gt;*c has the value "999999998000000001" and size 18 (more than 15).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe this is the error...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to increaser the size of field of the screen(Paint) and Increase the size of field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post urs results plx.&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;&lt;/P&gt;&lt;P&gt;Allan Cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 12:08:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889536#M678982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T12:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: multiplication problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889537#M678983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;debug the report and check the value for the vv007 that you are entering in the screen field. and again you check what is the value of kbetr and abmsmg .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 13:16:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiplication-problem/m-p/2889537#M678983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T13:16:25Z</dc:date>
    </item>
  </channel>
</rss>

