I want to see only one active user record option when generating reports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 12:04 PM
Hi Community,
I don't want to see two user records one is active user option, another one is inactive user option with similar name
I want to see only one active user record option when generating reports in order to avoid confusion for selection, please check the screenshot and advise?
Thanks,
Srinivasu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 12:44 PM
You could create a before query business rule on the table to filter inactive users, but that would break reference to that user (same as deleting the user). I don't recommend that approach.
A better option may be to create a display calculated field on the user table and have it return current.name + '(' + (current.active) ? 'Active' : 'Inactive' + ')';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 01:41 PM