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

Multiple call transaction in a program

Former Member
0 Likes
581

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

4 REPLIES 4
Read only

Former Member
0 Likes
536

sorry wrong answer for me

Message was edited by: STEPHAN KAMINSKI

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
536

Are you LEAVING TO TRANSACTION? Post your code. The calling program should pick up right after the CALL TRANSACTION statement. What transaction are you calling?

Regards,

Rich Heilman

Read only

Former Member
0 Likes
536

try executing in mode A and check the sy-subrc after call transaction.

regards

vijay

Read only

Former Member
0 Likes
536

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.