Application Development and Automation 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: 
Read only

Error whenCopies the Data from One Internal Table to Another

Former Member
0 Likes
669

hi ,i m facing error when i copying data from one table to other

do 10 times varying it1-f1 from alpha0 next alpha1.

append it1.

error: it1-f1 and ALPHA are type-incompatible

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
638

Mohit,

Check both the fields of internal tables have same or compatable type.

Don't forget to reward if useful.

hi ,i m facing error when i copying data from one table to other

do 10 times varying it1-f1 from alpha0 next alpha1.

append it1.

error: it1-f1 and ALPHA are type-incompatible

5 REPLIES 5
Read only

Former Member
0 Likes
638

hi,

Check the types of both the it1-f1 and alpha..

Just put the alpha type of it1-f1//

rewards

regards

nazeer

Read only

former_member632991
Active Contributor
0 Likes
638

Hi,

SInce u r increasing the value of it-f1 from alpha0 to alpha 1 , both should be of same type.

declare alpha as of type it-fi.

Regards,

Sonika

Read only

Former Member
0 Likes
639

Mohit,

Check both the fields of internal tables have same or compatable type.

Don't forget to reward if useful.

Read only

Former Member
0 Likes
638

Hi Verma,

The error it self tells us that some incompatable between the types. So as of mentioned above solutions check the type for both varialbes means it-f1 and alpha.

Reply for queries, shall post the updates.

Regards.

Kumar.

Read only

Former Member
0 Likes
638

Both it1-f1 and alpha should be of the same type ..