2013 Mar 04 12:20 PM
Hi.
I am using below statement in one of the methods of the local class.
IF ITAB IS NOT INITIAL.
INSERT DBTAB FROM TABLE ITAB.
ENDIF.
But i am getting error .
the type of the database table and work area ( or internal table)
ME->ITAB are not unicode convertible.
What need to be done to solve this problem.
2013 Mar 04 12:48 PM
Does your internal table structure match the database table structure ?
For more information, read Open SQL - Work Areas in Statements.
Regards,
Raymond
2013 Mar 04 12:34 PM
2013 Mar 04 12:40 PM
2013 Mar 04 12:47 PM
2013 Mar 04 12:48 PM
Does your internal table structure match the database table structure ?
For more information, read Open SQL - Work Areas in Statements.
Regards,
Raymond
2013 Mar 04 12:53 PM
2013 Mar 04 1:00 PM
Your workarea contains fields and not data elements... even if you give the fields the same name than the data-elements... (do not confuse maps with territories)
Check your fields are in same sequence than in the database, and check the alignment.
Regards,
Raymond
2013 Mar 04 1:07 PM