Connect to the Maximo database (IP)
Execute the following query :
select * from MAXPROPVALUE where propname='mxe.enableConcurrentCheck'
If the value of the PROPVALUE field is 1, then a user can only have a single session on maximo. If it is 0, then the user can have multiple concurrent sessions in Maximo.
To update this value if required, execute the following SQL statement :
# For Multiple Session
UPDATE MAXPROPVALUE SET PROPVALUE='0' WHERE PROPNAME='mxe.enableConcurrentCheck'
#For Single Session
UPDATE MAXPROPVALUE SET PROPVALUE='1' WHERE PROPNAME='mxe.enableConcurrentCheck'
HI Saroj..
ReplyDeleteI've tried a new method that you provide, but the result is, all of user cannot login again.
Can You help me?
Thank YOu
If the propvalue is updated to 1 then multiple session for a user is not allowed.
ReplyDeleteIf the propvalue is updated to 1 then multiple session for a user is not allowed.
ReplyDelete