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: 

need to update the user table

Former Member
0 Kudos

i need to update the user master table from the data available in an internal

table please suggest the procedure

2 REPLIES 2

Former Member
0 Kudos

Chk this thread.

Former Member
0 Kudos

You can go with the following method:

1. Consolidate the internal table.

2. After consolidating the internal table, use MODIFY command.

e.g.

******************************************

Loop at itab1 into wa1.

*populate itab .

Endloop.

MODIFY dbtab FROM TABLE itab.

COMMIT WORK.

******************************************

(dbtab: Database table to be updated.

itab1: intermediate internal table.

itab: Internal table, consolidated with desired data.)