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

regarding multiple transaction in BDC

Former Member
0 Likes
413

is it possible to run multiple transaction in a session..like i want run 2

transaction xd02,mm02 in one seeion???

or is it possible for a single call transaction program??

plese give me the right answer..

bye

is it possible to run multiple transaction in a session..like i want run 2

transaction xd02,mm02 in one seeion???

or is it possible for a single call transaction program??

plese give me the right answer..

bye

1 REPLY 1
Read only

Former Member
0 Likes
274

You will have to prepare the BDC information for each transaction separately and call the transactions separately.

However if you are creating a batch input session, you can have different transactions inserted into it. So you will do BDC_OPEN_GROUP for creating the session, and then do BDC_INSERT for inserting transaction XD02 and another BDC_INSERT for MM02. Make sure that you refresh your BDCDATA internal table after each call.