Application Development 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: 

getting error message : Maximum no of sessions reached

former_member203501
Active Contributor
0 Kudos

Hi all,

I am getting an error Maximum no of sessions reached while working in Sub screen. I have a requirement where i need to call the screen again and again. i am calling call transaction sy-tcode, I tried working with Leave to transaction..it is not working.

Can anybody help me.

Regards,

Venkat.

12 REPLIES 12

Former Member
0 Kudos

Can your basis team increase the maximum?

It's not a good idea to keep calling sessions as that will tie up resources for your other users and make the system slow.

0 Kudos

Hi ,

I have a sub screen....where i will enter a single value . after putting enter i have to add this value to the screen step loop......i am using for this purpose...can any body tell me what is the best way for doing this

Former Member
0 Kudos

Hi Venkat,

try this way..

Instead of CALL TRANSACTION tcode use LEAVE TO TRANSACTION tcode.

Prabhudas

0 Kudos

hi prabhu,

Thanks .....I have already specified that .....i did it already. but it is not working

0 Kudos

Are u using CALL SCREEN statament?

Max

0 Kudos

Hi Max,

Thanks. No I am using call transaction sy-tcode.

0 Kudos

But u're calling the same tcode? U don't go back to calling point?

Max

0 Kudos

Hi Max,

I have to capture some field value on the screen and i have to display it on the same screen in a step loop. Thats why i am calling the same tcode. if i am using the LEAVE TRANSACTION SY-TCODE , it is not capturing the value and it is displaying the empty screen without values. Is there any good way for doing this.

0 Kudos

Hi

My god... can u repeat what u need to do please???

U have a screen having some values, u need to get them and display them in the same screen....I can't understand why u need to call the screen again

Max

0 Kudos

Hi Max,

I have one field and one step loop in the screen, when ever i enter the value on the field and put enter it has to update in the step loop . Actually i am working for the tcode LM03 , where user wants to process more transfers orders at a time. For this i have added a step loop for the tcode LM03. If i add one Transfer Order then it has to added to the step loop, one all the orders are scanned he will process by some other button. Hope this will makes u clear.

0 Kudos

Hi

But if u press enter u can "trigger" the current screen again I don't believe u need to call it again by CALL TRANSACTION, i.e u can add your Transfer Order to steploop and clear the input field in order to prepare it for the next input.

Max

former_member203501
Active Contributor
0 Kudos

closed