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: 

Unicode-compatible

Former Member
0 Kudos

Hi Gurus,

I am trying to insert the data from an internal table to a custom table. And I receive an error message :

The program "ZMM_KPIRPTDETAILS" is not Unicode-compatible, according to

its program attributes.

Any idea how to solve it?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Go to ur program in SE38 --> toolbar Go To --> Attributes -->

Check the checkbox Unicode Checks active.

it will work...

6 REPLIES 6

Former Member
0 Kudos

Go to ur program in SE38 --> toolbar Go To --> Attributes -->

Check the checkbox Unicode Checks active.

it will work...

0 Kudos

Hi Gurus,

I'd done that but now the error message refer to

The type of the database table and work area (or internal table)

"T_EKPO" are not Unicode-convertible . . . . . . . . . .

0 Kudos

Hi,

It seems the structure which u have defined for inserting data to the ztable is different...

try like this

data : itab type standard table of ztable.

insert ztable from table itab...

So please declare the structure as same structure of the ztable and then try..

Reward if helpful.

Regards,

Nagaraj

Former Member
0 Kudos

Goto trx:SE38...

Give your program name...

Select the radio button 'Attributes'

Click Change...

In the attributes dialog....select the check box 'Unicode Checks Active'.

Save and Activate again...

Former Member
0 Kudos

Hi,

For Unlocking Editor , Please check the below link as mentioned.

http://www.sap-img.com/abap/how-to-delete-an-editor-lock.htm

Hope this info will help you. Reward Points if Useful.

Former Member
0 Kudos

hi Chin,

pass the value for MANDT field before inserting the data into Custom table..

ex:

<wa>-mandt = sy-mandt.

<b><i>Reward points if useful</i></b>

Chandra