cancel
Showing results for 
Search instead for 
Did you mean: 

Auto timeout

Former Member
0 Kudos

HI all,

we have portal landing page(HTML5) in sap portal which is enabled as the URL iview.

If the home page is untouched for 10 mins a popup message should popup triggering the action for LOGOFF.

Pls suggest how to enable the same.

Thanks

Mano

Accepted Solutions (0)

Answers (3)

Answers (3)

siddharth_jain
Active Contributor
0 Kudos
former_member183915
Active Contributor
0 Kudos
davefitzgibbon
Advisor
Advisor
0 Kudos

Hi,

It depends what exactly you are looking for.

Logoff from the portal is based on the ticket session, configured using

the login.ticket_lifetime. It is not related to the http session, the security session or the J2EE connectors. The ticket always has a fixed lifetime and does not expire due to user inactivity and a user session will not time out due to inactivity.

There is a Web.xml file which has the settings/parameteers for session
time-outs

Open the file from the following location

/usr/sap/<SID>/<inst>/j2ee/cluster/server0/apps/sap.
com/irj/servlet_jsp/irj/root/WEB-INF/web.xml

and change the line

<session-timeout>45</session-timeout> to whatever time you wish

if there is no session-timeout tag presented, please add the following

lines just before </web-app> tag:

<session-config>

<session-timeout>45</session-timeout>

</session-config>

You might be able to implement a popup within there too.

Regards,

David