‎2011 Oct 19 4:58 PM
Dear Gurus
I have two questions .
1. Can we update two transaction code using CALL TRANSACTION method in BDC?
through searching in the forum i found that it not possible to update multiple transaction using CALL TRANSACTION method to update two t code simultaneously i have to use BDC session method , because CALL TRANSACTION method uses Asynchronous method for update data.
2.Suppose I am updating multiple transaction code using session method at first i create sales order using va01 when sales order is created how i collect this sales order no to use in the second t code in session method.
Thanks in advance.
Chitta Ranjan
‎2011 Oct 19 6:50 PM
Hi Mahato,
Multiple transactions is possible with bdc call transaction method.
1) If you go with session method you can create session using two transactions
2) In case of call transaction do separate recording for each transaction and transfer in into a single prg.
Regards,
Madhu.
‎2011 Oct 19 5:01 PM
through searching in the forum i found that it not possible to update multiple transaction using CALL TRANSACTION method to update two t code simultaneously i have to use BDC session method , because CALL TRANSACTION method uses Asynchronous method for update data.
Don't know where you got this, but it's definitely possible to update using multiple transactions sequentially.
Rob
‎2011 Oct 19 6:50 PM
Hi Mahato,
Multiple transactions is possible with bdc call transaction method.
1) If you go with session method you can create session using two transactions
2) In case of call transaction do separate recording for each transaction and transfer in into a single prg.
Regards,
Madhu.
‎2011 Oct 20 6:01 AM
Thanks to Rob and Madhu.
If possible please answer my second question with example.