<?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: RFC Runtime Dump :-  CONVERT_NO_NUMBER in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123990#M1511487</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;The data types of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import parameter:-&lt;/P&gt;&lt;P&gt;APP_COMPT like  DF14L-PS_POSID :----- which is a  CHAR 24&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in tabel parameter:-&lt;/P&gt;&lt;P&gt;ZAPP_COMP has 2 fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS_POSID  .......... CHAR  24.&lt;/P&gt;&lt;P&gt; NAME       -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt; CHAR  35.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;reshali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Jul 2010 11:30:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-02T11:30:18Z</dc:date>
    <item>
      <title>RFC Runtime Dump :-  CONVERT_NO_NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123988#M1511485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;I have written a RFC with the below code.The problem is , when i execute the same RFC with input as SD&lt;/P&gt;&lt;P&gt;it throws a runtime error saying CONVERT_NO_NUMBER  unable to interpret ''D' as a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After executing it show the result in the output table but when i try to click on the tables  tab .its show the above DUMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried writing the table contents  while in the select loop. it displays the output in console. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:- the shortdump is only shown when i try to display the out table list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CODE:-  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FUNCTION ZAPPLICATION_COMPONENT.
*"----------------------------------------------------------------------
*"*"Local interface:
*"  IMPORTING
*"     VALUE(APP_COMPT) LIKE  DF14L-PS_POSID OPTIONAL
*"  EXPORTING
*"     VALUE(RETURN) LIKE  BAPIRET2 STRUCTURE  BAPIRET2
*"  TABLES
*"      APP_DETAILS STRUCTURE  ZAPP_COMP OPTIONAL
*"----------------------------------------------------------------------

data : begin of it_app occurs 10,
         ps_posid like df14l-ps_posid,
         name     like df14t-name,
         end of it_app.



select a~ps_posid
*        a~FCTR_ID
        b~NAME
        from df14l as a
        inner join df14t as b
        on a~fctr_id = b~fctr_id
        into corresponding fields of  app_details
        where a~ps_posid like APP_COMPT
        and b~LANGU = 'EN'
        order by a~ps_posid.

    write:/ app_details-name.
append app_details.
endselect.

ENDFUNCTION.


The   ZAPP_COMP structure contain only 2 fields  like ps_posid and name .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reshali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 11:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123988#M1511485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T11:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Runtime Dump :-  CONVERT_NO_NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123989#M1511486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reshali ,&lt;/P&gt;&lt;P&gt;THis error comes when you try to populate a character value (A-Z , special symbols like . , , / etc) into a fields declared of type anything other than string or character. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You first read a Dump and see for which line it is giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its in select query then check data type of every field in internal table and fields used in WHERE compareason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can cross check the datbase entries getting fetched and see for each field which field contains value as 'D' or containing 'D'. You need to change the data type of that field to string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tell me what is the data type of df14l-ps_posid,df14t-name, and APPCOMPT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Uma Dave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: UmaDave on Jul 2, 2010 1:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 11:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123989#M1511486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T11:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Runtime Dump :-  CONVERT_NO_NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123990#M1511487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;The data types of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import parameter:-&lt;/P&gt;&lt;P&gt;APP_COMPT like  DF14L-PS_POSID :----- which is a  CHAR 24&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in tabel parameter:-&lt;/P&gt;&lt;P&gt;ZAPP_COMP has 2 fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS_POSID  .......... CHAR  24.&lt;/P&gt;&lt;P&gt; NAME       -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt; CHAR  35.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;reshali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 11:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123990#M1511487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T11:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Runtime Dump :-  CONVERT_NO_NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123991#M1511488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the rfc works fine....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the output result it shows 64 entries but when you try to click on the APP_COMPT tables ICON to vie wthe result...it goes to shortdump...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 11:32:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123991#M1511488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T11:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Runtime Dump :-  CONVERT_NO_NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123992#M1511489</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 think you shou;d have define another internal table with similar structure as app_details.&lt;/P&gt;&lt;P&gt;Then get the data into that internal table and update or insert into destination.&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;Pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 11:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123992#M1511489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T11:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Runtime Dump :-  CONVERT_NO_NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123993#M1511490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u share the Short dump log with us.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your entire this program , do you have any field which is of type number , numc , int which getting used in this program any how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Uma Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 11:50:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123993#M1511490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T11:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Runtime Dump :-  CONVERT_NO_NUMBER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123994#M1511491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just hit the debug button in the dump screen for the exact line of code.&lt;/P&gt;&lt;P&gt;The reason for dump is as said by uma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 12:29:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-runtime-dump-convert-no-number/m-p/7123994#M1511491</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-07-02T12:29:59Z</dc:date>
    </item>
  </channel>
</rss>

