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 mode session

Former Member
0 Likes
1,007

Hi to all.

i'm having a problem with call transation 'CV03N' and skip first screen. i have a zz program that show a ALV layout and i include 3 buttons to give access to other transation by call transation. but when i open more than 6 times, i receive a error message telling me that i have reached the maximum mode session. I couldn't understand why this is happenning..

Is there any command after the call transation to close the present session??

any help is helpfull. Thanks

7 REPLIES 7
Read only

Former Member
0 Likes
909

At max in the same client with one logon id you can open 6 sessions only.

Read only

Former Member
0 Likes
909

hi susana,

you cannot open more than 6 sessions for a client.

this is the limitation of SAP for each client.

Cheers,

Chandra

Read only

Former Member
0 Likes
909

to delete mode : function : TH_DELETE_MODE

rgds,

pedro

Read only

Former Member
0 Likes
909

in sap u cannot open more than 6 sessions.if u want to open more then u have to re-login.

Read only

Former Member
0 Likes
909

Hi,

you must be doing some call transaction ets on the click of that button.

now with 1 logon you can open only 6 sessions max.

the problem with your code might be that you are calling that transaction inside a loop.

try it outside the loop your code will work properly.

reward if helpful

vivekanand

Read only

Former Member
0 Likes
909

Hi Susana,

In SAP we can open a maximum of 9 External sessions.

However instead of call transaction you can use Leave to transaction.

Regards,

Ravi

Read only

Former Member
0 Likes
909

Yes, i know that the standard have limitation of session.

But in this case, when i do the debug, and have my sy-ucomm 'ZCV30N'. i put some set parameter and open CV03N with the command CALL TRANSACTION 'CV03N' and SKIP FIRST SCREEN. then he opens the transaction CV03N, when i click at BACK button to leave the transaction and back to my main program it seems that the program don't close the transaction CV03N, used before.

Thanks