How to add or remove fields in the form displayed when clicking on the "Update Selected" and "Update All" context menu options to get massive updates on lists. Issue <!-- 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; } --> Description When listing a table and massive updates want to be done to the listed records, the "Update Selected" and "Update All" context menu options are used.A form is displayed after clicking on any of these options. How can fields be added or removed into this form? Procedure When the "Update Selected" or "Update All" option is selected, the _update form of the table is displayed. For example, the URL for the cmdb_ci_server table will be: https://my_instance.service-now.com/cmdb_ci_server_update.do?sys_action=sysverb_multiple_update&sysparm_multiple=true&sysparm_nostack=yes&sysparm_query=&sysparm_view= The _updated form that is displayed, is the Default view of that table, so in order to add or remove fields, you need to edit the default view for that table. Another way to get the sys_id of the form section that is being displayed in the _update form, is using the Browser Developer Tools as the below screenshot shows: So, the section for the the cmdb_ci_server table will be: https://my_instance.service-now.com/nav_to.do?uri=sys_ui_section.do?sys_id=91069a70c0a80164007208e4f0cd6eba In summary, the solution is: Edit the default view for the specific table or get the sys_id of the form section (/sys_ui_section).Add or remove the fields there. Clear the ServiceNow cache (/cache.do). NOTES:- Use the column name when adding fields to the form. - If fields are added, ensure the column order is correct, if two or more fields have the same column order, then those fields might not be displayed, for example: - Ensure the order of the following two elements are correct, .start_split and .end_split - Clear cache after modifying the form (/cache.do) Applicable Versions All current supported versions.