- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2024 07:04 AM
I have one requirement
if ‘Is this a privacy incident?’ variable = 'Yes', then the Privacy Team group should be automatically added to the 'Access Allowed For Groups' field in the 'User Access' tab.
Can anyone suggest How to achieve this requirement?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2024 08:15 AM
@Aparna Gurav : In your record producer script, try this:
if (producer.your_check_box_field_name == true) {
current.your_field_name_of_access_allowed_for_groups = '<your_sys_id_of_group>';
}
Please mark this as correct answer and helpful if it resolved, or mark this helpful if this help you to reach towards solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2024 07:11 AM
Greetings!!
This can be do able via Flow.
Here is another use case but will help you to do your work#
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2024 08:15 AM
@Aparna Gurav : In your record producer script, try this:
if (producer.your_check_box_field_name == true) {
current.your_field_name_of_access_allowed_for_groups = '<your_sys_id_of_group>';
}
Please mark this as correct answer and helpful if it resolved, or mark this helpful if this help you to reach towards solution.