<?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: ABAP_DUMP error CONVERT-NO-NUMBER in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908967#M684433</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your inputs .&lt;/P&gt;&lt;P&gt;The problem solved .  I found that error is due to some incorrect input parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 10:20:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T10:20:21Z</dc:date>
    <item>
      <title>ABAP_DUMP error CONVERT-NO-NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908962#M684428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running one customized report in DEV and QAS ( Same Report amd Same Version).  In Dev there is no error working fine , but in QAS I got Abap dump error.&lt;/P&gt;&lt;P&gt;This one is ASSET LISTING REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR :&lt;/P&gt;&lt;P&gt;Unable to interpret 'MV' as number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the error in IF condition as follows:&lt;/P&gt;&lt;P&gt;******************************&lt;/P&gt;&lt;P&gt;GET ANLAV.&lt;/P&gt;&lt;P&gt;  CLEAR: IT_ASSET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check acquisition date&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CHECK ANLAV-ZUGDT LE P_DATE.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;If it_asset_temp-asset no is not empty means it has not updated so&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*append to display low value asset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF IT_ASSET_TEMP-ANLN1 NE 0.              ( GOT ERROR HERE)&lt;/P&gt;&lt;P&gt;    APPEND IT_ASSET_TEMP. CLEAR IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check deactivation date.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF ANLAV-DEAKT NE '00000000' OR&lt;/P&gt;&lt;P&gt;     ANLAV-GPLAB NE '00000000'.&lt;/P&gt;&lt;P&gt;    CHECK ANLAV-DEAKT GT P_DATE.&lt;/P&gt;&lt;P&gt;    CHECK ANLAV-GPLAB GT P_DATE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET ANLZ.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING ANLAV TO IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING ANLZ TO IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET ANLCV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM GETDEPRECIATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IT_ASSET_TEMP-ACQ_VALUE = X-GJE_KANSW.&lt;/P&gt;&lt;P&gt;  IT_ASSET_TEMP-KNAFA = X-NAFAP + X-NABWB + X-KNAFA.&lt;/P&gt;&lt;P&gt;  IT_ASSET_TEMP-BK_VALUE = X-GJE_BCHWRT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND IT_ASSET_TEMP. CLEAR IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If it_asset_temp-asset no is not empty means it has not updated so&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*append to display low value asset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF IT_ASSET_TEMP-ANLN1 NE 0.&lt;/P&gt;&lt;P&gt;    APPEND IT_ASSET_TEMP. CLEAR IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone help me ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 07:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908962#M684428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T07:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP_DUMP error CONVERT-NO-NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908963#M684429</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;may be the some data present in quality is type character and you are trying to pass it to a field which is of type I.MV is being passed into field whose type is I.You cant pass char fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Raghu Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 07:44:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908963#M684429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T07:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP_DUMP error CONVERT-NO-NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908964#M684430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GET ANLAV.&lt;/P&gt;&lt;P&gt;CLEAR: IT_ASSET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check acquisition date&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CHECK ANLAV-ZUGDT LE P_DATE.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;If it_asset_temp-asset no is not empty means it has not updated so&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*append to display low value asset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IT_ASSET_TEMP-ANLN1 NE 0. ( GOT ERROR HERE)&lt;/P&gt;&lt;P&gt;APPEND IT_ASSET_TEMP. CLEAR IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check deactivation date.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF ANLAV-DEAKT NE '00000000' OR&lt;/P&gt;&lt;P&gt;ANLAV-GPLAB NE '00000000'.&lt;/P&gt;&lt;P&gt;CHECK ANLAV-DEAKT GT P_DATE.&lt;/P&gt;&lt;P&gt;CHECK ANLAV-GPLAB GT P_DATE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET ANLZ.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING ANLAV TO IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING ANLZ TO IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET ANLCV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM GETDEPRECIATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT_ASSET_TEMP-ACQ_VALUE = X-GJE_KANSW.&lt;/P&gt;&lt;P&gt;IT_ASSET_TEMP-KNAFA = X-NAFAP + X-NABWB + X-KNAFA.&lt;/P&gt;&lt;P&gt;IT_ASSET_TEMP-BK_VALUE = X-GJE_BCHWRT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND IT_ASSET_TEMP. CLEAR IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If it_asset_temp-asset no is not empty means it has not updated so&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*append to display low value asset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IF IT_ASSET_TEMP-ANLN1 &amp;lt;i&amp;gt;NOT INITIAL&amp;lt;/i&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;APPEND IT_ASSET_TEMP. CLEAR IT_ASSET_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No Rewards Plz...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 07:47:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908964#M684430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T07:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP_DUMP error CONVERT-NO-NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908965#M684431</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;My question is in Dev there is no error , Why the error in QAS ?&lt;/P&gt;&lt;P&gt;Same code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 08:04:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908965#M684431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T08:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP_DUMP error CONVERT-NO-NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908966#M684432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As I told you , in quality &lt;/P&gt;&lt;P&gt;instead of maintaining anln1 as type i , they might be maintaining type c values.What is the type of IT_ASSET_TEMP-ANLN1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 08:09:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908966#M684432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T08:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP_DUMP error CONVERT-NO-NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908967#M684433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your inputs .&lt;/P&gt;&lt;P&gt;The problem solved .  I found that error is due to some incorrect input parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-convert-no-number/m-p/2908967#M684433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:20:21Z</dc:date>
    </item>
  </channel>
</rss>

