<?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 - incompatible type error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463185#M1057636</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeyanthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as u told that you have changed type of up_ziffer from c to n .&lt;/P&gt;&lt;P&gt;but int_zahl is of data type c.&lt;/P&gt;&lt;P&gt;so change the data type of either variable n try to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will solve your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Sep 2008 09:30:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-05T09:30:52Z</dc:date>
    <item>
      <title>abap - incompatible type error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463182#M1057633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the requirement to change spell_amount function module into Z_SPELL_AMOUNT Function module. Sap has givin some modifications in spell_amount function module. so i have done those changes in Z_SPELL_AMOUNT FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After changing the code... the errors says that INT_ZAHL and UP_ZIFFER are type incompatile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please find the following code which i changed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the below coding it is showing error in the following statement&lt;/P&gt;&lt;P&gt;DO 15 TIMES VARYING up_ziffer FROM int_zahl&lt;EM&gt;0 NEXT int_zahl&lt;/EM&gt;1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SPELL_AMOUNT function modue contains this ZIFFERN_IN_WORTEN subroutine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeyanthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 08:46:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463182#M1057633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T08:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: abap - incompatible type error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463183#M1057634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;      May be ur system is Unicode enabaled so offset is not happening &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tell me how are int_zahl and UP_ZIFFER  DECLARED now and what were earlier declaration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 08:53:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463183#M1057634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T08:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: abap - incompatible type error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463184#M1057635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Dinesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;previously the variable declaration  was &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;up_ziffer(1) TYPE c,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in correction i have changed like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;up_ziffer(1) TYPE n,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no correction with int_zahl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;previousely that do statement was&lt;/P&gt;&lt;P&gt;DO 15 TIMES &lt;/P&gt;&lt;P&gt;then changed as per correction in the notes&lt;/P&gt;&lt;P&gt;like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 15 TIMES VARYING up_ziffer FROM int_zahl&lt;EM&gt;0 NEXT int_zahl&lt;/EM&gt;1.&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;Jeyanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 08:58:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463184#M1057635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T08:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: abap - incompatible type error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463185#M1057636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeyanthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as u told that you have changed type of up_ziffer from c to n .&lt;/P&gt;&lt;P&gt;but int_zahl is of data type c.&lt;/P&gt;&lt;P&gt;so change the data type of either variable n try to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will solve your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 09:30:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463185#M1057636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T09:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: abap - incompatible type error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463186#M1057637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no ya...&lt;/P&gt;&lt;P&gt;i have tried it was not working out.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my system is unicode enabled&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 09:51:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-incompatible-type-error/m-p/4463186#M1057637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T09:51:19Z</dc:date>
    </item>
  </channel>
</rss>

