Login / Register  search  syndication  about

          Kris Halsrud's Blog

Kris Halsrud on development and Integration with CRM and Development

How to turn off the user log in timeout option for all users in the SalesLogix web client

In the SalesLogix web client each user has to specify if they want to be automatically logged off after a period of inactivity.  I was recently asked if there was a way of setting this to be off for all users.  The answer is yes.  These settings are all stored in the UserOptions table.  It is possible that the settings do not exist yet for users as they are only created the first time they make changes, but here is the SQL statements you owuld need to run to either update or create the parameters to not log off after a period of time.  (There are three records involved in the timeout area):

update USEROPTIONS set OPTIONVALUE='False' where CATEGORY='GENERAL' and NAME='USEAUTOLOGOFF' and Cast(isnull(OPTIONVALUE,'') as varchar(50))<>'False'

insert into USEROPTIONS
(OPTIONID, CREATEUSER, CREATEDATE, MODIFYUSER, MODIFYDATE, USERID, LOCKED, OPTIONVALUE, CATEGORY, NAME)
select
'FX1' + right(a.userid,9) OPTIONID, 
'ADMIN' CREATEUSER,
getutcdate() CREATEDATE,
'ADMIN' MODIFYUSER,
getutcdate() MODIFYDATE,
a.userid USERID,
'F' LOCKED,
'False' OPTIONVALUE,
'GENERAL' CATEGORY,
'USEAUTOLOGOFF' NAME
from userinfo a left join USEROPTIONS b on a.userid=b.userid and b.NAME = 'USEAUTOLOGOFF' left join
usersecurity c on a.userid=c.userid
where b.userid is null and c.type not in ('T','R')

insert into USEROPTIONS
(OPTIONID, CREATEUSER, CREATEDATE, MODIFYUSER, MODIFYDATE, USERID, LOCKED, OPTIONVALUE, CATEGORY, NAME)
select
'FX2' + right(a.userid,9) OPTIONID, 
'ADMIN' CREATEUSER,
getutcdate() CREATEDATE,
'ADMIN' MODIFYUSER,
getutcdate() MODIFYDATE,
a.userid USERID,
'F' LOCKED,
'30' OPTIONVALUE,
'GENERAL' CATEGORY,
'LOGOFFDURATION' NAME
from userinfo a left join USEROPTIONS b on a.userid=b.userid and b.NAME = 'LOGOFFDURATION' left join
usersecurity c on a.userid=c.userid
where b.userid is null and c.type not in ('T','R')

insert into USEROPTIONS
(OPTIONID, CREATEUSER, CREATEDATE, MODIFYUSER, MODIFYDATE, USERID, LOCKED, OPTIONVALUE, CATEGORY, NAME)
select
'FX3' + right(a.userid,9) OPTIONID, 
'ADMIN' CREATEUSER,
getutcdate() CREATEDATE,
'ADMIN' MODIFYUSER,
getutcdate() MODIFYDATE,
a.userid USERID,
'F' LOCKED,
'Minute(s)' OPTIONVALUE,
'GENERAL' CATEGORY,
'LOGOFFUNITS' NAME
from userinfo a left join USEROPTIONS b on a.userid=b.userid and b.NAME = 'LOGOFFUNITS' left join
usersecurity c on a.userid=c.userid
where b.userid is null and c.type not in ('T','R')

What's This?
  
Bookmark and Share

About Kris Halsrud

   Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.


Related Content
   Demystifying SalesLogix Web: Dashboards and Analytics Tools
Join us for a free webinar, Wednesday, May 15th at 2pm CDT. The SalesLogix Web dashboards and analytics
Posted on May 08, 2013 by Brianna Tinjum to The Inbox
 
   How can I make sure I am logging into the correct SalesLogix web client database?
I just recently did a updated conversion of our production database (which is 6.2x) and I'm trying to
Posted on Apr 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   The SLXOLEDB.1 provider is not registered on the local machine
Ever seen this error before when logging into the SalesLogix web client?  Ofter this is a result of
Posted on Apr 04, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Modifying SLX Mobile 2.0 to deploy customizations on a normal App Architect deployment
 In order to have your customizations, that have been added to the SalesLogix Mobile 2.0 client, be
Posted on Mar 27, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Is there software or Hardware that works with SalesLogix Web Client that can dial the phone number in order to eliminate manual dials?
Is there software or Hardware that works with SalesLogix Web Client that can dial the phone number in ord
Posted on Mar 04, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

No Comments

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register