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

Maximum internal sessions

Former Member
0 Likes
401

I have a dialog program with 7 screens, initially I was using call screen to jump from one screen to another. Since all screens have t-code associated with them and to enable users to be authorized , I changed the call screen to call transaction. Now from the main screen which has links to other screens , the call to other screens is by Call transaction.

<b>Goin back an forth from the main menu to other other screens reaches a limit and the message displays ' Maximum internal sessions reached ' . How to correct this problem

</b>

THank you

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
376

After the CALL TRANSACTION , try to use the LEAVE PROGRAM .

LEAVE PROGRAM will end the chain created by the CALL TRANSACTION.

Regards,

Naimesh Patel

2 REPLIES 2
Read only

naimesh_patel
Active Contributor
0 Likes
377

After the CALL TRANSACTION , try to use the LEAVE PROGRAM .

LEAVE PROGRAM will end the chain created by the CALL TRANSACTION.

Regards,

Naimesh Patel

Read only

0 Likes
376

Also , leave to transaction is a better option than call transaction