Customizations tracked by update sets

  • Release version: Zurich
  • Updated July 31, 2025
  • 4 minutes to read
  • Summarize
    Summarized using AI
    This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.

    Summary of Customizations tracked by update sets

    Update sets in ServiceNow track customizations to application tables, fields, and records under specific conditions, primarily focusing on configuration data rather than transactional or process data. They enable customers to transfer configuration changes between instances efficiently but have limitations in tracking certain data types and large data transfers.

    Show full answer Show less

    Key Features

    • Tracking Conditions: Update sets capture changes on tables with the updatesynch dictionary attribute, via special handlers for multi-table changes, and where fields are not excluded by administrators.
    • Configuration vs. Data: They track configuration items such as service catalog definitions but exclude task or process data like order requests and catalog tasks.
    • Data Transfer Limits: Update sets have limited capacity for transferring large data sets; for substantial data migration, import sets or web services are recommended.
    • Application Development: Customers must choose exclusively between update sets and the Application Repository for scoped app development to avoid errors and skipped changes.
    • Updatesynch Attribute: This attribute is predefined and not accessible to customers to prevent performance issues and conflicts; improper use can cause system instability.
    • Special Handlers: Certain changes like workflows, form sections, lists, related lists, choice lists, system dictionary entries, and field labels use special handlers that package changes properly but may delete and reinsert records, which can risk data loss.
    • Choice Lists: Update sets track additions and updates to choice options separately and only for the specific extended tables affected, not the base tables.
    • Dictionary Changes: Update sets block changes that cause data loss, such as removing tables or changing column data types that result in data loss. Table removals must be done manually on target instances.
    • Homepages and Content Pages: These are not included by default in update sets and must be manually unloaded into the current update set. Note that homepages are deprecated in favor of dashboards in newer instances.
    • Application-Specific Update Sets: Each application has a dedicated update set containing only its associated changes, ensuring correct application of access settings during commits.

    Practical Implications for Customers

    • Use update sets primarily for transferring configuration changes, not transactional data.
    • For large data migrations, prefer import sets or web services over update sets to avoid performance issues.
    • Maintain consistency in development methodology by exclusively using either update sets or the Application Repository for scoped apps.
    • Avoid attempting to add or modify the updatesynch attribute directly to prevent system instability.
    • Be cautious with changes that involve special handlers, choice lists, or dictionary modifications to avoid unintended data loss or conflicts.
    • Manually add homepages or content pages to update sets if needed, but consider migrating to dashboards as homepages are deprecated.
    • Review update set commit warnings carefully, especially those related to data loss from column deletions or data type changes, and perform manual adjustments as necessary.

    Update sets can track customizations to application tables, fields, and records.

    Update sets track customizations under these conditions:
    • 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.

    Do not combine the usage of both Update Sets and the Application Repository for scoped app development. This will result in numerous issues, including skipped changes, commit errors, and more. Once you have installed an application from the Application Repository, you must continue to develop and publish to the Application Repository for all future development. If you decide to develop an application using update sets, you must continue to use that method exclusively.

    update_synch attribute

    To see the list of tables where customizations are tracked, navigate to System Definition > Dictionary and filter on attributes CONTAINS update_synch.

    Warning:
    Do not add the 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.
    A default rule blocks the use of the 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_synch attribute 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
    Warning:
    The form sections, lists, related lists, choice lists, and field labels special handlers delete and reinsert records. This might cause unexpected results and data loss if there are fields referencing the tables.

    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.

    Warning:
    Do not use large choice lists in update sets. Doing so leads to excessively long update set commits.

    Dictionary changes

    Usually, using update sets prevent you from applying dictionary changes that result in data loss. Blocked dictionary changes include:
    • 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.

    Note:
    Update set previews do not check for type mismatch problems since the target instance skips changes resulting in data loss. Also, using update sets to delete a column from a table can cause data loss in certain circumstances. If there is data in the column on the target instance, that data is deleted, as well as the column itself, when the update set is committed. A warning message appears if you attempt to commit an update set that deletes a column. The message states that there are one or more delete updates that cause the data to be deleted, and it specifies what delete updates there are.

    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.

    Important:

    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 Center 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.