<?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: Receiving a run time error BCD_OVERFLOW in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639572#M1092183</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;what ever u r passing one variable to another variable that length is low .&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;data:a(10) type c,&lt;/P&gt;&lt;P&gt;b(5) type c .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a=1000000000.&lt;/P&gt;&lt;P&gt;b=a.&lt;/P&gt;&lt;P&gt;at that time u will get this error.&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;Bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Oct 2008 14:15:09 GMT</pubDate>
    <dc:creator>BH2408</dc:creator>
    <dc:date>2008-10-22T14:15:09Z</dc:date>
    <item>
      <title>Receiving a run time error BCD_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639569#M1092180</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;While executing the Zprogram ...I am receiving a run time error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Got Runtime Error BCD_OVERFLOW &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I analysed the issue in ST22....Type P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result is larger than one which is defined... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion would be appreciated ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 14:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639569#M1092180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T14:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving a run time error BCD_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639570#M1092181</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 may need to define the result field to be larger, if it is still &lt;/P&gt;&lt;P&gt;possible to do so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Or &lt;/P&gt;&lt;P&gt;there is another way you can handle this error...&lt;/P&gt;&lt;P&gt;You can give a try  using this sample code:&lt;/P&gt;&lt;P&gt;***********************************&lt;/P&gt;&lt;P&gt;Data : l_number_str type string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Catch system-exceptions convt_no_number    = 1&lt;/P&gt;&lt;P&gt;                       convt_overflow     = 2&lt;/P&gt;&lt;P&gt;                       bcd_field_overflow = 3&lt;/P&gt;&lt;P&gt;                       bcd_overflow       = 4.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_number = l_number_str. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcatch &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;Regards&lt;/P&gt;&lt;P&gt;Lekha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 14:08:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639570#M1092181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T14:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving a run time error BCD_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639571#M1092182</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;Thank you for your response! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had just tried with the same resolution and I think it has solved my issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 14:12:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639571#M1092182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T14:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving a run time error BCD_OVERFLOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639572#M1092183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;what ever u r passing one variable to another variable that length is low .&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;data:a(10) type c,&lt;/P&gt;&lt;P&gt;b(5) type c .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a=1000000000.&lt;/P&gt;&lt;P&gt;b=a.&lt;/P&gt;&lt;P&gt;at that time u will get this error.&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;Bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 14:15:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/receiving-a-run-time-error-bcd-overflow/m-p/4639572#M1092183</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2008-10-22T14:15:09Z</dc:date>
    </item>
  </channel>
</rss>

