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: 

how to update database table with field symbls in the methd with import par

Former Member
0 Kudos

hi,

In A METHOD , im importing one internal table ITAB which is if of type any and another parameter OBJECT TYPE. At run time only i will get the type of database table( depends on the object tyep ) , the internal table is refers to ..

In the method , i have to update the corresponding database tables depending on the object type.

please suggest me the code to update the database table with the fields symbols.

Raghu

1 ACCEPTED SOLUTION

Clemenss
Active Contributor
0 Kudos

Hi ragu,

if you pass the name of the dictionary table in parameter OBJECT_TYPE, then it woud be

UPDATE/INSERT/MODIFY (OBJECT_TYPE) from table itab.

Or what is it you want? (F1 helps)

Regards,

Clemens

1 REPLY 1

Clemenss
Active Contributor
0 Kudos

Hi ragu,

if you pass the name of the dictionary table in parameter OBJECT_TYPE, then it woud be

UPDATE/INSERT/MODIFY (OBJECT_TYPE) from table itab.

Or what is it you want? (F1 helps)

Regards,

Clemens