‎2005 Dec 22 3:12 PM
Hi ,
How do we do multiple call transaction in a program.When we submit the call transaction for the first transaction, the program execution doesn't executes any of the code return after that statement.Any inputs ?
Ankur Bhandari
‎2005 Dec 22 3:16 PM
sorry wrong answer for me
Message was edited by: STEPHAN KAMINSKI
‎2005 Dec 22 3:16 PM
‎2005 Dec 22 3:16 PM
try executing in mode A and check the sy-subrc after call transaction.
regards
vijay
‎2005 Dec 22 3:20 PM
Hi Ankur,
The program resumes its execution after calling a transaction using the statement: Call Transaction <tcode>
However if you use the statement: Leave to Transaction <tcode> it won't return to the calling program.
So, you should be able to have multiple call transactions in a program using the statement: Call Transaction <tcode>.
Regards.