<?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: Runtime error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782998#M648765</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 seems that some numeric field is holding a value greater than it's length specified,hence it's holding a '*' for the truncated digits.This could be the reason for the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find out the exact line where the issue is, goto transaction ST22(dump analysis), choose the session for your dump and check for the program lines where ' -&amp;gt;' this arrow mark appears.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line where the -&amp;gt; mark appears should be the reason for the dump.By looking at the corresponding line, we can get the name of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of any clarifications,please get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dilli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2007 07:58:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-18T07:58:27Z</dc:date>
    <item>
      <title>Runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782995#M648762</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;  I have got a runtime error CONVT_NO_NUMBER with short dump analysis as&lt;/P&gt;&lt;P&gt; " &amp;lt;u&amp;gt;&amp;lt;i&amp;gt;unable to interpret * as number&amp;lt;/i&amp;gt;&amp;lt;/u&amp;gt;" .The code snipplet is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CONCATENATE 'LIPSD-G_LFIMG(' c ')' INTO wc_item5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        l3 = i_tab2_zsd_autoconsflow-lfimg.&lt;/P&gt;&lt;P&gt;        WRITE l3 TO l4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        PERFORM dynfield   USING   wc_item5 l4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;The form part is :&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        FORM dynfield USING    value(fnam)&lt;/P&gt;&lt;P&gt;                       value(fval).&lt;/P&gt;&lt;P&gt;  CHECK NOT fval IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wt_bdcdata-fnam = fnam.&lt;/P&gt;&lt;P&gt;  wt_bdcdata-fval = fval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND wt_bdcdata.&lt;/P&gt;&lt;P&gt;  CLEAR wt_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.     &lt;/P&gt;&lt;P&gt;                 &lt;/P&gt;&lt;P&gt;                pls mention how to resolve the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 07:51:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782995#M648762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T07:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782996#M648763</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;check your definition for &lt;/P&gt;&lt;P&gt;l3 , I4&lt;/P&gt;&lt;P&gt;and i_tab2_zsd_autoconsflow-lfimg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All must be from a number-type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 07:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782996#M648763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T07:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782997#M648764</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;While concatenating all the fields should be of charachter type. So change this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the below I3 and I4 should be charachter type.&lt;/P&gt;&lt;P&gt;WRITE l3 TO l4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error is mainly due to wrong declaration of fields and wrong usage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 07:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782997#M648764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T07:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782998#M648765</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 seems that some numeric field is holding a value greater than it's length specified,hence it's holding a '*' for the truncated digits.This could be the reason for the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find out the exact line where the issue is, goto transaction ST22(dump analysis), choose the session for your dump and check for the program lines where ' -&amp;gt;' this arrow mark appears.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line where the -&amp;gt; mark appears should be the reason for the dump.By looking at the corresponding line, we can get the name of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of any clarifications,please get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dilli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 07:58:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782998#M648765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T07:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782999#M648766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Debarshi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVT_NO_NUMBER:you will get this error when the variable is used to hold floating values and the value assigned will be of character type.&lt;/P&gt;&lt;P&gt;This is mainly due to wrong value being assigned .&lt;/P&gt;&lt;P&gt;i think you will be getting this error at wt_bdcdata-fval = fval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while assigning the values catch the exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CATCH SYSTEM-EXCEPTIONS CONVT_NO_NUMBER = 5.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;   Required coding.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDCATCH.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revert bakc if u need further help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 08:05:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error/m-p/2782999#M648766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T08:05:16Z</dc:date>
    </item>
  </channel>
</rss>

