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: 

Multiple call for Call Transaction in a single program

Former Member
0 Kudos

I have a BDC Program. Iam calling a Transaction code ME21 using

Call Transaction ME21 using BDCDATA mode 'a' Update 's'.

Can i call one more call transaction statement in the same Program.

Ex : Call Transaction ME31 using BDCDATA mode 'a' Update 's'.

So finally it looks like this :

Call Transaction ME21 using BDCDATA mode 'a' Update 's'.

Call Transaction ME31 using BDCDATA mode 'a' Update 's'.

If so what happens.

Please do send me a quick reply.

2 REPLIES 2

Former Member
0 Kudos

Hi,

yes you can. But the mode should be 'S' for the transactions that are dependent.

Thanks,

Anitha

0 Kudos

Hi Anitha,

Tq for ur Reply.

What will happen if I call like that. will that transaction also triggers after calling the first one. will the data transfers take place for ME31 also.