cancel
Showing results for 
Search instead for 
Did you mean: 

Time out parameters for ABAP and JAVA instance

former_member198270
Active Contributor
0 Kudos

Hello All,

We are looking for Time out parameters for our ABAP and JAVA instances.

As users are complaining that they are getting time out error

while they are trying to access Cprojects from Portal.

I was able to check/collect the ABAP instance parameters from SMICM Tcode.

Can anybody tell me which parameters we need to look for JAVA instance.

Thanks in advance.

Regards,

Amber S

Accepted Solutions (0)

Answers (3)

Answers (3)

michael_mulvey
Employee
Employee
0 Kudos

Hi,

The parameters below are used specifically for ICM timeouts.

icm/conn_timeout

icm/keep_alive_timeout

icm/server_port_< n >

You should also take a look at Note 824554 which is the composite note for ICM and webdispatcher timeouts.

Hope this helps

Michael

former_member198270
Active Contributor
0 Kudos

Thanks for your reply.

Do we have any other parameters also apart from this ?

Regards,

Amber S

Former Member
0 Kudos

I suggest you check these:

- SAP Abap:

icm/server_port_X = PROT=HTTP,PORT=80,TIMEOUT=900

rdisp/plugin_auto_logout

- J2EE / Portal:

Visual Administrator -> Server -> Services-> Web Container -> Runtime -> sap.com/irj -> irj -> View -> Main -> Session Timeout: (in minutes)

Read the documentation on them, also use the search function in SDN.

Regards

Michael

Former Member
0 Kudos

jstart/shutdownTimeout

(jstartup/shutdown_timeout)

Specifies the shutdown timeout, i.e. the grace period for the AS Java instance to shut down before the Java process terminates itself. Unt is in Seconds. Default is 120

j2ee/ms/connectTimeout

(jstartup/wait_for_scs)

Specifies the timeout for the first connection to the message server. The AS Java instance fails to start if this timeout expires.Unt is in Seconds.Default is 60

j2ee/ms/reconnectTimeout

(jstartup/wait_for_reconnect)

Specifies the timeout for the reconnecting to the message server.The AS Java instance shuts down when this timeout expires.Unt is inSeconds.Default is 3600 (one hour)

Thanks