- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2022 10:56 AM
Hi ,
I'm new to SNOW need help on this task
i have a button on incident form ,once user fill in information and selects assignment group and click on this buttong 'assign to me' then the 'assigned to' should be auto populated with the user of that assignment group selected.
i tried BR before update and SI & CS but not working.
Solved! Go to Solution.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2022 02:41 PM
Hi Vijaya,
You can achieve it by using UI Action:
Create UI Action
Name: Assign to Me
Condition: gs.getUser().isMemberOf(current.assignment_group)
Script as follows:
current.assigned_to = gs.getUserID();
current.update();
Hope it helps.
Thanks,
Raj

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2022 11:02 AM
Could you please share your code?
Regards,
Chris Perry

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2022 02:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2022 03:57 PM
Thank you it worked.