12-06-2013 03:16 AM
Hi
I just wanted to confirm... is the layout of the Lookup results group in the webclient in version 8.0 defined by the default group for that mainview?
Thanks
Robert
Solved! Go to Solution.
12-06-2013 05:46 AM
Nope.. in Tools->Group (Web Client) you have a specific "pick" that says:
Default Lookup Group
For the MainView you picked above it.
12-06-2013 06:23 AM
Thanks!
10-23-2014 11:40 AM
Is it possible to set all users lookup group to a common group?
Is it possible to do as a mas update without having to log in as each user to update?
11-18-2014 11:43 AM
There are two tables - USEROPTIONS and USEROPTIONSDEF which contain user options. USEROPTIONSDEF contains the default values for various options. USEROPTIONS contain the user-specific values for these options. Options are sorted by NAME and CATEGORY. The option value is in OPTIONVALUE for USEROPTIONS and DEFVALUE for USEROPTIONDEF.
For example, to clear all users of the Account Lookup Group, you could just DELETE from USEROPTIONS where NAME = 'ACCOUNT' and CATEGORY = 'LOOKUPLAYOUTGROUP'. This would set all users' value back to the default which can be seen as SELECT * from USEROPTIONDEF where NAME = 'ACCOUNT' and CATEGORY = 'LOOKUPLAYOUTGROUP'.