Installing Service Management Core updated all group types to 'itil'.Description<!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Symptoms Installing Service Management Core updated all group types to 'itil'. All groups that did not have a group type assigned, were given the ITIL group. Release London Patch 4 Hot Fix 2 Steps To Reproduce Before installing Plugin "Facilities Service Management" checked existing Group Types in "sys_user_group" Table. Currently following are the number of group of different types available in OOB Group name: ITIL - 2 Catalog - 6 Groups with blank Type -19 Total: 27 3. Next: Install "Service Management Core" Plugin. Result: After plugin installation completed, In sys_user_group Table found groups that did not have a group type assigned, were given the ITIL group type. Install Start time: 2019-03-07 07:24:16 Install finished time: 2019-03-07 07:28:00 sys_user_group Table: Group Name: ITIL - 21 Catalog - 6 So Plugin installation updated groups with type 'itil' for Groups which has empty type. Checked sys_upgrade_history_log list and found following triggered at same time when "Service Management Core" plugin installed. File name: fix_itil_group_type_for_sm_apps Plugin: com.snc.service_management.core Created time: 2019-03-07 07:24:23 Finished time: 2019-03-07 07:28:00 Cause The fix job queries for all groups that have an empty group type field, and adds the "itil" group type to them. In your reproduction, before installing SM, you had 2 groups with the itil group type and 19 with no group type. After installing SM Core, you had 21 with the itil group type (in other words, the groups that had no group type were updated to have the itil group type). Once a group type was assigned, the groups could not be used for ITSM tasks like incidents, problems, changes. Unfortunately, there is no way to prevent the fix job from running. To reverse the affects on an already upgraded instance, I'd recommend going to the list of groups, and updating the filter to only show those that have a group type of itil only. Then looking at the update times of the groups, you may be able to determine which groups were modified during upgrade and reset the group type to be empty. Resolution To handle the issue in future upgrades, the following can be done: As an admin, before upgrading the instance, run the following in a background script var gr = new GlideRecord('sys_user_group'); gr.addQuery('type', 'ISEMPTY', ''); gr.query(); var emptyGroupTypeIds = []; while(gr.next()) emptyGroupTypeIds.push(gr.sys_id + ''); gs.info('Copy these and save them somewhere: '); gs.info(emptyGroupTypeIds); 3. The above script will find all user groups where the type is empty and print out the sys ids of those groups. Copy the list of sys ids and save them somewhere. Then, upgrade the instance 4. After upgrading the instance, run the following in a background script (replacing "PASTE_SYS_IDS_HERE" with the sys ids you copied and saved) var gr = new GlideRecord('sys_user_group'); gr.addQuery('sys_id', 'IN', 'PASTE_SYS_IDS_HERE'); gr.type = ''; gr.updateMultiple(); The above script will reset the type of the affected groups to empty, reversing what the fix job does.