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

Move corresponding data from standard to hashed table

Former Member
0 Likes
1,565

Hello Folks,

Iam facing the problem in moving the data from standard table to hashed table. Getting type compatible error. Please suggest what can be done on this.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,011

if it is type compatible error, then first you need to check for which fields this type compatible error is occuring and then you need to adjust or use temporary variables to move the data from one table to other table.

Hello Folks,

Iam facing the problem in moving the data from standard table to hashed table. Getting type compatible error. Please suggest what can be done on this.

5 REPLIES 5
Read only

Former Member
0 Likes
1,012

if it is type compatible error, then first you need to check for which fields this type compatible error is occuring and then you need to adjust or use temporary variables to move the data from one table to other table.

Read only

0 Likes
1,011

and also i want to use the statement append lines of (standard table) to (hashed table)

Read only

0 Likes
1,011

You cannot append lines to hashed tables, since this would invalidate the sort order.

Thomas

Read only

0 Likes
1,011

Hi

Make sure the 2 structures are same and HASHED table with unique key doesnt accept duplicate values

or you can loop the standard table and can use MOVE-CORRESPONDING then append it to the HASHDE TABLE

so sort standard table and delete adjacent duplicates from it otherwise you will get a dump.

Regards

Ramchander Rao.K

Read only

0 Likes
1,011

iam facing type not compatible error while using move corresponding