ICX: Limit time - This profile option defines the maximum connection time for a connection – regardless of user activity. If 'ICX:Session Timeout' is set to NULL, then the session will last only as long as 'ICX: Limit Time', regardless of user activity.
ICX: Limit connect - This profile option defines the maximum number of connection requests a user can make in a single session. Note that other EBS internal checks will generate connection requests during a user session, so it is not just user activity that can increment the count.
Parameter |
Default |
Recommendation |
ICX:Session Timeout |
None |
30 (minutes) |
ICX: Limit Time |
4 (hours) |
4 (hours) |
ICX: Limit Connect |
1000 |
2000 |
Change Idle Session timeout ICX Session Timeout session.timeout(http://becomeappsdba.blogspot.com/2006/09/change-idle-session-timeout-icx.html) |
If someone ask Apps DBA to change Session Idle Time out value How & where will you change ? What is Session Idle time ? From FND.G or 11.5.9 or with introduction of AppsLocalLogin.jsp to enter into application, profile option "ICX Session Timeout" is usedonly to determine Forms Session Idle timeout value . This might be confusing as earlier this profile option used to control forms as well as self service application(with session.timeout) session.timeout is used to control Idle session timeout for Self Service Applications ( Served by Jserv via JVM ) From where ICX : Session Timeout & session.timeout get values ? Autoconfig determines value for profile option "ICX: Session Timeout" and "session.timeout" from entry in context file ( $APPL_TOP/admin/SID_hostname.xml ) with parameter s_sesstimeout where value mentioned is in milliseconds so profile option ICX: Session Timeout value should be s_sesstimeout/ (1000 * 60) which means here its 10 Minutes. This value is also set in zone.properties in $IAS_ORACLE_HOME/Apache/Jserv where number mentioned is in milli second i.e. 600000 ( equal to 10 Minutes)session.timeout = 600000 session.timeout mentioned in zone.properties is in milli secondsICX Session Time out mentioned in profile option ICX: Session Timeout is in minutes soICX session timeout=30 & session.timeout= 1800,000 are same 30 minutes P.S. ICX Session time out was introduced in FND.D so if your FND version is below D you might not see this variable. Important Things Apps DBA should consider while setting session timeout value ? |