Customizations tracked by update sets
Summarize
Summary of Customizations tracked by update sets
Update sets in ServiceNow facilitate the tracking of customizations related to application tables, fields, and records, enabling efficient management of configuration changes. These sets capture customization data under specific conditions, ensuring that essential updates are preserved while excluding task or process data, such as service catalog order requests.
Show less
Key Features
- Tracking Conditions: Customizations are tracked if the table has an updatesynch attribute, a handler for multiple tables, and if no fields are excluded by the administrator.
- Limitations: Update sets cannot transfer large data volumes; for such cases, use import sets or web services.
- Special Handlers: Certain changes like workflows, form sections, and choice lists require special handlers to ensure proper updates across multiple tables.
- Choice Lists: New and updated choice options are stored in specific tables, but avoid large choice lists to prevent lengthy update set commits.
- Dictionary Changes: Update sets protect against data loss by blocking certain dictionary changes, such as removing tables or changing column data types.
- Homepages: Homepages and content pages are not included by default; they can be added manually or converted to responsive dashboards.
- Application Changes: Each application has its own update set, ensuring changes are correctly applied based on access settings.
Key Outcomes
Utilizing update sets enables ServiceNow customers to efficiently manage and track customizations while minimizing the risk of data loss. Customers can expect streamlined application changes, better organization of customization data, and enhanced control over configuration processes in their ServiceNow instances.
Update sets can track customizations to application tables, fields, and records.
- Where the table has an update_synch dictionary attribute.
- Where there is a special handler to track changes to multiple tables.
- Where the administrator has not excluded a field from updates.
In general, update sets capture configuration information but not task or process data. For example, update sets track service catalog item definitions and related configuration data like variables and variable choices. However, if you test the service catalog by placing orders, update sets do not track order requests, items, and catalog tasks.
Update sets have a limited capacity to transfer data as application files. For larger data transfers, export data and import it with an import set or web service.
update_synch attribute
To see the list of tables where customizations are tracked, navigate to and filter on attributes CONTAINS update_synch.
update_synch attribute to a dictionary
record. When improperly used, this attribute can cause major performance issues or cause
the instance to become unavailable. Because of this, the update_synch
attribute is not accessible to customers.update_synch attribute on a table for
which it is not predefined to avoid the following issues:- Some core tables require special update handling because they represent information on
multiple tables. When the
update_synchattribute is added to these tables, duplicate update records are created, causing major conflicts that are difficult to troubleshoot and repair. - Using the update_synch attribute to migrate data records between instances can cause
performance issues, because it is not intended for this purpose. To migrate data, use an
instance-to-instance import.
See Import sets.
Special handlers
Some changes require special handlers because they represent information on multiple tables. These changes are packaged into one update set entry so that all records are properly updated when the customization is committed. The following changes are tracked with special handlers:- Workflows
- Form sections
- Lists
- Related lists
- Choice lists
- System dictionary entries
- Field labels
Choice lists
Update sets store both new and updated choice options as separate records in the Update
Version [sys_update_version] and Customer Update
[sys_update_xml] tables. For example, you create a new Activity
[u_activity] table that extends the Task table. You then add a new choice
option to the Task state field that is only visible for your extended table (for example,
My State).
When you publish these changes as an update set, the update only contains update and version records for the choice you added to the u_activity table. The choice options in the task table are unaffected.
Dictionary changes
- Removing tables
- Changing a column data type
Update sets do not track the removal of tables from the system dictionary. Instead, customers must manually remove tables from the target instance. While update sets track data type changes, the target instance skips any change that results in data loss and instead adds a log message about the action. Customers can use the log to manually make data type changes on the target instance.
Homepages and content pages
Homepages and content pages are not added to update sets by default. Add pages to the current update set by unloading them.
The functionality found in homepages, arranging information from your instance to tell a story about your data, is found in dashboards on new instances. On upgraded instances with Next Experience enabled, users can view existing homepages if they have a direct URL, but they can't create or edit them. Responsive dashboards and Analytics Overview dashboards take over homepage functionality.
Use the Homepage deprecation help tool to convert the homepages on your instance to responsive dashboards.
Application changes
The system creates a separate update set for each application that only contains changes associated with the application. This ensures that access settings for each application are properly evaluated and applied when committing update set changes.