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

Unicode covertable problem

Former Member
0 Likes
484

Hi

I Need insert record to ztable,i have code as follows..

data scarr_wa type ZINTERFACE_AR.

scarr_wa-KUNNR = kunnr.

insert into zcall_data values scarr_wa.

when in it execution following error will appear

Scarr_wa is not unicaode coverable

Any one can help me..

Thanks

kanishka

3 REPLIES 3
Read only

Former Member
0 Likes
470

Hi,

Check whether the data type of Scarr_wa-kunnr is same as

KNA1-kunnr.

If it is same try this


loop at <internal Table> into scarr_wa.
INSERT INTO <database Table> FROM scarr_WA.
endloop.

regards

Sandipan.

Read only

Former Member
0 Likes
470

Hi,

Try declaring like this.

data :scarr_wa type KNA1-kunnr.

else declare it as internal table and use insert statement within a loop.

Reward if helpful.

Regards,

Ramya

Read only

Former Member
0 Likes
470

Hi,

Please recode like this

data scarr_wa type zcall_data values.

scarr_wa-KUNNR = kunnr.

insert into zcall_data values scarr_wa.

thanks Arjun