Add a new value to list collector
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Hi,
How to add new group in the list using script, when the confidential checked auto populate a assignment group , Not using existing OOB group mapping, custom using script
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
What do you mean by not using existing oob group mapping? Are there group not in the sys_user_group table?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Hi @Arun_Manoj ,
Please try to create BR on your specific table let's incident or problem, type - Before, updated is check true and add below script
if (current.confidential == true) {
var grpSysId = 'YOUR_GROUP_SYS_ID'; // replace with your desired group sys_id
current.allowed_group = grpSysId; // change backend value as your backend value
}
Please mark my answer correct and helpful if this works for you
Thanks and Regards,
Sarthak