Customizations tracked by update sets

  • Release version: Australia
  • Updated March 12, 2026
  • 3 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 are essential for tracking customizations in ServiceNow, focusing on application tables, fields, and records. They capture configuration details while excluding task or process data, such as catalog orders or tasks. This functionality allows for the organized management of changes across instances.

    Show full answer Show less

    Key Features

    • Updatesynch Attribute: This attribute identifies tables where customizations are tracked. Access is restricted to prevent performance issues and conflicts; therefore, it should not be added to dictionary records.
    • Special Handlers: These facilitate the packaging of changes related to multiple tables into a single update set entry, ensuring all relevant records are updated collectively.
    • Choice Lists: Update sets track new and updated choice options separately, ensuring that modifications to extended tables do not affect the core tables.
    • Dictionary Changes: Update sets help avoid data loss by blocking certain changes, such as removing tables or altering column data types, which must be handled manually.
    • Home Pages and Content Pages: These are excluded by default from update sets. Users can manually add them when necessary, but new instances utilize dashboards for enhanced functionality.
    • Application Changes: Separate update sets are created for each application to ensure proper access settings are evaluated during changes.

    Key Outcomes

    Utilizing update sets allows ServiceNow customers to manage customizations effectively, preventing data loss and ensuring coherent updates across instances. Proper understanding and use of update sets can enhance the efficiency of change management processes, while adhering to best practices mitigates risks associated with conflicts and performance issues.

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

    Update sets capture configuration details but exclude task or process data. For example, they record catalog item definitions, variables, and variable choices, but not submitted orders or catalog tasks.

    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:
    Don’t 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. The update_synch attribute isn’t accessible to customers.
    A default rule blocks the use of the update_synch attribute on a table for which it isn’t 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. To migrate data see Import sets key concepts to use an instance-to-instance import.

    Special handlers

    Special handlers 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.
    • Workflows
    • Form sections
    • Lists
    • Related lists
    • Choice lists
    • System dictionary entries
    • Field labels
    Warning:
    Form sections, lists, related lists, choice lists, and field label handlers can delete and reinsert records, which may lead to unexpected results or data loss if fields reference those tables.

    Choice lists

    Update sets store both new and updated choice options as separate records in the sys_update_version and sys_update_xml tables. For example, if you extend the Task table with a u_activity table, add a state field choice visible only in your extended table.

    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:
    Don’t use large choice lists in update sets. Doing so leads to excessively long update set commits.

    Dictionary changes

    Using update sets help to prevent you from applying dictionary changes that result in data loss. For example, blocked dictionary changes include removing tables or changing a column data type.

    Update sets don’t track the removal of tables from the system dictionary. You 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. You can use the log to make data type changes on the target instance.
    Note:
    Update set previews don't detect type mismatches when changes could cause data loss. If you delete a table column via update sets, any existing data in that column is lost when the update is committed. A warning appears noting which deletions result in data loss.

    Home pages and content pages

    Home pages and content pages aren’t 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 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 separation verifies that access settings for each application are properly evaluated and applied when committing update set changes.