‎2007 Jan 14 7:55 AM
Hi All,
pls let me know whether is it posible to handle multiple transactions in call transaction ?
If yes,,,,,pls pls send the sample code for the above..
Thanks in advance
bye
‎2007 Jan 14 8:45 AM
I think you cannot call multiple transaction using single CALL TRANSACTION statement.
but...you can use CALL TRANSACTION multiple times in a single program.
‎2007 Jan 14 1:43 PM
‎2007 Jan 14 3:09 PM
Hi,
No you cannot do that in single call transaction but you can write multiple call transactions one after another in your program.
Regards,
Amit
Reward all helpful replies
‎2007 Jan 14 3:09 PM
hi
welcome to SDN.
You cannot handle multiple transaction with CALL TRANSACTION.
Instead you can LOOP through it for handling multiple transaction.
Something like.
LOOP AT ITAB.
CALL TRANSACTION.....
ENDLOOP.
Cheers,
Abdul Hakim,
Mark all useful answers...