
01-04-2012 06:16 AM
(using SLX 7.5.0.1484, SQL.)
In our SalesLogix system, we have a ton of groups that were created for the sales force, by a user who is no longer here. (I had switched him to "Retired," but then realized that caused problems with the Opp Groups he owned, and switched the user back to a Concurrent license.) I need to change ownership of the Groups he created. I can't see anywhere to do that in any GUI (is there?), so in what SQL table does this info reside? I've done an initial search and can't find the data. Thanks for any pointers here.
Solved! Go to Solution.
01-04-2012 06:38 AM
This information is stored within the plugin table. You will need to execute the following SQL:
Update Plugin Set Userid = 'enter userid here'
Where Userid = 'enter userid here' and
Type = '8' and
Family = 'Opportunity'
01-04-2012 07:49 AM
01-04-2012 10:14 AM
01-04-2012 11:45 AM
01-04-2012 12:08 PM