how to make a catalog item visible to some assignment groups?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2024 02:21 AM
how to make a catalog item visible to some assignment groups?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2024 02:28 AM - edited ‎02-12-2024 02:30 AM
Hi @sonali bhagat, You can create a 'User Criteria' and add it to the 'Available for' related list on catalog item.
If you want to check the group membership, then you can create a system property to add the groups list and then check the advanced box to add your script.
answer = false;
if(gs.getUser().isMemberOf('group_property')){
answer = true;
}
Regards,
Sunil