Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Type incompatible

Former Member
0 Kudos

Hai all,

We are doing ECC6.0 upgrade from 4.6C. While doing this the following error is displayed when we enable a program as unicode enabled.

"ZINT_DENO" and "UP_ZIFFER" are type-incompatible ( DO 9 TIMES VARYING UP_ZIFFER FROM ZINT_DENO0 NEXT ZINT_DENO1 )

the fields are declared as below in my code.

UP_ZIFFER(1) TYPE N.

BEGIN OF ZINT_DENO,

  • more than crore in version 2

CRR(2) TYPE C,

LAK(2) TYPE C,

TSD(2) TYPE C,

HUN(3) TYPE C,

END OF ZINT_DENO.

How to solve this? Is there any alternative code in ECC6 for this?

Regards

Renuga.A

2 REPLIES 2

Former Member
0 Kudos

Try Using the below line of code:

DO 9 TIMES VARYING UP_ZIFFER FROM ZINT_DENO0 NEXT ZINT_DENO1 RANGE ZINT_DENO.

If this does not work,send the exact error what it shows.

0 Kudos

Hi Jain,

Tnx for ur reply.

But the error was not solved.

The exact error is "ZINT_DENO" and "UP_ZIFFER" are type-incompatible.

Regards,

Ranjith C.