- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2020 01:23 AM
create a new system property to store 'architects" group sys id and default incident assignment groups to 'architect' using properties
Solved! Go to Solution.
- Labels:
-
Advanced Work Assignment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2020 09:00 AM
Steps below
1) You would require to create system property to hold the group sys id
2) Then use before insert business rule on incident table to set this group as assignment_group
(function executeRule(current, previous /*null when async*/) {
// Add your code here
current.assignment_group = gs.getProperty('architect_group_sysId');
})(current, previous);
As an alternative you can use assignment rule as well to set the default assignment group on incident
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2020 01:52 AM
Not sure what the question is about. If it's just about creating system properties, enter "sys_properties.list" in Application Navigator.
This will list all existing System Properties. Select the "New" button and create the required properties with the required values.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2020 02:07 AM
Hi there,
Can you share what you've tried so far? Can you share where you are stuck? Can you share where exactly you need help with?
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2020 09:00 AM
Steps below
1) You would require to create system property to hold the group sys id
2) Then use before insert business rule on incident table to set this group as assignment_group
(function executeRule(current, previous /*null when async*/) {
// Add your code here
current.assignment_group = gs.getProperty('architect_group_sysId');
})(current, previous);
As an alternative you can use assignment rule as well to set the default assignment group on incident
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader