You are on page 1of 2

Override time-out limit in the SAP GUI | SAP Flow Page 1 of 2

• Browse Pages
• Browse Archives
• Search
• RSS

Override time-out limit in the SAP GUI !


Posted by Pavel on Apr 15, 2009 • (0)

sapgui-conn-aborted-fullscreen1

I guess most of SAP developers went through this case. You are remotely connected to SAP
system through SAP Logon working on code, when your colleague comes/phone rings/bladder
burns. So you interrupt your work for a couple of minutes and … SAP Logon automatically quits
the session after some time with error-message saying that it has been closed due to time-out.

Solution: Keep on-line with ABAP programm running in background.

Step by step:

1. Go to transaction SE38.
2. Type “ZKEEP” into the input field.
3. Click on “Create”.
4. Paste the following code.
5. Activate!

*&---------------------------------------------------------------------*
*& Report ZKEEP *
*&---------------------------------------------------------------------*
REPORT ZKEEP .
start-of-selection.
do.
wait up to 15 seconds.
CALL FUNCTION 'PROGRESS_INDICATOR'
EXPORTING
I_TEXT = 'Keeping...'.
enddo.

Next time you log in to SAP, just open two sessions and in one go to SE38 and run this
programm. You can than work in the other session (first one will be taken by the ZKEEP report).

That’s it for today.

http://www.sapflow.cz/archives/85 3/21/2011
Override time-out limit in the SAP GUI | SAP Flow Page 2 of 2

Tagged as SAP inactivity timeout, SAP Logon, SAP Tips & Tricks + Categorized as SAP,
ABAP tips, SAP

Leave a Reply

http://www.sapflow.cz/archives/85 3/21/2011

You might also like