Hi,
Currently there is no way to filter out any duplicate values from your SmartObject's list method. The only workaround I can think of is to create a stored procedure in your SQL database, to query and display unique values. Then create a SmartObject from that stored procedure.
However, you cannot do that with AD SmartObject. Alternatively, all your users' info should also be cached in a K2 database table called [Identity].[Identity]. From there, you can
- Create a stored procedure to query that table, and display unique values
- Register a SQL Server Service instance to the K2 database
- Create a SmartObject from the stored procedure you just created
- And finally, use that SmartObject in your form
However, please avoid writing to any of the K2 database tables. It should be alright if you just try to read from the tables.
Thank you. This table does not show me if user is supervisor however this will be helpful for future needs
Thanks again