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

regardig error while updating the database table

Former Member
0 Likes
735

hi experts,

i m trying to update the database table from the values containig in my internal table ,,,but the system is giving this error plz help me::::

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

"ITAB_UPDATE" are not Unicode convertible. Unicode convertible.

:::

my internal table name itab_update and the database table name yitab.i m using this statement::

modify yitab from itab_update.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
533

Hi

How have you defined your internal table? It should be

DATA: ITAB_UPDATE LIKE STANDARD TABLE OF YITAB.

Max

2 REPLIES 2
Read only

Former Member
0 Likes
534

Hi

How have you defined your internal table? It should be

DATA: ITAB_UPDATE LIKE STANDARD TABLE OF YITAB.

Max

Read only

varma_narayana
Active Contributor
0 Likes
533

Hi

1. You have to Declare the Itab with the same structure as DB table.

2. Use the statement

Modify <DBtable> from TABLE <itab>.

or

Update <DBtable> from TABLE <itab>.

Hope this will solve.

Reward .....if so.

Regards.