"Add to Update Set" link disappeared

julianada-s
Tera Expert

Hi friends! 🙂

Would you smart guys know why the "Add to update set" link just vanished (after upgrade). I read that could be the disabled Ui Action, but there's no such Ui Action called "Add to Update Set" that I could find. Does anyone know how to solve this?

Thanks!!!

2 REPLIES 2

Naveen20
ServiceNow Employee

"Add to Update Set" is not an out-of-the-box feature 

Fix options:

  1. Reinstall the "Add to Update Set Utility" from ServiceNow Share.
  2. Check if the OOB alternative works for you — activate the "Include in Update Set" plugin, configurable under System Update Sets → Include in Update Set Properties (properties: include_in_update_set.update_record_before_capture and include_in_update_set.hide_on_tables).
  3. Quick script workaround if you need it immediately:
var rec = new GlideRecord('your_table');
rec.get('your_sys_id');
new GlideUpdateManager2().saveRecord(rec);

 

Dr Atul G- LNG
Tera Patron

https://www.servicenow.com/community/developer-forum/add-to-update-set-option-is-not-showing/m-p/280...

*************************************************************************************************************
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/dratulgrover [ Connect for 1-1 Session]

****************************************************************************************************************