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

BDC Query.

Former Member
0 Likes
380

Hi experts,

I am be able to transfer the data from legasy system to SAP R/3 System. But I am doing it now for inserting the data in the single table only.

Now, i want to insert data from a single flat file ( which contains the data of the differnt table's fields ) in to different tables in the DDIC. I need the solution for both ways...

1, Transaction call method.

2, Session Method.

Thanks in advance.

  1. ilesh Nandaniya #

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
355

Hello,

I must say that you have to update transactions which update the database tables, do not update tables directly.

In fact thats what any method of BDC does, they update the transactions which in turn update 1 or more tables.

Call transaction , the name itself suggests that a transaction is being called.

In both methods you specify the transaction screen and field names.

So the answer is through BDC's you update transaction which indirectly update DDIC tables.

Regards

2 REPLIES 2
Read only

Former Member
0 Likes
356

Hello,

I must say that you have to update transactions which update the database tables, do not update tables directly.

In fact thats what any method of BDC does, they update the transactions which in turn update 1 or more tables.

Call transaction , the name itself suggests that a transaction is being called.

In both methods you specify the transaction screen and field names.

So the answer is through BDC's you update transaction which indirectly update DDIC tables.

Regards

Read only

Former Member
0 Likes
355

Hi IIlesh,

I am agreeing with him. U can update the multple tables thorugh BDC only. If u want update a single table that is done through UPDATE statement or SM30. In BDC either call transaction or session method tables getting updated. Hope this helps you and reward the points.

Regards,

Kumar.