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

calltransaction

Former Member
0 Likes
522

is it possible to process 2 transactions at a time in call transaction..?if possible...how?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
499

say u ahve data in internal tables....u can write call transaction statements...for 2 transactions...

call transaction <first one>..................

then...

call transaction <second one>................

so, once the first one gets completed then the second one will get triggered.

5 REPLIES 5
Read only

Former Member
0 Likes
499

hi Sunil,

I don't think that is possible with one call transaction statement ..but you can use one 2 call transaction statements one after the other.

regards,

Santosh

Read only

Former Member
0 Likes
500

say u ahve data in internal tables....u can write call transaction statements...for 2 transactions...

call transaction <first one>..................

then...

call transaction <second one>................

so, once the first one gets completed then the second one will get triggered.

Read only

Former Member
0 Likes
499

Hi,

you can call 2 transactions at a time,

Just 2 Internal tables like BDCDATA and 2 for BDCMSGCOLL . and fill the data in 2 tables of BDECDATA. and then write the Call transaction for 2 t.codes using these 2 tables .

or else, if your requirment is like, if the record already exist then change it or else create it, then loop that internal table, and check the record which is existed or not, if existed then call Transaction 'T.code' else call Transaction 'T.code'

Regards

Sudheer

Read only

Former Member
0 Likes
499
try this. if it works........

populate the transaction in an internal table.

loop at it_tans.
  call transaction it_trans-trans.......
endloop.
Read only

Former Member
0 Likes
499

It is possible to process the data in more than one table at a time.

Just create a structure with required fields from required tablezs.

Using the dictionary fields in MPP screen painter. and the remaining is the same as the MPP. If u want I'll send an example.

Cheers.