‎2007 Jan 22 2:03 PM
is it possible to process 2 transactions at a time in call transaction..?if possible...how?
‎2007 Jan 22 2:07 PM
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.
‎2007 Jan 22 2:05 PM
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
‎2007 Jan 22 2:07 PM
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.
‎2007 Jan 22 2:07 PM
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
‎2007 Jan 22 2:07 PM
try this. if it works........
populate the transaction in an internal table.
loop at it_tans.
call transaction it_trans-trans.......
endloop.
‎2007 Jan 22 2:08 PM
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.