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 insert the record to database table with out using BDC

Former Member
0 Kudos

HI,

i have scenario like,i have moved the all segment data to one internal table so now i need to update that data to customized data base table please any one suggest me.

Thanks,

Harinath

2 REPLIES 2

Former Member
0 Kudos

you can also use Badi instead of BDC.

former_member588853
Active Contributor
0 Kudos

Hi,

keep your internal table structure same a DBtable structure.

<b>insert into ztable values it_yourtable.</b>

egs:

INSERT INTO dbtab [CLIENT SPECIFIED] VALUES wa.

INSERT INTO (dbtabname) [CLIENT SPECIFIED] VALUES wa.

- INSERT dbtab [CLIENT SPECIFIED].

INSERT *dbtab [CLIENT SPECIFIED].

INSERT (dbtabname) [CLIENT SPECIFIED] ... .

- INSERT dbtab [CLIENT SPECIFIED] FROM TABLE itab.

INSERT (dbtabname) [CLIENT SPECIFIED] FROM TABLE itab.

rewards if useful,

regards,

nazeer