<?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: What does this error mean?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035446#M718135</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good your problem solved. Then you can close the thread :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Nov 2007 08:06:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-06T08:06:07Z</dc:date>
    <item>
      <title>What does this error mean??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035441#M718130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I am getting a short dump when the sy-tabix value reaches 1000 until that it is working.&lt;/P&gt;&lt;P&gt;I am calling subroutines from Script.What can be the reason??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUNTIME ERRORS : CONVT_NO_NUMBER.&lt;/P&gt;&lt;P&gt;EXCEPTION : CX_SY_CONVERSION_NO_NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I handle this problem.it tells that the exception should be caught from the subroutine that is called...How to handlle the exception.&lt;/P&gt;&lt;P&gt;Kindly help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 07:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035441#M718130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T07:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: What does this error mean??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035442#M718131</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 may be coming at situation where CHAR is assigned to I type field.&lt;/P&gt;&lt;P&gt;Can you paste the code where you are getting this dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 07:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035442#M718131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T07:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: What does this error mean??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035443#M718132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have a string/char and want to assign this to a variable which only can held numbers linke int or packed decimal, but the string does not refelct a correct number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  var type p dec 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var = '3.14'.  " this will work&lt;/P&gt;&lt;P&gt;var = '3,14'. " this will not work because of the comma&lt;/P&gt;&lt;P&gt;var = 'nonsens'. " of couse this will not work, too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 07:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035443#M718132</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2007-11-06T07:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: What does this error mean??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035444#M718133</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;This exception will raise when string value is tried to convert to Numeric value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While assigning the value the numeric value 1000, but 1000 may be in 1,000 format so it is giving this error message. System may not recognise , as numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 07:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035444#M718133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T07:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: What does this error mean??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035445#M718134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using Try Catch we can catch the Exception as we know the name of the Exception.It is working now..&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 08:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035445#M718134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T08:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: What does this error mean??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035446#M718135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good your problem solved. Then you can close the thread :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 08:06:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-this-error-mean/m-p/3035446#M718135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T08:06:07Z</dc:date>
    </item>
  </channel>
</rss>

