Login / Register  search  syndication  about

          Kris Halsrud's Blog

Kris Halsrud on development and Integration with CRM and Development

Error in SalesLogix web client 'Enum code does not map to a value on enum UserType'

 I recently found I was running into an error in the SalesLogix web client when trying to launch activities or history that stated:

'Enum code does not map to a value on enum UserType'

The stack trace on the error was quite lengthy but by reading through it I was able to determine that one user in the system did not have a proper TYPE defined.  The Type of a user is what kind of license they are.  In the case of the system I was working on there was one user that did not have a type.

Running this SQL query showed my the list of Types in the system for the users

select  type, COUNT(type) from usersecurity group by type

The proper types should be one of the following:

  • N (Network)
  • M (Remote)
  • T (Web)
  • V (Web Viewer)
  • C (Concurrent)
  • R (Retired)
  • P (Template)
  • A (Add On)
  • W (Admin)

To fix my problems I simply set the offending record to be a retired user using this SQL statement:

 update USERSECURITY set TYPE='R' where TYPE=''

 

 

What's This?
  
Bookmark and Share

About Kris Halsrud

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


Related Content
   Upgrading SalesLogix vs Migration to SalesLogix version 8.0
We want to get off the desktop versions and into the Cloud. I have been working with Sage and our BP alr
Posted on Jun 19, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Unicode data from SalesLogix not exporting from the web Crystal Report viewer to PDF correctly.
The later version of SalesLogix allow the storage of Unicode data in the database.  This allows for
Posted on Jun 07, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Problems managing team membership in the SalesLogix web client
In the Web Client's Administration area under teams (In both v7.5x and 8.0x versions):1) When addin
Posted on Jun 03, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   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
 
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