‎2007 Dec 10 9:11 PM
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
‎2007 Dec 10 9:39 PM
After the CALL TRANSACTION , try to use the LEAVE PROGRAM .
LEAVE PROGRAM will end the chain created by the CALL TRANSACTION.
Regards,
Naimesh Patel
‎2007 Dec 10 9:39 PM
After the CALL TRANSACTION , try to use the LEAVE PROGRAM .
LEAVE PROGRAM will end the chain created by the CALL TRANSACTION.
Regards,
Naimesh Patel
‎2007 Dec 10 10:20 PM
Also , leave to transaction is a better option than call transaction