‎2007 Nov 12 8:41 AM
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?
‎2007 Nov 12 8:43 AM
Go to ur program in SE38 --> toolbar Go To --> Attributes -->
Check the checkbox Unicode Checks active.
it will work...
‎2007 Nov 12 8:43 AM
Go to ur program in SE38 --> toolbar Go To --> Attributes -->
Check the checkbox Unicode Checks active.
it will work...
‎2007 Nov 12 8:55 AM
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 . . . . . . . . . .
‎2007 Nov 12 9:08 AM
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
‎2007 Nov 12 8:50 AM
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...
‎2007 Nov 12 9:10 AM
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.
‎2007 Nov 12 9:33 AM
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