- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2025 09:57 PM
Hi All,
I want to rename the current assignment groups but first I want to change it in Dev environment so that with the help of "Local Update Set", I can record the changes and same can be pushed towards Test & Production environments with same local update set.
I already created a local Update set and also make it current but when I am rename the group name from "User Administration - Groups", I can't see any update entry under local update set and i also can't see "Add to update set" command on group page where I am changing the name.
So can anyone please help to resolve this issue?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2025 10:21 PM - edited 06-05-2025 10:22 PM
Hi @ArunG29061990 ,
Update the group name in prod or dev and take the xml of it and import into all the other instance
or
update the group name manually in all the other instance
I would say just update the group name manually if you don't have access to take the xml
why to complicate things 😊
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2025 10:13 PM
Hi @ArunG29061990 ,
run this script in the BackGround Script by replacing with your group sysid
var current = new GlideRecord("sys_user_group");
if (current.get("PUT your group sysid here")){ //replace this with your group sysid
gs.info(current.getDisplayValue());
}
var updateManager = new GlideUpdateManager2();
updateManager.saveRecord(current);
groups won't get captured in the update set automatically
only the table with update_synch attribute enabled will be captured in the update set
you have to add the groups to update set manually
run the above script it'll be captured
or
take the XML from once instance and import it into other instances
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2025 10:17 PM
Thanks for the quick reply @Chaitanya ILCR
I actually don't have access to run the script, I can make the changes through UI only so is there any other way to change the groups?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2025 10:21 PM - edited 06-05-2025 10:22 PM
Hi @ArunG29061990 ,
Update the group name in prod or dev and take the xml of it and import into all the other instance
or
update the group name manually in all the other instance
I would say just update the group name manually if you don't have access to take the xml
why to complicate things 😊
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2025 10:27 PM
Great, I like it 🙂